/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.container {
  padding-top: 50px !important;
}

/* Hero Section */
.contact-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.contact-hero-content {
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Contact Hero Background Wrapper */
.contact-hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.contact-hero-bg-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, transparent 0%, #0a0a0a 100%);
  pointer-events: none;
  z-index: 1;
}

.contact-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  margin-bottom: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #FF006E, #8338EC);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

.contact-title {
  font-size: clamp(40px, 8vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-subtitle {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}


.contact-cta-btn {
  display: inline-flex;
  justify-content: center;
  gap: 10px;
  padding: 10px 30px;
  background: linear-gradient(180deg, #BFAEFF 0%, #523AAA 100%);
  border-radius: 10px;
  outline: 1px rgba(255, 255, 255, 0.20) solid;
  outline-offset: -1px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  align-items: center;
  font-size: 1.2em;
}

.contact-cta-btn:hover {
  background-color: #a855f7;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.5);
}

/* Contact Form Section */
.contact-form-section {
  padding: 100px 20px;
  background: #0a0a0a;
  position: relative;
}

.contact-form-container {
  max-width: 80%;
  margin: 0 auto;
}

.form-section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: #fff;
}

.form-section-subtitle {
  font-size: 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 60px;
  line-height: 1.6;
}

/* Progress Steps - New Design */
.form-progress {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 60px;
  gap: 0;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 500;
  color: black;
  transition: all 0.3s ease;
}

.progress-step.active .step-circle {
  background: linear-gradient(180deg, #BFAEFF 0%, #523AAA 100%);
  color: white;
}

.progress-step.completed .step-circle {
  background: white;
  color: black;
}

.step-label {
  font-size: 20px;
  color: white;
  font-weight: 400;
  text-align: center;
}

.progress-line {
  width: 310px;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.progress-step.active~.progress-line,
.progress-step.completed+.progress-line {
  background: linear-gradient(180deg, #BFAEFF 0%, #523AAA 100%);
}

/* Contact Form */
.contact-form {
  background: black;
  border: 2px solid rgba(250, 250, 250, 0.3);
  border-radius: 10px;
  padding: 40px;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-row {
  margin-bottom: 24px;
}

.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  width: 100%;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #8338EC;
  background: rgba(255, 255, 255, 0.08);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='white' stroke-opacity='0.5' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Checkboxes */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.checkbox-label:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(131, 56, 236, 0.3);
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #8338EC;
  cursor: pointer;
}

.checkbox-label span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

/* Form Actions */
.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
}

.btn-prev,
.btn-next,
.btn-submit {
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-prev {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn-prev:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-next,
.btn-submit {
  background: linear-gradient(135deg, #8338EC, #FF006E);
  color: #fff;
  margin-left: auto;
}

.btn-next:hover,
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(131, 56, 236, 0.3);
}

/* ============================================
   NEW FORM ELEMENTS
   ============================================ */

/* Business Type Cards */
.business-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.business-card {
  position: relative;
  cursor: pointer;
}

.business-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.business-card-content {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 16px;
  border: 1px solid white;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.business-card:hover .business-card-content {
  background: rgba(191, 174, 255, 0.1);
}

.business-card input[type="radio"]:checked+.business-card-content {
  background: rgba(191, 174, 255, 0.15);
  border-color: #cabcfc;
}

.business-icon {
  width: 38px;
  height: 38px;
  background: #BFAEFF;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.business-icon svg {
  color: black;
}

.business-card-content span {
  color: white;
  font-size: 20px;
  font-weight: 400;
}

/* Currency Buttons */
.currency-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.currency-btn {
  position: relative;
  cursor: pointer;
}

.currency-btn input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.currency-btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 19px 10px;
  border: 1px solid white;
  border-radius: 5px;
  color: white;
  font-size: 20px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.currency-btn:hover span {
  background: rgba(191, 174, 255, 0.1);
}

.currency-btn input[type="radio"]:checked+span {
  background: rgba(191, 174, 255, 0.15);
  border-color: #BFAEFF;
}

/* Budget Cards */
.budget-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.budget-card {
  position: relative;
  cursor: pointer;
}

.budget-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.budget-card span {
  display: flex;
  align-items: center;
  padding: 25px 16px;
  border: 1px solid white;
  border-radius: 5px;
  color: white;
  font-size: 20px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.budget-card:hover span {
  background: rgba(191, 174, 255, 0.1);
}

.budget-card input[type="radio"]:checked+span {
  background: rgba(191, 174, 255, 0.15);
  border-color: #BFAEFF;
}

/* Services Grid with Custom Checkboxes */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.service-checkbox {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 16px;
  border: 1px solid white;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: flex !important;
  flex-direction: row;
}

.service-checkbox:hover {
  background: rgba(191, 174, 255, 0.1);
}

.service-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkbox-box {
  width: 20px;
  height: 20px;
  border: 1px solid white;
  border-radius: 5px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease;
}

.service-checkbox input[type="checkbox"]:checked~.checkbox-box {
  background: #BFAEFF;
  border-color: #BFAEFF;
}

.service-checkbox input[type="checkbox"]:checked~.checkbox-box::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: black;
  font-size: 14px;
  font-weight: bold;
}

.service-checkbox span {
  color: white;
  font-size: 20px;
  font-weight: 400;
}

/* GDPR Consent */
.gdpr-consent {
  margin-top: 24px;
  margin-bottom: 24px;
}

.gdpr-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 15px 16px;
  background: #BFAEFF;
  border-radius: 5px;
  cursor: pointer;
}

.gdpr-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.gdpr-checkbox .checkbox-box {
  width: 18px;
  height: 18px;
  border: 1px solid #9F9F9F;
  background: white;
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}

.gdpr-checkbox input[type="checkbox"]:checked~.checkbox-box::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: black;
  font-size: 12px;
  font-weight: bold;
}

.gdpr-checkbox span {
  color: black;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

/* Updated Buttons */
.btn-prev {
  background: transparent;
  border: none;
  color: white;
  padding: 10px 20px;
  font-size: 24px;
  font-weight: 500;
}

.btn-prev:hover {
  background: rgba(255, 255, 255, 0.05);
}

.btn-next {
  background: white;
  color: black;
  border: none;
  padding: 10px 32px;
  border-radius: 10px;
  font-size: 24px;
  font-weight: 500;
  margin-left: auto;
}

.btn-next:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: none;
  box-shadow: none;
}

.btn-submit {
  background: #BFAEFF;
  color: black;
  border: none;
  padding: 10px 32px;
  border-radius: 10px;
  font-size: 24px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.btn-submit svg {
  width: 21px;
  height: 21px;
}

.btn-submit:hover {
  background: rgba(191, 174, 255, 0.9);
  transform: none;
  box-shadow: none;
}

/* Form Group Spacing */
.form-group {
  margin-bottom: 24px;
}

.form-group.full-width {
  width: 100%;
}

.form-group label {
  font-size: 20px;
  font-weight: 400;
  color: white;
  margin-bottom: 12px;
  display: block;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  background: transparent;
  border: 1px solid white;
  border-radius: 5px;
  color: white;
  font-size: 20px;
  font-family: 'Inter', sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #BFAEFF;
  background: rgba(191, 174, 255, 0.05);
}

.form-group textarea {
  min-height: 260px;
  resize: vertical;
}

/* Two Column Layout */
.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

/* FAQ Section */


/* Contact FAQ Background Wrapper */
.contact-faq-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.contact-faq-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


.faq-section {
  padding: 100px 20px;
}

.faq-container {
  position: relative;
  z-index: 1;
  max-width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 1rem;
  padding: 4rem;
}

.faq-header {
  text-align: left;
  margin-bottom: 60px;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 0, 110, 0.1);
  border: 1px solid rgba(255, 0, 110, 0.2);
  border-radius: 100px;
  margin-bottom: 24px;
  font-size: 14px;
  color: #FF006E;
}

.badge-icon {
  font-size: 16px;
}

.faq-title {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #fff;
  text-align: left;
}

.faq-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  /*background: rgba(255, 255, 255, 0.03);*/
  border: 1px solid rgba(255, 255, 255, 0.40);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  background-color: #1C1C1CB2;
  width: fit-content;
  /*margin: 0 auto;*/
  margin-bottom: 1rem;
  /*margin-left: 4rem;*/
  border-radius: 50px;
  position: relative;
  padding: 1px 1px;
}


.section-header::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 0.1rem;

  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.35) 0%, /* stânga mai închis */ rgba(182, 163, 255, 0.4) 50%, /* centru mai deschis */ rgba(0, 0, 0, 0.35) 100% /* dreapta mai închis */
  );

  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

.section-header h2 {
  font-size: 1.3em;
  font-weight: 500;
  color: #ffffff;
  font-family: 'Satoshi', sans-serif;
  margin: 0;
  margin-right: 15px;
}

.faq-item:hover {
  border-color: rgba(131, 56, 236, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.2em;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #8338EC;
}

.faq-icon {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #8338EC;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 24px;
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 0.75rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* Bottom CTA */
.contact-bottom-cta {
  padding: 100px 20px;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.contact-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(131, 56, 236, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.contact-bottom-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.bottom-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  margin-bottom: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.bottom-cta-title {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  margin-bottom: 24px;
  color: #fff;
}

.bottom-cta-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
}

.bottom-cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, #8338EC, #FF006E);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.bottom-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(131, 56, 236, 0.3);
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .faq-container {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    padding: 1rem;
  }
  .contact-form-container {
    width: 100%;
    max-width: 100% !important;
  }

  .contact-hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }

  .contact-subtitle br,
  .form-section-subtitle br,
  .faq-subtitle br,
  .bottom-cta-subtitle br {
    display: none;
  }

  .form-row.two-col {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px;
  }

  .form-progress {
    flex-wrap: wrap;
    gap: 12px;
  }

  .progress-step {
    flex: 1;
    min-width: 80px;
  }

  .step-label {
    font-size: 16px;
    text-align: center;
  }

  .progress-line {
    display: none;
  }

  .form-actions {
    flex-direction: column;
  }

  .btn-next,
  .btn-submit {
    margin-left: 0;
    width: 100%;
  }

  .btn-prev {
    width: 100%;
    order: 2;
  }

  .btn-next,
  .btn-submit {
    order: 1;
  }

  .faq-question {
    font-size: 15px;
    padding: 20px;
  }

  .contact-form-section,
  .faq-section,
  .contact-bottom-cta {
    padding: 60px 20px;
  }

  /* New Form Elements - Mobile */
  .business-type-grid,
  .budget-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .currency-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .business-card-content span,
  .budget-card span,
  .service-checkbox span,
  .form-group label,
  .form-group input,
  .form-group textarea {
    font-size: 16px;
  }

  .currency-btn span {
    font-size: 18px;
    padding: 16px 10px;
  }

  .btn-prev,
  .btn-next,
  .btn-submit {
    font-size: 18px;
  }

  .gdpr-checkbox span {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .step-circle {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .progress-step {
    min-width: 70px;
  }

  .step-label {
    font-size: 11px;
  }
}

/* ==================== BOTTOM CTA SECTION ==================== */
.bottom-cta-section {
  background-color: #000000;
  padding: 2rem 6rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25rem;
  opacity: 0;
  transition: opacity 0.6s ease;
  width: 65%;
  max-width: 90%;
  margin: 0 auto;
  margin-top: 4rem;
  margin-bottom: 6rem;
  z-index: 5;
  border-radius: 24px;
}

.bottom-cta-section.is-visible {
  opacity: 1;
}

/* Border gradient */
.bottom-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 0.1rem;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.17) 0%,
    rgba(153, 153, 153, 0.21) 40%,
    rgba(255, 255, 255, 0.17) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Gradient glow background */
.bottom-cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 120% 80% at 50% 0%, rgba(213, 175, 252, 0.4) 0%, transparent 55%);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 2.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.bottom-cta-section.is-visible::after {
  opacity: 1;
}

/* Additional background glow layer */
.bottom-cta-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191, 174, 255, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 2s ease;
}

.bottom-cta-section.is-visible .bottom-cta-glow {
  opacity: 1;
}

.bottom-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 800px;
}

.bottom-cta-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  background-color: #1C1C1CB2;
  width: fit-content;
  margin: 0 auto;
  border-radius: 50px;
  position: relative;
  padding: 1px 1px;
}

.bottom-cta-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 0.1rem;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(182, 163, 255, 0.4) 50%,
    rgba(0, 0, 0, 0.35) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.bottom-cta-badge h2 {
  font-size: 1.3em;
  font-weight: 500;
  color: #ffffff;
  font-family: 'Satoshi', sans-serif;
  margin: 0;
  margin-right: 15px;
}

.bottom-cta-section.is-visible .bottom-cta-badge {
  opacity: 1;
  transform: translateY(0);
}

.bottom-cta-title {
  font-size: 4rem;
  font-weight: 700;
  color: transparent;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Satoshi', sans-serif;
  margin: 0;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.bottom-cta-section.is-visible .bottom-cta-title {
  opacity: 1;
  transform: translateY(0);
}

.bottom-cta-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  color: transparent;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Satoshi', sans-serif;
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.4s, transform 0.7s ease 0.4s;
}

.bottom-cta-section.is-visible .bottom-cta-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.bottom-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1rem 2.5rem;
  background: linear-gradient(180deg, #BFAEFF 0%, #523AAA 100%);
  border-radius: 12px;
  outline: 1px rgba(255, 255, 255, 0.20) solid;
  outline-offset: -1px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
}

.bottom-cta-section.is-visible .bottom-cta-button {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease 0.6s, transform 0.7s ease 0.6s, box-shadow 0.3s ease, transform 0.3s ease;
}

.bottom-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(191, 174, 255, 0.5);
}

.bottom-cta-button span {
  color: white;
  font-size: 1.25rem;
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
}

.bottom-cta-button svg {
  color: white;
  transition: transform 0.3s ease;
}

.bottom-cta-button:hover svg {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .is-mobile {
    display: none;
  }
  .bottom-cta-section {
    padding: 2rem 1.5rem;
    min-height: 50vh;
    width: 90%;
  }

  .bottom-cta-title {
    font-size: 2.5rem;
  }

  .bottom-cta-subtitle {
    font-size: 1.2rem;
  }

  .bottom-cta-button {
    padding: 0.875rem 2rem;
  }

  .bottom-cta-button span {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .bottom-cta-section {
    padding: 1rem;
  }

  .bottom-cta-title {
    font-size: 2rem;
  }

  .bottom-cta-subtitle {
    font-size: 1rem;
  }

  .bottom-cta-badge span {
    font-size: 0.9rem;
  }

  .bottom-cta-button {
    padding: 0.75rem 1.75rem;
  }

  .bottom-cta-button span {
    font-size: 1rem;
  }
}
