@font-face {
  font-family: 'Circular Std';
  src:
    url('assets/fonts/CircularStd-Book.woff2') format('woff2'),
    url('assets/fonts/CircularStd-Book.woff') format('woff'),
    url('assets/fonts/CircularStd-Book.ttf') format('truetype');
  font-weight: 400; /* Book weight is typically 400 */
  font-style: normal;
}

:root {
  --primary-color: #2ac17e;
  --primary-dark: #229f68;
  --primary-light: #eafaf4; /* Added light primary color */
  --secondary-color: #64748b;
  --background-color: #ffffff;
  --text-color: #1e293b;
  --light-gray: #fafaf9;
  --border-color: #e2e8f0;
  --gradient-start: #2ac17e;
  --gradient-end: #229f68;
}

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

body {
  font-family: 'Circular Std', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  background-color: #f5f2ed;
  background-color: var(--primary-light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

/* Header & Navigation */
/* header {
  background-color: var(--background-color);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
} */
/* 
header.scroll-down {
  transform: translateY(-100%);
}

header.scroll-up {
  transform: translateY(0);
} */

.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.is-nav {
  padding: 0px;
}

nav {
  padding: 0.75rem 1rem;
  width: calc(100% - 4rem); /* Account for container padding */
  border-radius: 1rem;
  /* border: 1px solid var(--border-color); */
  position: fixed;
  top: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1250px;
  z-index: 1000;
  /* background: rgba(255, 255, 255, 0.8); */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  display: inline-block;
  display: flex;
  text-decoration: none;
  gap: 1rem;
  align-items: center;
}

.logo-webp {
  display: flex;
  align-items: center;
}

.logo-image {
  width: 9.25rem;
}

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

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

.nav-links a:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Buttons */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary-color);
  color: white !important;
  box-shadow: 0 4px 6px -1px rgba(42, 193, 126, 0.2);
}
.btn-download {
  background: none;
  color: var(--text-color);
  box-shadow: none;
  padding: 0;
}
.btn-download img {
  max-height: 4.5rem;
  max-width: 13rem;
}

.is-small {
  padding: 0.5rem 1rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 8px -1px rgba(42, 193, 126, 0.3);
}

.btn-secondary {
  background-color: var(--light-gray);
  color: var(--text-color);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  background-color: var(--border-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 8px -1px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.hero {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  padding: 8rem 1rem 4rem 1rem;
  grid-template-columns: 1.25fr 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 100vh;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-content h1 {
  font-size: 3.6rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
}

.hero-images {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.hero-images img {
  height: 100%;
  width: 100%;
  border-radius: 1rem;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.1));
}

.highlight {
  color: var(--primary-color);
  /* text-decoration: underline;
  text-underline-offset: 10px; */
}

/* Features Section */
.features {
  padding: 6rem 2rem;
  background-color: var(--light-gray);
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-color);
}

.feature-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: var(--background-color);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
}

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

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: var(--text-color);
  font-size: 1.25rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step {
  text-align: center;
  padding: 2rem;
  background-color: var(--light-gray);
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
  color: var(--background-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 600;
  font-size: 1.25rem;
}

/* Pricing Section */
.pricing {
  padding: 6rem 2rem;
  background-color: var(--light-gray);
}

.pricing h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-color);
}

.pricing-cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background-color: var(--background-color);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.featured {
  transform: scale(1.05);
  border: 2px solid var(--primary-color);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1rem 0;
  color: var(--primary-color);
}

.price span {
  font-size: 1rem;
  color: var(--secondary-color);
}

.pricing-card ul {
  list-style: none;
  margin: 2rem 0;
}

.pricing-card li {
  margin: 0.5rem 0;
  color: var(--text-color);
}

/* Footer */
footer {
  /* background-color: var(--light-gray); */ /* Removed background */
  padding: 2rem 2rem; /* Adjusted padding */
  /* border-top: 1px solid var(--primary-color); */
  text-align: center; /* Center align text */
  color: var(--secondary-color); /* Set default text color */
  font-size: 0.95rem; /* Adjust font size if needed */
}

footer p {
  margin-bottom: 0.75rem; /* Add spacing between paragraphs */
}

footer a {
  color: var(--secondary-color); /* Link color */
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--primary-color); /* Link hover color */
}

/* Animation Classes */
.animate {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 2fr;
    text-align: center;
    padding-top: 8rem;
  }

  .hero-images {
    order: 1;
  }

  .hero-images img {
    max-width: 20rem;
  }

  .feature-circles {
    align-items: center;
    justify-content: center;
  }

  .hero .container {
    order: 2;
    padding-top: 1rem;
  }

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

  .cta-buttons {
    justify-content: center;
    display: flex;
    flex-direction: column;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-section.legal-links {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* Legal Content Styles */
.legal-content {
  max-width: 800px;
  margin: 8rem auto 4rem;
  padding: 0 2rem;
}

.legal-content h1 {
  font-size: 2.5rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.legal-content .last-updated {
  color: var(--secondary-color);
  margin-bottom: 3rem;
}

.legal-content section {
  margin-bottom: 3rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-size: 1.25rem;
  color: var(--text-color);
  margin: 1.5rem 0 1rem;
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.legal-content ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .legal-content {
    margin-top: 6rem;
    padding: 0 1rem;
  }

  .legal-content h1 {
    font-size: 2rem;
  }

  .legal-content h2 {
    font-size: 1.25rem;
  }
}

.social-proof {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  align-items: center;
}

.rating,
.downloads {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary-color);
  font-size: 0.95rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
  color: #fbbf24;
}

.stars i {
  font-size: 1rem;
}

.downloads i {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .social-proof {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}

/* How It Works Alt Section */
.how-it-works {
  padding: 4rem 2rem;
  margin: 0 auto;
  background-color: var(--primary-light);
}

.how-it-works.is-alt {
  /* background-color: white !important; */
  padding: 4rem 2rem;
  padding-top: 0 !important;
}

.how-it-works .container {
  max-width: 1200px;
}

.how-it-works-wrapper {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr; /* Adjust ratio as needed */
  gap: 4rem;
  align-items: center;
  /* Card styles added below */
  background-color: var(--background-color); /* White background */
  padding: 3rem; /* Padding inside the card */
  border-radius: 1rem; /* Rounded corners */
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05); /* Shadow */
  border: 1px solid var(--border-color); /* Subtle border */
}

.how-it-works-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  line-height: 1.3;
}

.how-it-works-content p {
  font-size: 1.1rem;
  color: var(--secondary-color);
  line-height: 1.7;
}

.how-it-works-image {
  display: flex;
  justify-content: center;
  align-items: center;

  object-fit: contain;
  position: relative; /* For potential future overlays */
}

.how-it-works-image img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 15px 20px -10px rgba(0, 0, 0, 0.15);
}

/* Features Section */
.features {
  padding: 6rem 2rem;
  background-color: var(--light-gray);
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-color);
}

.feature-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: var(--background-color);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
}

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

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: var(--text-color);
  font-size: 1.25rem;
}

/* Responsive adjustments for How It Works Alt Section */
@media (max-width: 992px) {
  .how-it-works-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    padding: 1.5rem; /* Reduced padding */
  }
  .how-it-works-content h2 {
    font-size: 2rem;
  }
  .how-it-works-content p {
    font-size: 1rem;
  }
  /* Removed the rule below as it likely caused unintended padding issues */
  /* .how-it-works-alt .container {
    padding: 2rem;
  } */
}

/* CTA Section */
.cta-section {
  color: rgb(50, 44, 44); /* White text */
  padding: 4rem 2rem;
  text-align: center;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  left: auto;
  width: 100%;
  right: auto;
  color: #ffffff; /* White text */
  padding: 4rem 2rem;
  border-radius: 1rem; /* Rounded corners like the image */
  background-color: var(--primary-dark); /* Dark background like the image */
}

.cta-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  align-self: center;
}

.cta-section h2 {
  font-size: 3.25rem; /* Adjust as needed */
  font-weight: 700;
}

.cta-section p {
  font-size: 1.25rem;
  color: #d1d5db; /* Lighter gray for subtitle */
  max-width: 500px; /* Limit subtitle width */
  margin-bottom: 1rem;
}

/* Override btn-primary for this specific section to match image */
.cta-section .btn-primary {
  padding: 0.875rem 2rem; /* Example: slightly larger padding */
  background: white; /* White button like the image */
  color: #111827 !important; /* Dark text for white button */
  box-shadow: 0 4px 6px -1px rgba(255, 255, 255, 0.1); /* Subtle white shadow */
}

.cta-section .btn-primary:hover {
  background: #f3f4f6; /* Slightly off-white on hover */
  box-shadow: 0 6px 8px -1px rgba(255, 255, 255, 0.15);
  transform: translateY(-2px); /* Keep hover effect */
}

/* Responsive adjustments for CTA Section */
@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 2rem;
  }
  .cta-section p {
    font-size: 1rem;
  }
  .cta-section {
    max-width: calc(100% - 2rem); /* Adjust width for smaller screens */
    margin: 2rem auto;
    padding: 3rem 1rem;
  }
}

/* Feature Circles */
.feature-circles {
  display: flex;
  margin-top: 2rem; /* Add some space above the circles */
}

.feature-circle {
  width: 60px; /* Adjust size as needed */
  height: 60px;
  border-radius: 50%;
  background-color: #ccc; /* Placeholder background */
  background-size: cover;
  background-position: center;
  border: 3px solid white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.feature-circle:not(:first-child) {
  margin-left: -30px; /* Adjust overlap amount */
}

/* Social Proof - Below Feature Circles */
.social-proof {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  align-items: center;
}
