.phone-input-container {
  display: flex;
  width: 100%;
  gap: 0;
  margin-bottom: 15px;
  height: 46px;
  position: relative;
}

.country-select {
  position: relative;
  width: 110px;
}

.country-select select {
  appearance: none;
  width: 100%;
  height: 100%;
  padding: 12px 35px 12px 35px; /* Left padding for flag */
  border: 1px solid #ddd;
  border-right: none;
  border-radius: 8px 0 0 8px;
  background-color: #fff;
  font-size: 14px;
  cursor: pointer;
  color: #333;
}

.selected-flag {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.selected-flag .fi {
  font-size: 1.2em;
  line-height: 1em;
}

.country-select::after {
  content: "▼";
  font-size: 10px;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #666;
}

#phoneNumber {
  flex: 1;
  height: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 0 8px 8px 0;
  font-size: 16px;
  color: #333;
}

.country-select select:focus,
#phoneNumber:focus {
  outline: none;
  border-color: #ffb800;
  box-shadow: 0 0 0 2px rgba(255, 184, 0, 0.1);
}

:root {
  --primary-color: #ffd700;
  --secondary-color: #1e2a3b;
  --accent-color: #3b82f6;
  --text-light: #ffffff;
  --text-dark: #1a1a1a;
  --gradient-start: #0f1623;
  --gradient-end: #0f1623;
  --yellow: #ffb800;
}

body::-webkit-scrollbar {
  display: none;
}

/* For IE, Edge, and Firefox */
body {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

/* Testimonials Section Styles */
.testimonials-section {
  padding: 2rem 2rem;
  text-align: center;
}

.testimonials-section h2 {
  color: var(--text-light);
  font-size: 2rem;
  margin-bottom: 3rem;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  max-width: none;
  margin: 0 auto;
  padding: 0 0rem;
}

.testimonials-container .video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  background: #000;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonials-container .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* Mobile responsive styles */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 1rem 1rem;
  }

  .testimonials-section h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem; /* Reduced margin for mobile */
  }

  .testimonials-subheading {
    font-size: 1rem; /* Smaller font size for mobile */
    margin-bottom: 2rem; /* Reduced margin for mobile */
    padding: 0 15px; /* Add some padding on the sides */
  }

  .testimonials-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1500px;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .testimonials-section h2 {
    font-size: 1.5rem;
  }

  .testimonials-subheading {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  background: var(--gradient-start);
  color: var(--text-light);
  min-height: 100vh;
}

@keyframes slowMove {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(30px);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}

/* Mobile-first adjustments */
@media (min-width: 769px) {
  .logo-container {
    max-width: 200px;
    padding-top: 1em;
  }

  .hero-text h1 {
    font-size: 1.25rem;
  }

  .hero-text h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  /* Logo adjustments */
  .logo-container {
    max-width: 100px;
    margin: 0 auto 1rem;
    padding-top: 1em !important;
  }

  /* Hero text sizing */
  .hero-text h1 {
    font-size: 1.4rem;
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .hero-text h2 {
    font-size: 1.3rem;
    line-height: 1;
    margin-bottom: 1rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  /* Content layout */
  .content-wrapper {
    gap: 0px;
    padding: 0 15px;
  }

  /* Benefits list adjustments */
  .benefits-list li {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .benefits-list i {
    font-size: 18px;
  }

  /* Form column adjustments */
  .form-column {
    padding: 20px;
  }

  .form-title {
    font-size: 1.5rem;
  }

  .form-subtitle {
    font-size: 1rem;
  }

  /* Reduce vertical spacing */
  .top-section,
  .main-content {
    padding-bottom: 0px;
    margin-bottom: 0px;
  }

  /* Form elements */
  input,
  select,
  button {
    font-size: 16px !important;
    padding: 12px !important;
  }

  /* Calendly embed mobile fixes */
  .calendly-inline-widget {
    min-width: 100% !important;
    height: 600px !important;
    transform: scale(0.95);
    transform-origin: top center;
  }

  /* Confirmation page adjustments */
  .confirmation-page h1 {
    font-size: 1.5rem;
  }

  .confirmation-page h2 {
    font-size: 1.5rem;
  }

  .step-box {
    font-size: 1rem;
    margin: 1.5rem auto;
    padding: 12px;
  }

  /* Video container */
  .video-container {
    margin: 1rem auto;
    padding-bottom: 56.25%;
  }
}

/* Set the glow to a very low z-index */
body::before {
  content: "";
  position: fixed;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 600px;
  background: radial-gradient(
    ellipse at top,
    rgba(0, 149, 255, 0.35) 0%,
    rgba(0, 149, 255, 0.2) 15%,
    rgba(0, 149, 255, 0.1) 30%,
    rgba(0, 149, 255, 0.05) 45%,
    rgba(0, 149, 255, 0.02) 60%,
    transparent 75%
  );
  pointer-events: none;
  z-index: -1; /* Move glow behind all content */
  opacity: 0.8;
  mask-image: linear-gradient(to bottom, black 0%, black 30%, transparent 100%);
  -webkit-mask-image: linear-gradient(
    to bottom,
    black 0%,
    black 30%,
    transparent 100%
  );
  animation: slowMove 8s ease-in-out infinite;
}

body > * {
  position: relative;
  z-index: 1;
}

.top-section,
.main-content,
.content-wrapper,
.benefits-column,
.form-column,
.hero-text,
.logo-container,
.footer,
.form-column form,
.benefits-list,
.footer-content,
nav,
header,
main,
article,
aside,
section {
  position: relative;
  z-index: 1;
}

.funnel-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 0;
  position: relative;
  background: var(--gradient-start);
}

.logo {
  width: 200px;
  margin: 0 auto 2rem;
}

.logo img {
  width: 80%;
  height: auto;
}

h1 {
  font-size: 2rem;
  color: var(--yellow);
  margin-bottom: 1.5rem;
  text-transform: none;
  letter-spacing: normal;
  font-weight: bold;
}

h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  color: var(--text-light);
  font-weight: normal;
}

h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--text-light);
  font-weight: bold;
}

.subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  text-transform: none;
  letter-spacing: normal;
}

/* Chevron Animation */
.chevron-down {
  margin: 3rem auto;
  margin-bottom: 0px;
  margin-top: 0px;
  display: block;
  transform: scale(0.8);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) scale(0.8);
  }
  40% {
    transform: translateY(-20px) scale(0.8);
  }
  60% {
    transform: translateY(-10px) scale(0.8);
  }
}

/* Content Section */
.content-section {
  background: white;
  padding: 4rem 2rem;
  margin-top: 0;
  text-align: center;
}

.content-section h2 {
  color: var(--text-dark);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

/* Form Styles */
#leadForm {
  max-width: 400px;
  margin: 0 auto;
}

#leadForm input {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

#leadForm input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

.apply-button {
  display: inline-block;
  background-color: var(--yellow);
  color: #000000;
  padding: 1.25rem;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.5rem;
  margin-top: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  width: 100%;
  max-width: 400px;
  text-align: center;
  cursor: pointer;
}

.apply-button i {
  margin-left: 10px;
}

.apply-button:hover {
  background-color: transparent;
  color: var(--yellow);
  border: 2px solid var(--yellow);
}

/* Footer Styles */
.footer {
  background-color: var(--gradient-start);
  color: #8a8a8a;
  padding: 3rem 2rem;
  margin-top: 0;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.8;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-logo {
  margin-bottom: 2rem;
}

.footer-logo img {
  max-width: 230px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-links {
  margin-bottom: 2rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  max-width: 900px;
  margin: 0 auto;
}

.footer-text p {
  margin-bottom: 1.5rem;
}

/* Toast Notifications */
.toast {
  position: fixed;
  top: 1rem;
  right: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  z-index: 9999;
  animation: slideIn 0.3s ease-in-out;
  max-width: 24rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.toast-error {
  background-color: #fee2e2;
  border: 1px solid #ef4444;
  color: #991b1b;
}

.toast-success {
  background-color: #dcfce7;
  border: 1px solid #22c55e;
  color: #166534;
}

.toast-icon {
  flex-shrink: 0;
}

.toast-message {
  flex-grow: 1;
}

.toast-close {
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
  color: currentColor;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.toast-close:hover {
  opacity: 1;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .funnel-container {
    padding: 1rem;
  }

  h1 {
    font-size: 1rem;
  }

  h2,
  h3 {
    font-size: 2rem;
  }

  .hero {
    padding: 2rem 1rem;
  }

  .content-section {
    padding: 2rem 1rem;
  }

  .apply-button {
    font-size: 1.2rem;
    padding: 1rem;
  }

  .footer {
    padding: 2rem 1rem;
  }

  .footer-text {
    font-size: 0.8rem;
  }

  .footer-links {
    font-size: 0.9rem;
  }

  .footer-logo img {
    max-width: 120px;
  }
}

.top-section {
  color: white;
  padding: 10px 20px;
}

.logo-container {
  text-align: center;
  margin: 0 auto;
  max-width: 150px;
  padding-top: 2em;
}

.logo-container img {
  width: 70%;
  height: auto;
}

.hero-text {
  text-align: center;
  max-width: 800px;
  margin: 30px auto;
}

.hero-text h1 {
  font-size: 1.25rem;
  color: #ffb800;
  margin-bottom: 1.5rem;
}

.hero-text h2,
.hero-text h3 {
  font-size: 2.5rem;
  color: white;
  margin: 10px 0;
}

.main-content {
  background: white;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 0px;
}

.benefits-column {
  flex: 1;
}

.benefits-header {
  background: #0f1623;
  color: white;
  padding: 12px 15px !important;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.1rem !important;
}

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

.benefits-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 18px;
  color: #333;
  line-height: 1.5;
}

.benefits-list i {
  color: #0f1623;
  margin-right: 15px;
  margin-top: 4px;
}

.form-column {
  flex: 1;
  background: #f8f9fa;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-image {
  max-width: 70% !important;
  margin: 0 auto 20px;
  display: block;
  max-width: 80%;
  /* Add padding around the logo with a black background */
  padding: 15px !important;
  background: #111111;
  border-radius: 10px;
}

.form-title {
  font-size: 28px;
  color: #0f1623;
  text-align: center;
  margin-bottom: 5px;
}

.form-subtitle {
  color: #666;
  text-align: center;
  margin-bottom: 25px;
}

.form-column form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
}

.submit-button {
  width: 100%;
  background: #ffb800;
  color: #000;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-button:hover {
  background: #ffc530;
}

.button-subtitle {
  text-align: center;
  font-size: 12px;
  color: #666;
  margin-top: 10px;
}

.footer {
  background-color: #0f1623;
  color: #8a8a8a;
  text-align: center;
  padding: 25px;
  font-size: 12px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
  }

  .hero-text h2,
  .hero-text h3 {
    font-size: 1.8rem;
  }

  .benefits-list li {
    font-size: 16px;
  }
}

.mac-mockup-section {
  padding: 40px 0;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.mac-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.mac-mockup {
  width: 100%;
  height: auto;
  display: block;
}

/* Optional: Add a subtle shadow for depth */
.mac-container {
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.form-disclaimer {
  font-size: 0.875rem; /* Slightly smaller font size */
  color: #666; /* Gray color for subtlety */
  margin-top: 15px; /* Space above the disclaimer */
  line-height: 1.4; /* Improved readability */
}

.form-disclaimer a {
  color: #007bff; /* Link color */
  text-decoration: none;
}

.form-disclaimer a:hover {
  text-decoration: underline;
}

.loading-spinner {
  margin-top: 10px;
  color: #333;
  font-size: 14px !important;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Toast Notifications */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #fff;
  color: #333;
  padding: 15px 20px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  animation: slideIn 0.5s forwards;
}

.toast-success {
  border-left: 5px solid #28a745;
}

.toast-error {
  border-left: 5px solid #dc3545;
}

.toast-icon {
  font-size: 20px;
}

.toast-message {
  flex: 1;
}

.toast-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  font-size: 16px;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

.OoObjZ5bhr3GWci_XaxI.GIyjyk8bwW3KOEv79JBm h2 {
  padding-right: 0px !important;
}

.OoObjZ5bhr3GWci_XaxI._rCVjx03iqZHt8XZKDEf h2 {
  text-align: center !important;
}

/* Video Container Styles */
.video-container {
  max-width: 100%;
  width: 100%;
  margin: 2rem auto;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  position: relative;
  /* Responsive aspect ratio */
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Confirmation Page Styles */
.confirmation-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
}

.logo {
  width: 200px;
  margin: 0 auto 2rem;
}

.logo img {
  width: 80%;
  height: auto;
}

.step-box {
  background: rgba(255, 184, 0, 0.1);
  border: 1px solid #ffb800;
  color: #ffb800;
  padding: 1rem;
  margin: 2rem auto;
  max-width: 800px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.2rem;
}

h1 {
  font-size: 2rem;
  color: white;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 2rem;
}

.spam-notice {
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

/* Calendly Container */
.calendly-container {
  width: 100%;
  overflow-x: hidden;
  padding: 0 15px;
  display: flex;
  justify-content: center;
}

@media (max-width: 480px) {
  input,
  button,
  .country-select {
    font-size: 14px !important;
  }

  .submit-button {
    padding: 12px !important;
    font-size: 16px !important;
  }

  .country-select {
    width: 90px;
  }

  .country-select select {
    padding-left: 30px;
  }

  .selected-flag {
    left: 8px;
  }
}

@media (max-width: 768px) {
  .footer-text {
    font-size: 0.75rem;
    text-align: left;
    padding: 0 15px;
  }

  .footer-links p {
    font-size: 0.7rem;
  }
  .video-container {
    margin: 1rem auto;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .step-box {
    font-size: 1rem;
    padding: 0.75rem;
  }
}

.video-preview-container {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.mac-screen-area {
  position: absolute;
  /* Adjust these values to match your exact screen area */
  top: 6%; /* Distance from top of the Mac image */
  left: 11.5%; /* Distance from left of the Mac image */
  width: 77%; /* Width of the screen area */
  height: 71%; /* Height of the screen area */
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Adjust size to fit the screen area better */
  width: clamp(40px, 10vw, 60px);
  height: clamp(40px, 10vw, 60px);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(255, 255, 255, 0.9);
}

.play-button.clicked {
  transform: translate(-50%, -50%) scale(0.9);
}

.play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 18px; /* Reduced from 16px 0 16px 24px */
  border-color: transparent transparent transparent #1a1a1a;
  margin-left: 6px; /* Reduced from 8px */
  transition: transform 0.3s ease;
}

.play-button:hover .play-icon {
  transform: scale(1.1);
}

.vid-container{
  margin-top: 30px;
}