/* Reset & Base */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 200;
  background: #fff;
  color: #1a2330;
  line-height: 1.6;
  font-size: 1rem;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 200;
}
img { max-width: 100%; display: block; }
a { color: #2563eb; text-decoration: none; transition: color 0.2s; }
a:hover { color: #1e40af; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* Navbar */
.navbar {
  position: absolute;
  background: transparent;
  padding: 1.5rem 2rem;
  transition: box-shadow 0.2s;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
}
.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo { display: flex; align-items: center; font-weight: 700; font-size: 1.25rem; color: #2563eb; font-weight: 200; }
.logo .nav-brand { font-weight: 200; margin-left: 0.2em; }
.logo img { height: 32px; margin-right: 0.5rem; }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0 auto;
}
.nav-links li a { font-weight: 300; font-size: 1rem; color: #2563eb; }
.btn { display: inline-block; padding: 0.75em 1.5em; border-radius: 6px; font-weight: 600; font-size: 1rem; cursor: pointer; border: none; transition: background 0.2s, color 0.2s, box-shadow 0.2s; box-shadow: 0 2px 8px 0 rgba(37,99,235,0.08); }
.btn-primary { background: #2563eb; color: #fff; }
.btn-primary:hover { background: #1741b6; color: #fff; }
.btn-outline { background: #fff; color: #2563eb; border: 2px solid #2563eb; }
.btn-outline:hover { background: #2563eb; color: #fff; }
.btn-secondary { background: #e0e7ff; color: #2563eb; }
.btn-secondary:hover { background: #c7d2fe; }

/* Hero */
.hero {
  background: linear-gradient(120deg, #e0e7ff 0%, #fff 100%);
  padding: 11rem 0 8rem 0; position: relative; overflow: hidden;
}
.hero-content { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.hero-text { flex: 1; z-index: 2; }
.hero-text h1 { font-size: 3rem; font-weight: 400; line-height: 1.2; color: #1a2330; margin-bottom: 1rem; }
.hero-text .subhead { font-size: 1.25rem; color: #475569; margin-bottom: 2rem; }
.hero-visual { flex: 1; display: flex; justify-content: center; align-items: center; }
.dashboard-mockup { position: relative; width: 100%; max-width: 420px; filter: blur(0.5px) drop-shadow(0 8px 32px rgba(37,99,235,0.12)); border-radius: 18px; overflow: hidden; box-shadow: 0 8px 32px 0 rgba(37,99,235,0.10); }
.dashboard-mockup img { width: 100%; border-radius: 18px; }

/* How It Works */
/* 1. Reset the counter on the container */
.steps {
  counter-reset: step;
}

/* 2. Increment for each .step */
.step {
  counter-increment: step;
  position: relative;
  padding: 2.5rem 2rem 2.5rem 4.5rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(30,64,175,0.06);
  min-width: 260px;
  max-width: 340px;
  margin: 0 auto;
  text-align: left;
  overflow: hidden;
}

/* 3. Style the "badge" as just a number */
.step-badge {
  position: absolute;
  top: 0.7rem;
  left: 1.1rem;
  font-size: 4.2rem;
  font-weight: 700;
  color: #2563EB;
  line-height: 1;
  opacity: 0.09;
  pointer-events: none;
  z-index: 2;
  user-select: none;
}
/* add the glass-y halo */
.step::before {
  content: "";
  position: absolute;
  display: block;
  top: -1rem;
  left: -1rem;
  width: 6rem;
  height: 6rem;
  background: linear-gradient(120deg, rgba(255,255,255,0.7) 0%, rgba(224,231,255,0.5) 100%);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.7;
  pointer-events: none;
}
/* 4. Pull in the counter value */
.step .step-badge::before {
  content: counter(step);
}

.step h3 {
  font-weight: 300;
}
.step h3, .step p {
  position: relative;
  z-index: 3;
}

.how-it-works {
  background: none;
  padding: 7rem 0;
}
.how-it-works h2 { text-align: center; margin-bottom: 2.5rem; font-size: 2.5rem; color: #2563eb; }
.steps { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.step:hover { transform: translateY(-6px) scale(1.03); box-shadow: 0 6px 24px 0 rgba(37,99,235,0.10); }
.step img { height: 48px; margin-bottom: 1rem; }
.step h3 { font-size: 1.15rem; color: #2563eb; margin-bottom: 0.5rem; }

/* Features */
.features { padding-bottom: 7rem; }
.features h2 { text-align: center; margin-bottom: 2.5rem; font-size: 2rem; color: #2563eb; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.feature-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(30,64,175,0.06);
  padding: 2.2rem 1.5rem 1.7rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 240px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  box-shadow: 0 6px 24px 0 rgba(37,99,235,0.10);
  transform: translateY(-4px) scale(1.02);
}
.feature-card img, .feature-card svg {
  height: 28px;
  margin-bottom: 1.1rem;
  opacity: 0.7;
}
.feature-card h3 {
  font-size: 1.18rem;
  font-weight: 500;
  color: #222;
  margin-bottom: 0.7rem;
}
.feature-card p {
  color: #444;
  font-size: 1.05rem;
  font-weight: 200;
  line-height: 1.6;
}
.feature-svg {
  display: block;
  margin-bottom: 1.1rem;
  width: 32px;
  height: 32px;
  color: #6366f1;
  opacity: 0.85;
}

/* Roadmap */
.roadmap {
  background: #f3f6fa;
  padding: 7rem 0;
}
.roadmap h2 {
  text-align: center;
  color: #2563eb;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.roadmap-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.roadmap-item {
  background: #fff;
  border-radius: 12px;
  border: 1.5px solid #e0e7ef;
  box-shadow: none;
  padding: 1.25rem 2rem;
  font-weight: 500;
  color: #2563eb;
  font-size: 1.1rem;
  min-width: 220px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.roadmap-item span {
  color: #2563eb;
  font-weight: 500;
  margin-right: 0.5rem;
}

/* Testimonials */
.testimonials {
  padding: 7rem 0;
  background: #f8fafc;
}
.testimonials h2 { text-align: center; color: #2563eb; font-size: 2rem; margin-bottom: 2rem; }
.testimonials-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.testimonial {
  background: #f8fafc;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(30,64,175,0.05);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.testimonial svg {
  height: 32px;
}
.testimonial p {
  font-size: 1.05rem;
  color: #1a2330;
}
.testimonial span {
  color: #475569;
  font-size: 0.95rem;
}

/* Pricing */
.pricing { background: #f8fafc; padding-top: 7rem; }
.pricing h2 { text-align: center; color: #2563eb; font-size: 2.5rem; margin-bottom: 2rem; }
.pricing-cards { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.pricing-card { background: #fff; border-radius: 14px; box-shadow: 0 2px 16px 0 rgba(30,64,175,0.06); padding: 2.5rem 2rem; min-width: 260px; max-width: 320px; text-align: center; transition: transform 0.2s, box-shadow 0.2s; }
.pricing-card.featured {
  border: none;
  background: linear-gradient(120deg, rgba(255,255,255,0.92) 0%, rgba(224,231,255,0.85) 100%);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 32px 0 rgba(37,99,235,0.10);
  border-radius: 18px;
  border: 1.5px solid rgba(37,99,235,0.08);
  position: relative;
}
.pricing-card.glass {
  background: linear-gradient(120deg, rgba(255,255,255,0.92) 0%, rgba(224,231,255,0.85) 100%);
  backdrop-filter: blur(18px);
  border: 1.5px solid rgba(37,99,235,0.08);
  box-shadow: 0 8px 32px 0 rgba(37,99,235,0.10);
}
.pricing-card h3 { color: #2563eb; font-size: 1.25rem; margin-bottom: 0.5rem; font-weight: 200; }
.featured-heading { font-weight: 500 !important;  }
.price { font-size: 2.25rem; font-weight: 700; color: #1a2330; margin-bottom: 0.5rem; }
.price span { font-size: 1rem; color: #475569; font-weight: 400; }
.billing { color: #475569; font-size: 0.95rem; margin-bottom: 1rem; }
.pricing-card ul { list-style: none; margin-bottom: 1rem; }
.pricing-card ul li { margin-bottom: 0.5rem; }
.pricing-note { text-align: center; margin-top: 1.5rem; color: #475569; font-size: 1.05rem; }

/* Who It's For */
.who-for { padding: 7rem 0; background: #fff; }
.who-for h2 { text-align: center; color: #2563eb; font-size: 2rem; margin-bottom: 2rem; }
.personas { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.persona {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(30,64,175,0.05);
  padding: 2rem 1.5rem 2rem 1.5rem;
  min-width: 220px;
  max-width: 280px;
  margin: 0 auto;
  border-left: 1.5px solid #6366f1;
  border-right: none;
  border-top: none;
  border-bottom: none;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.persona:hover {
  box-shadow: 0 6px 24px 0 rgba(37,99,235,0.10);
  transform: translateY(-4px) scale(1.02);
  border-left: 1.5px solid #2563eb;
  background: #f8fafc;
}
.persona-svg {
  width: 32px;
  height: 32px;
  color: #6366f1;
  margin-bottom: 1.1rem;
  opacity: 0.85;
}
.persona h3 {
  color: #222;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.persona p {
  color: #444;
  font-size: 1rem;
  font-weight: 200;
}

/* Demo */
.demo { background: #f8fafc; padding: 7rem 0; }
.demo h2 { text-align: center; color: #2563eb; font-size: 2rem; margin-bottom: 2rem; }
.demo-video { display: flex; flex-direction: column; align-items: center; gap: 0rem; }
.demo-video video { border-radius: 14px; box-shadow: 0 2px 16px 0 rgba(30,64,175,0.08); }
.demo-caption { color: #475569; font-size: 1rem; margin-top: 0.5rem; }

/* Trust & Social Proof */
.trust {
  background: #f8fafc;
  padding: 7rem 0 3rem 0;
}
.trust-heading {
  text-align: center;
  color: #2563eb;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  font-weight: 200;
}
.trust-logos.improved {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.trust-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  color: #1a2330;
  font-weight: 200;
  min-width: 90px;
}
.trust-logo svg {
  height: 40px;
  width: 40px;
  display: block;
  margin-bottom: 0.25rem;
}
.trust-counter {
  text-align: center;
  color: #2563eb;
  font-size: 0.9rem;
  margin-top: 1.5rem;
}
.trust-logo-icon {
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem auto;
  box-shadow: 0 4px 34px 0 rgba(30,64,175,0.1);
}
.trust-logo-img {
  max-width: 60%;
  max-height: 60%;
  object-fit: contain;
  display: block;
  background: none;
  border-radius: 0;
  box-shadow: none;
}

/* FAQ */
.faq { background: #f8fafc; padding: 4rem 0; }
.faq h2 { text-align: center; color: #2563eb; font-size: 2rem; margin-bottom: 2rem; }
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: 10px; box-shadow: 0 2px 12px 0 rgba(30,64,175,0.05); margin-bottom: 1rem; overflow: hidden; transition: box-shadow 0.2s; }
.faq-question { width: 100%; background: none; border: none; outline: none; font-size: 1.1rem; color: #2563eb; font-weight: 500; padding: 1.25rem 1rem; text-align: left; cursor: pointer; transition: background 0.2s; }
.faq-question:hover { background: #e0e7ff; }
.faq-answer { display: none; padding: 0 1rem 1rem 1rem; color: #475569; font-size: 1rem; }
.faq-item.open .faq-answer { display: block; animation: fadeIn 0.3s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Remove newsletter and lead magnet styles */
.newsletter, .lead-magnet, .lead-magnet-content, .lead-form, .lead-note { display: none !important; height: 0 !important; }

/* Footer */
.footer {
  background: #f3f6fa;
  color: #1a2330;
  padding: 2.5rem 0 1.5rem 0;
}

/* Make footer content stack in a column and center everything */
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0rem;
}

/* Hide old footer links if any */
.footer-links {
  display: none !important;
}

/* Centered social icons row */
.footer-social {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin: 0; /* reset any auto margins */
}

/* SVG icon styling */
.footer-social svg {
  width: 20px;
  height: 20px;
  fill: #444;
  transition: transform 0.2s, filter 0.2s;
}

/* Hover effect for icons */
.footer-social svg:hover {
  transform: scale(1.1);
  filter: brightness(0.8) saturate(1.2);
}

/* Centered "Made by…" text */
.footer-made {
  text-align: center;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

/* Micro-animations */
.btn,
.step,
.feature,
.persona,
.pricing-card,
.faq-item,
.testimonial,
.lead-magnet-content {
  transition: box-shadow 0.2s,
              transform 0.2s,
              background 0.2s,
              color 0.2s;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .footer-content {
    gap: 1rem;
  }
  .personas {
    flex-direction: column;
    gap: 1.5rem;
  }
  .persona {
    max-width: 100%;
    min-width: 0;
  }
}
  .trust-logos.improved {
    gap: 1.5rem;
  }
  .trust-logo {
    min-width: 70px;
    font-size: 0.95rem;
  }
}
@media (max-width: 600px) {
  .container { padding: 0 0.5rem; }
  .hero { padding: 3rem 0 2rem 0; }
  .how-it-works, .features, .roadmap, .testimonials, .pricing, .who-for, .demo, .trust, .faq, .lead-magnet { padding: 2rem 0; }
  .step, .feature, .persona, .pricing-card, .lead-magnet-content { padding: 1.25rem 0.75rem; }
  .dashboard-mockup { max-width: 100%; }
  .testimonials-scroll { min-width: 0; }
  .trust-heading {
    font-size: 1.3rem;
  }
  .trust-logos.improved {
    gap: 1rem;
  }
  .trust-logo svg {
    height: 32px;
    width: 32px;
  }
  h2 {
    font-size: 1.5rem;
  }
}

/* ROI Section */
.roi-section {
  background: #fff;
  padding: 7rem 0;
}
.roi-content {
  display: flex;
  align-items: center;
  gap: 7rem;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.roi-image {
  flex: 1 1 340px;
  min-width: 280px;
  max-width: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.roi-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: none !important;
  object-fit: cover;
}
.roi-text {
  flex: 2 1 400px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.roi-text h2 {
  color: #2563eb;
  font-size: 2rem;
  font-weight: 200;
}
.roi-text ul {
  margin: 1rem 0 1.5rem 1.2rem;
  padding-left: 1.2rem;
  color: #1a2330;
  font-size: 1.05rem;
  font-weight: 200;
}
.roi-text ul li::marker {
  color: #c7d2fe;  /* your desired bullet color */
}

@media (max-width: 900px) {
  .roi-content {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
  }
  .roi-image, .roi-text {
    max-width: 100%;
    min-width: 0;
  }
}

/* More Love From Our Users (testimonials-more) */
.testimonials-more {
  padding: 7rem 0;
  background: #fff;
}
.testimonials-more h2 {
  text-align: center;
  color: #2563eb;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 200;
}
.testimonials-more .testimonials-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.testimonials-more .testimonial {
  background: #f8fafc;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(30,64,175,0.05);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.testimonials-more .testimonial svg {
  height: 32px;
}
.testimonials-more .testimonial p {
  font-size: 1.05rem;
  color: #1a2330;
}
.testimonials-more .testimonial span {
  color: #475569;
  font-size: 0.95rem;
}

/* Hamburger styles */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 200;
}
.nav-hamburger span {
  display: block;
  height: 3px;
  width: 28px;
  background: #2563eb;
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Responsive nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .nav-hamburger {
    display: flex;
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    box-shadow: 0 8px 32px 0 rgba(37,99,235,0.10);
    padding: 1.5rem 2rem;
    display: none;
    z-index: 150;
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 1.2rem;
    margin: 0;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links li a {
    display: block;
    width: 100%;
    padding: 0.7rem 0;
    font-size: 1.1rem;
  }
  .btn.btn-primary {
    width: 100%;
    margin-top: 1rem;
    text-align: center;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-links,
  .btn.btn-primary {
    display: none;
  }
  .nav-menu.active .nav-links,
  .nav-menu.active .btn.btn-primary {
    display: flex;
  }
}
/* Container for responsive embed */
.iframe-container {
  position: relative;
  width: 100%;
  /* on small screens it's full-width; on desktop it'll cap at 800px */
  max-width: 800px;
  /* center + bottom gap */
  /* 16:9 aspect ratio */
  padding-bottom: 48%;
  height: 0;
}

/* The actual iframe */
.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

/* Optional: slightly smaller on really big screens */
@media (min-width: 1200px) {
  .iframe-container {
    max-width: 1000px;
  }
}
.iframe-container {
  max-height: 550px;
}
.iframe-container iframe {
  max-height: 550px;
}