/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@700;800&family=Quicksand:wght@400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');



/* CSS Variables */
:root {
  --primary-orange: #FF6F00;
  /* A vibrant, cheerful orange */
  --secondary-purple: #2A004E;
  /* A deep, professional purple */
  --light-lavender: #F4F0F8;
  --neutral-white: #FFFFFF;
  --neutral-dark: #333333;
  --font-headline: 'Baloo 2', cursive;
  --font-body: 'Quicksand', sans-serif;
  --container-width: 1600px;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  --border-radius: 12px;
}

/* Basic Reset & Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--neutral-dark);
  background-color: var(--neutral-white);
  line-height: 1.6;
  font-size: 16px;
}

/* Utility Classes */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-family: var(--font-headline);
  font-size: 2.8rem;
  color: var(--secondary-purple);
  text-align: center;
  margin-bottom: 20px;
}



.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #272626;
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: var(--primary-orange);
  color: var(--neutral-white);
  margin-top: 40px;
}

.btn-primary-nav {
  display: inline-block;
  padding: 5px 20px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  background-color: var(--primary-orange);
  color: var(--neutral-white);
  height: fit-content;
}

.btn-primary:hover {
  background-color: #E66300;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 111, 0, 0.4);
}

/* Header & Navigation */
.main-header {
  padding: 20px 0;
  background-color: #ffffff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-headline);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-orange);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo span {
  color: var(--primary-orange);
}

.logo-img {
  height: 40px;
  /* Adjust the logo size */
  margin-right: 10px;
  /* Space between logo and text */
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  /* Space between the links */
}



nav a {
  text-decoration: none;
  color: #333;
  font-size: 1rem;
}

nav a:hover {
  color: #ff6f61;
  /* Hover effect */
}

/* Hero Section */
.leads-counter {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  color: #2a004e;
  /* your brand purple */
}

.leads-counter .label {
  font-size: 1rem;
  font-weight: 500;
  color: #555;
}

.count {
  font-size: 2rem;
  font-weight: 700;
  color: #ff6f00;
  /* your brand orange */
  transition: transform 0.2s ease;
}

.plus {
  font-size: 1.5rem;
  color: #ff6f00;
}

/* Optional pulsing effect to show growth */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }

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

.grow {
  animation: pulse 0.3s ease;
}


.hero {
  background: var(--neutral-white);
  background-position: center;
  padding: 80px 20px;
  color: var(--neutral-dark);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  /* text | video */
  align-items: center;
  margin: 0 auto;
  min-height: 75vh;
  max-width: var(--container-width);
}

.header-container {
  width: 100%;
  text-align: left;
  /* Left-align the text */

}

.hero h1 {
  font-family: var(--font-headline);
  font-size: 4rem;
  color: var(--secondary-purple);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--primary-orange);
}

.hero p {
  font-size: 1.3rem;
  font-weight: 500;
  max-width: 750px;
  margin: 16px 0 24px 0;
  color: #444;
}

/* Hero media (video on the right) */
.hero-media {
  border-radius: 16px;
  overflow: hidden;
}

.video-aspect {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 */
}

.video-aspect iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 56px 20px;
    min-height: auto;
  }

  .hero-media {
    order: 2;
  }
}

/* About Section */
/* ========== ABOUT SECTION ========== */
.about {
  background: linear-gradient(180deg, var(--neutral-white) 0%, var(--neutral-white) 100%);
  padding: 100px 0;
}

.about-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.about-content h2 {
  margin-top: 20px;
  font-family: var(--font-headline);
  font-size: 2.6rem;
  color: var(--secondary-purple);
  margin-bottom: 18px;
  line-height: 1.15;
}

.about-content h2 span {
  color: var(--primary-orange);
}

.about-content .lead {
  font-size: 1.125rem;
  margin-bottom: 18px;
}

.about-content p {
  color: #272626;
  margin-bottom: 16px;
}

.about-content p em {
  font-style: italic;
}

.about-content .closing {
  margin-top: 8px;
  font-weight: 500;
}

.about-content .closing strong {
  color: var(--secondary-purple);
}

.about-content .accent {
  color: var(--primary-orange);
}

/* Highlights list */
.about-highlights {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
  margin-top: 22px;
}

.about-highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--neutral-white);
  border: 1px solid rgba(42, 0, 78, 0.08);
  border-radius: var(--border-radius);
  padding: 12px 14px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-weight: 600;
}

.about-highlights li:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.about-highlights svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  fill: var(--primary-orange);
  opacity: 0.95;
}

/* Sidebar card */
.about-card {
  background: var(--neutral-white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(42, 0, 78, 0.08);
  padding: 22px 22px 26px;
  position: sticky;
  top: 24px;
}

.about-card h3 {
  font-family: var(--font-headline);
  color: var(--secondary-purple);
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.about-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.about-card li {
  line-height: 1.5;
}

.about-cta {
  display: inline-block;
  background: var(--primary-orange);
  color: var(--neutral-white);
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 22px;
  box-shadow: 0 6px 18px rgba(255, 111, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.about-cta:hover {
  background: #E66300;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(255, 111, 0, 0.45);
}

/* ========== PROBLEM SECTION ========== */
.problem-section {
  background: var(--neutral-white);
}

.problem-section .section-title {
  margin-bottom: 10px;
}

.problem-section .section-subtitle {
  margin-bottom: 32px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.problem-card {
  background: var(--neutral-white);
  border: 1px solid rgba(42, 0, 78, 0.08);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.problem-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.problem-card .emoji {
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.problem-card h3 {
  font-family: var(--font-headline);
  color: var(--secondary-purple);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.problem-card p {
  color: #272626;
}

/* ========== SOLUTION SECTION ========== */
.solution-section {
  background: linear-gradient(180deg, var(--light-lavender) 0%, var(--neutral-white) 100%);
  padding: 90px 0;
  text-align: center;
}

.solution-section .section-title {
  margin-bottom: 10px;
}

.solution-section .solution-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.15rem;
}

.solution-section .solution-content span {
  font-weight: 700;
  color: var(--secondary-purple);
  background: linear-gradient(transparent 60%, rgba(255, 111, 0, 0.18) 60%);
  padding: 0 2px;
  border-radius: 4px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-card {
    position: static;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }
}

/* Problem Section */
.problem-section {
  background: white;
  /* Ombre effect with purple shades from top to bottom */

}

.sige-video {
  height: 100%;
  width: 100%;
  aspect-ratio: 1 / 1;
  /* Keeps it perfectly square */
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block;
}


.video-container {
  position: relative;
  /* Positioning context for child elements */
  overflow: hidden;
  /* Hide any overflow for a neat edge */
  border-radius: 10px;
  /* Rounded corners for a soft look */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  /* Subtle shadow to lift the container */
  max-width: 100%;
  /* Ensure the container is flexible and responsive */
  background-color: #000;
  /* Black background to fill the empty space around the video */
  margin: 0 auto;
  /* Center the container */
  display: flex;
  /* Flexbox for better control over video and container */
  justify-content: center;
  /* Center the video horizontally */
}

.video-container iframe {
  width: 100%;
  /* Make the iframe take up the full width of the container */
  height: 100%;
  /* Make the iframe take up the full height of the container */
  border: none;
  /* Remove border around iframe */
  border-radius: 10px;
  /* Match the container's rounded corners */
}

@media screen and (max-width: 68px) {
  .video-container {
    width: 100%;
    /* Full width on smaller screens */
    height: 280px;
    /* Fixed height for mobile screens */
  }

  .video-container iframe {
    height: 100%;
    /* Ensure iframe adjusts to the new container height */
  }
}

@media screen and (min-width: 769px) {
  .video-container {
    width: 800px;
    /* Set a fixed width on larger screens */
    height: 280px;
    /* Fixed height for a better visual appearance */
  }
}


.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Basic Styling */
.problem-card {
  background-color: #FFF9F3;
  /* Light background for contrast */
  border-left: 5px solid var(--secondary-purple);
  /* Bold left border to highlight */
  padding: 30px;
  /* Ample padding for spacing */
  border-radius: 10px;
  /* Slightly rounded corners for softness */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  /* Subtle shadow for a floating effect */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Smooth transitions for hover */
  cursor: pointer;
  /* Pointer cursor to indicate interactivity */
}



/* Emoji Styling */
.problem-card .emoji {
  font-size: 2.5rem;
  /* Larger emoji for better visual impact */
  margin-bottom: 15px;
  /* Space between emoji and text */
  transition: transform 0.3s ease;
  /* Smooth transition for hover */
}

.problem-card:hover .emoji {
  transform: scale(1.1);
  /* Slightly enlarge emoji on hover */
}

/* Heading Styling */
.problem-card h3 {
  font-size: 1.5rem;
  /* Larger, bold heading */
  font-weight: 600;
  margin-bottom: 15px;
  /* Spacing below the heading */
  color: #333;
  /* Dark text for better readability */
  transition: color 0.3s ease;
  /* Transition effect for text color */
}

.problem-card:hover h3 {
  color: var(--primary-orange);
  /* Change text color on hover */
}

/* Paragraph Styling */
.problem-card p {
  font-size: 1rem;
  /* Readable font size */
  color: #666;
  /* Soft gray text for the paragraph */
  line-height: 1.5;
}

/* Optional: Add a gradient background to make the card pop even more */
.problem-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  z-index: -1;
}


.problem-card .emoji {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.problem-card h3 {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  color: var(--secondary-purple);
  margin-bottom: 10px;
}

/* Solution Section */
.solution-section {
  background: var(--light-lavender);
  padding: 40px 0;
  text-align: center;

}



.solution-section .section-title,
.solution-section .section-subtitle {

  color: var(--secondary-purple);
}


.solution-content {
  font-size: 1.4rem;

  font-weight: 500;
  color: #000;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 350px;

}

.solution-content span {

  font-weight: 700;
  color: var(--primary-orange);
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 6px;
}

/* Features Section */
.features-section {
  background: var(--light-lavender);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 100px;
}

.feature-card {
  background-color: var(--neutral-white);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-card .emoji {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: var(--font-headline);
  font-size: 1.6rem;
  color: var(--secondary-purple);
  margin-bottom: 15px;
}

/* How It Works Section */
.how-it-works-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-top: 50px;
}

.step {
  text-align: center;
  flex: 1;
}

.step .step-number {
  width: 70px;
  height: 70px;
  background-color: var(--primary-orange);
  color: var(--neutral-white);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-headline);
  font-size: 2rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(255, 111, 0, 0.3);
}

.step h3 {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  color: var(--secondary-purple);
  margin-bottom: 10px;
}

/* Audience Section */
.audience-section {
  padding: 56px 0;
  background-color: var(--light-lavender);
}

.section-title {
  text-align: center;
  margin: 0 0 8px;
  font-size: clamp(28px, 3.5vw, 40px);
}

.section-subtitle {
  text-align: center;
  color: #5f6368;
}

/* Carousel shell */
.audience-carousel {
  position: relative;
  max-width: 1800px;
  margin: 0 auto;
}

/* Viewport with side padding so neighbor slides “peek” */
.carousel-viewport {
  overflow: hidden;
  padding: 0 8vw;
  /* controls how much of neighbors you see */
}

/* Track */
.carousel-track {
  display: flex;
  gap: 28px;
  transition: transform .6s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

/* Slides: big photos, center one pops */
.slide {
  flex: 0 0 72%;
  /* slide width relative to viewport (big photo) */
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  transform: scale(.93);
  opacity: .6;
  transition: transform .4s ease, opacity .4s ease, box-shadow .4s ease;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
  background: #f3f3f3;
}

.slide.is-active {
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .14);
}

/* Images */
.slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  /* makes images less tall */
  object-fit: cover;
  display: block;
  max-height: 420px;
  /* optional ceiling */
}


/* Caption overlay (optional) */
.slide figcaption {
  position: absolute;
  left: 350px;
  bottom: 16px;
  padding: 5px 14px;
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  backdrop-filter: blur(2px);
}

/* Nav buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 0;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .18);
  cursor: pointer;
  font-size: 20px;
  display: grid;
  place-items: center;
}

.carousel-btn:hover {
  box-shadow: 0 8px 26px rgba(0, 0, 0, .22);
}

.carousel-btn.prev {
  left: 16px;
}

.carousel-btn.next {
  right: 16px;
}

/* Mobile tweaks: smaller peek, narrower slides */
@media (max-width: 720px) {
  .carousel-viewport {
    padding: 0 5vw;
  }

  .slide {
    flex-basis: 86%;
  }

  .carousel-btn {
    width: 42px;
    height: 42px;
  }
}

/* Beta CTA Section */
.beta-cta-section {
  background-color: var(--secondary-purple);
  padding: 80px 0;
  text-align: center;
  color: var(--neutral-white);
}

.beta-cta-section .section-title {
  color: var(--primary-orange);
}



.beta-cta-section .section-subtitle {
  color: var(--light-lavender);
}

/* Footer */
.main-footer {
  padding: 40px 0;
  background-color: #1a002f;
  color: #ccc;
  text-align: center;
}

.main-footer .logo {
  color: var(--neutral-white);
  font-size: 1.5rem;
  font-weight: bold;
}

.footer-text {
  margin-top: 15px;
  font-size: 0.9rem;
}

/* Social media icons container */
.social-links {
  margin-top: 20px;
}

.social-icon {
  font-size: 1.5rem;
  color: #ccc;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.social-icon:hover {
  color: #ff6f61;
  /* Change to any color you prefer on hover */
}

/* Responsive Design: Adjust icon sizes and layout for smaller screens */
@media (max-width: 768px) {
  .social-icon {
    font-size: 1.2rem;
  }

  .social-links {
    margin-top: 10px;
  }
}


/* Responsiveness */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2.5rem;
  }

  .hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

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

  .main-header .container {
    flex-direction: column;
    gap: 15px;
  }




  .how-it-works-steps {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  .step {
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .btn {
    padding: 12px 28px;
    font-size: 0.9rem;
  }
}