/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #fff;
  background: #00062d;
  background-image: linear-gradient(to bottom right, rgba(255, 176, 97, 0.08), rgba(97, 63, 40, 0.08));
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.container {
  width: min(90%, 800px);
  margin: 0 auto;
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.content-card {
  background-color: rgba(9, 11, 16, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(79, 134, 198, 0.1);
  color: #fff;
  padding: clamp(1.5rem, 5vw, 3rem);
  border-radius: 20px;
}

/* Typography */
h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #3B82F6;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.2;
  
}

.tagline {
  font-size: clamp(1rem, 3vw, 1.4rem);
  line-height: 1.6;
  margin: 1.5rem 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

h2 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: #34A589;
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: center;
}

/* Navigation */
.top-nav {
  width: 100%;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: linear-gradient(to bottom, rgba(9, 11, 16, 0.9) 0%, rgba(9, 11, 16, 0) 100%);
  display: flex;
  justify-content: center;
}

.logo {
  width: clamp(220px, 35vw, 280px);
  height: auto;
  transition: opacity 0.3s ease;
  align-self: center;
}

/* Sections */
.headline-section {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.how-it-works {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 4vw, 2rem);
  margin: clamp(1.5rem, 4vw, 2rem) 0;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.step p {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  line-height: 1.6;
}

.step-number {
  background-color: #34A589;
  color: #090B10;
  width: clamp(1.8rem, 5vw, 2rem);
  height: clamp(1.8rem, 5vw, 2rem);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.steps-vertical {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 2rem 0;
}

.step-card {
  background-color: rgba(9, 11, 16, 0.8);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.step-card p {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.step-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px; /* Height for the entire arrow area */
  position: relative;
}

.step-arrow::before {
  display: none;
}

.step-arrow svg {
  width: 40px;
  height: 32px;
  position: absolute;
  z-index: 1;
}

.what-makes-us-different {
  margin-bottom: clamp(2rem, 5vw, 3rem);
  background-color: rgba(59, 130, 246, 0.1);
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: 10px;
  text-align: left;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

/* Difference Grid */
.difference-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.difference-card {
  background-color: rgba(9, 11, 16, 0.8);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.bullet-point {
  width: 12px;
  height: 12px;
  background-color: #34A589;
  border-radius: 50%;
  display: inline-block;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.vision-section {
  /* background-color: rgba(79, 134, 198, 0.1); */
  background-color: rgba(59, 130, 246, 0.1);
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: 10px;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  text-align: left;
  line-height: 1.8;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.9);
}

.vision-section p {
  margin-bottom: 0;
}

.vision-section p:first-of-type {
  margin-bottom: 2rem; /* Add space after first paragraph */
}

.vision-section p:first-of-type::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background-color: #34A589;
  margin: 2rem auto 0;
}

.vision-section p:last-child {
  margin-bottom: 0;
}

/* CTA Section */
.cta-section {
  background-color: rgba(100, 255, 218, 0.1);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 10px;
}

/* Form Styles */
.cta-section form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 8px 0;
}

#mce-EMAIL {
  width: 100%;
  max-width: 300px;
  padding: 12px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  background: rgba(9, 11, 16, 0.8);
  color: #fff;
  border: 1px solid #3B82F6;
  border-radius: 25px;
}

input[type="email"] {
  background: rgba(9, 11, 16, 0.8);
  width: 100%;
  max-width: 400px;
  padding: 0.75rem;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  border: 1px solid #3B82F6;
  border-radius: 25px;
  margin-bottom: 1rem;
  color: #fff;
}

#submit-btn {
  background: #34A589;
  color: #090B10;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#submit-btn:hover {
  background: #2d8a73;
}

#submit-btn:disabled {
  background: #9ca3af;
  cursor: not-allowed;
}

button {
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  background-color: #34A589;
  color: #090B10;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

/* reCAPTCHA Styles */
.g-recaptcha {
  margin: 10px 0;
  display: flex;
  justify-content: center;
}

.beta-tag {
  background-color: #3B82F6;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 10px;
  display: inline-block;
  vertical-align: middle;
}

/* Background SVG */
.background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.background-container svg {
  width: 100%;
  height: 100%;
  transform: scale(1.5);
}

/* Form Response Messages */
#mce-responses {
  width: 100%;
  max-width: 400px;
  margin-top: 1rem;
}

#mce-error-response,
#mce-success-response {
  padding: 0.75rem;
  border-radius: 25px;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  text-align: center;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  margin-top: 2rem;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

/* Thank you message styles - Updated to match your theme */
.thank-you-message {
  text-align: center;
  padding: 2rem;
  margin-top: 2rem;
  background-color: rgba(52, 165, 137, 0.1);
  border: 1px solid rgba(52, 165, 137, 0.3);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.thank-you-message h3 {
  color: #34A589;
  margin-bottom: 1rem;
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  font-weight: 600;
}

.thank-you-message p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  line-height: 1.6;
}

/* Small Devices Optimization */
@media (max-width: 480px) {
  .background-container svg {
    transform: scale(2);
  }

  body {
    font-size: 1.1rem; /* Increase base font size */
  }

  h1 {
    font-size: 2rem; /* Increase heading sizes */
  }

  h2 {
    font-size: 1.7rem;
  }

  p {
    font-size: 1.2rem;
    line-height: 1.8;
  }

  .tagline {
    font-size: 1.3rem;
  }

  .step p {
    font-size: 1.1rem;
  }

  .step-card p,
  .difference-card p,
  .vision-section p {
    font-size: 1.1rem;
    line-height: 1.7;
  }

  /* Ensure grid properly stacks */
  .difference-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  /* Make sure cards have sufficient padding */
  .step-card,
  .difference-card {
    padding: 1.2rem;
  }

  /* Adjust arrow size */
  .step-arrow svg {
    width: 28px;
    height: 28px;
  }
  
  /* Reduce height of arrow container */
  .step-arrow {
    height: 35px;
  }
  
  /* Ensure difference cards don't get too cramped */
  .bullet-point {
    margin-top: 0.4rem;
  }
  
  /* Adjust vision section divider */
  .vision-section p:first-of-type {
    margin-bottom: 1.5rem;
  }
  
  .vision-section p:first-of-type::after {
    margin-top: 1.5rem;
  }

  input[type="email"], button {
    font-size: 1.1rem;
  }

  .beta-tag {
    display: block;
    margin: 8px auto 0;
    width: fit-content;
  }

  footer p {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .difference-grid {
    grid-template-columns: 1fr;
  }
}

/* Extra Small Devices (phones) */
@media (max-width: 380px) {
  .container {
    width: 95%;
  }
  
  .content-card {
    padding: 1.25rem;
  }
  
  .step {
    align-items: flex-start;
  }
  
  button {
    width: 100%;
    max-width: 400px;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .step-card p,
  .difference-card p,
  .vision-section p {
    font-size: 1rem;
  }
  
  .step-number {
    width: 1.6rem;
    height: 1.6rem;
    font-size: 0.9rem;
  }
}

/* Bot honeypot */
#website-field {
    position: absolute !important;
    left: -5000px !important;
    top: -5000px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: -1 !important;
}