@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --electric-blue: #1F8EF1;
  --electric-blue-light: #3FA9F5;
  --charcoal-gray: #1A1C22;
  --dark-charcoal: #1E2128;
  --light-gray: #4A4F5C;
  --medium-gray: #2A2E36;
  --white: #FFFFFF;
  --success-green: #34D399;
  --warning-orange: #F59E0B;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--charcoal-gray);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

section {
  padding: 5rem 0;
  position: relative;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--electric-blue);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 500;
}

/* Header Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--charcoal-gray);
}

.logo {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  background: linear-gradient(90deg, var(--electric-blue), var(--electric-blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: var(--electric-blue);
}

.nav-links a.sign-in {
  background-color: transparent;
  border: 1px solid var(--electric-blue);
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  color: var(--electric-blue);
  transition: all 0.3s ease;
}

.nav-links a.sign-in:hover {
  background-color: var(--electric-blue);
  color: var(--white);
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5rem 0;
  gap: 4rem;
  min-height: calc(100vh - 100px);
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.target-audience {
  display: inline-block;
  background-color: rgba(31, 142, 241, 0.1);
  color: var(--electric-blue);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, var(--white), var(--electric-blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, var(--electric-blue), var(--electric-blue-light));
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(31, 142, 241, 0.3);
}

/* Hero Visual */
.hero-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.hero-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(31, 142, 241, 0.5));
  animation: float 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

.speech-bubble {
  position: absolute;
  top: 20%;
  right: 0;
  background-color: var(--electric-blue);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  max-width: 200px;
  opacity: 0;
  animation: fadeInOut 5s ease-in-out infinite;
  z-index: 3;
}

.speech-bubble:after {
  content: '';
  position: absolute;
  left: 30%;
  top: 100%;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 15px solid var(--electric-blue);
  clear: both;
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0; transform: translateY(10px); }
  20%, 80% { opacity: 1; transform: translateY(0); }
}

.audio-visualization {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  height: 60px;
  width: 100%;
  max-width: 300px;
  margin-top: 2rem;
}

.audio-visualization .bar {
  background: linear-gradient(180deg, var(--electric-blue), var(--electric-blue-light));
  border-radius: 5px;
  width: 8px;
  height: 5px;
  animation: soundwave 1.2s infinite ease-in-out alternate;
}

.audio-visualization .bar:nth-child(1) { animation-delay: 0.0s; }
.audio-visualization .bar:nth-child(2) { animation-delay: 0.2s; }
.audio-visualization .bar:nth-child(3) { animation-delay: 0.4s; }
.audio-visualization .bar:nth-child(4) { animation-delay: 0.6s; }
.audio-visualization .bar:nth-child(5) { animation-delay: 0.4s; }
.audio-visualization .bar:nth-child(6) { animation-delay: 0.2s; }
.audio-visualization .bar:nth-child(7) { animation-delay: 0.0s; }

@keyframes soundwave {
  0% { height: 5px; }
  100% { height: 50px; }
}

/* Value Proposition Section */
.value-proposition {
  padding: 3rem 0;
  background-color: var(--dark-charcoal);
  border-radius: 1rem;
  margin: 2rem 0;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat {
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--electric-blue);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 1.125rem;
  color: var(--white);
  font-weight: 500;
}

/* Phone CTA in Value Proposition Section */
.phone-cta {
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: rgba(31, 142, 241, 0.1);
  border-radius: 1rem;
}

.phone-cta h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--white);
}

.phone-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(90deg, var(--electric-blue), var(--electric-blue-light));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.phone-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(31, 142, 241, 0.3);
}

/* Services Section */
.service-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.service-card {
  background-color: var(--dark-charcoal);
  border-radius: 1rem;
  padding: 2rem;
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--electric-blue);
  margin-bottom: 1.5rem;
  text-align: center;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
  text-align: center;
}

.service-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

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

.service-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.service-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--electric-blue);
  font-weight: bold;
}

/* How It Works Section */
.how-it-works {
  background-color: var(--dark-charcoal);
  border-radius: 1rem;
  padding: 4rem 2rem;
  margin: 4rem 0;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  margin: 3rem 0;
}

.step {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-number {
  background: linear-gradient(135deg, var(--electric-blue), var(--electric-blue-light));
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.step-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.step-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.demo-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: rgba(31, 142, 241, 0.1);
  border-radius: 1rem;
}

.demo-cta h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.demo-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.play-demo-button, .call-demo-button {
  background: linear-gradient(90deg, var(--electric-blue), var(--electric-blue-light));
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.play-demo-button:hover, .call-demo-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(31, 142, 241, 0.3);
}

.call-demo-button {
  background: linear-gradient(90deg, var(--success-green), #2dd4bf);
}

/* Testimonials Section */
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.testimonial-card {
  background-color: var(--dark-charcoal);
  border-radius: 1rem;
  padding: 2rem;
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  position: relative;
}

.testimonial-content {
  margin-bottom: 2rem;
  position: relative;
}

/* Removed blue quotation marks */

.testimonial-author {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

.author-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.author-title {
  font-size: 0.875rem;
  color: var(--electric-blue);
}

.client-logos {
  text-align: center;
  margin-top: 4rem;
}

.logo-title {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.7);
}

.logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1.5rem;
}

.client-logo {
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  width: 200px;
  height: 100px;
}

.client-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(31, 142, 241, 0.3);
}

.company-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* FAQ Section */
.faq {
  margin: 4rem 0;
}

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

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 1.25rem;
  margin: 0;
  font-weight: 600;
}

.faq-toggle {
  background-color: var(--electric-blue);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  display: none;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  display: block;
}

/* Schedule Demo Section */
.schedule-demo {
  background-color: var(--dark-charcoal);
  border-radius: 1rem;
  padding: 4rem 2rem;
  margin: 4rem 0;
}

.schedule-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 3rem;
}

.schedule-info {
  flex: 1;
  min-width: 300px;
}

.schedule-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.discovery-list {
  list-style: none;
  margin-bottom: 2rem;
}

.discovery-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.discovery-list i {
  color: var(--success-green);
  font-size: 1.125rem;
}

.limited-spots {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(245, 158, 11, 0.1);
  color: var(--warning-orange);
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-weight: 500;
  margin-top: 1rem;
}

.schedule-form {
  flex: 1;
  min-width: 300px;
  background-color: var(--medium-gray);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-header {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-family: 'Inter', sans-serif;
}

.form-group input:focus {
  outline: none;
  border-color: var(--electric-blue);
}

.submit-button {
  width: 100%;
  background: linear-gradient(90deg, var(--electric-blue), var(--electric-blue-light));
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(31, 142, 241, 0.3);
}

/* Footer */
footer {
  background-color: var(--dark-charcoal);
  padding: 4rem 2rem 2rem;
  margin-top: auto;
  border-radius: 1rem 1rem 0 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
  padding: 0.5rem;
}

.footer-logo p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.5rem 0;
}

.footer-contact {
  flex: 1;
  min-width: 250px;
  padding: 0.5rem;
}

.footer-contact h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  padding: 0.25rem 0;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
  color: var(--electric-blue);
  font-size: 1.125rem;
  width: 20px;
  text-align: center;
}

.contact-info a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--electric-blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  padding: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  padding: 0.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--electric-blue);
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 3rem 0;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-content p {
    font-size: 1.125rem;
  }
  
  .hero-image {
    max-width: 300px;
  }
  
  .nav-links {
    display: none;
  }
}

@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .step {
    min-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
