/* ===== CORE STYLES ===== */
:root {
  --red: #e63946;
  --orange: #f77f00;
  --green: #2a9d8f;
  --dark: #1d3557;
  --light: #f1faee;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ===== BASE RESETS ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #333;
  background: white;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ===== MODERN HEADER STYLES ===== */

.sticky-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  padding: 1rem 2rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-header.scrolled {
  padding: 0.75rem 2rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #e63946 0%, #f77f00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}
.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  position: relative;
  color: #1d3557;
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #e63946 0%, #f77f00 100%);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #e63946;
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta {
  background: linear-gradient(90deg, #e63946 0%, #f77f00 100%);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(231, 57, 70, 0.3);
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 57, 70, 0.4);
}

.sticky-menu {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  padding: 1rem 2rem;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.sticky-button {
  position: fixed;
  right: 2rem;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  /* transition: var(--transition); */
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.sticky-button:hover {
  /* transform: translateY(-3px); */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.speed-btn {
  bottom: 7rem;
  background: var(--orange);
  color: white;
}

.whatsapp-btn {
  /* bottom: 2rem; */
  background: #25d366;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.whatsapp-btn svg {
  color: white;
}
.sticky-button1 {
  position: fixed;
  right: 2rem;
  height: 50px;
  width: 50px;
  border-radius: 50px;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  /* gap: 0.5rem; */
}
/* ===== SECTION STYLES ===== */
section {
  min-height: 100vh;
  padding: 8rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Color-coded sections */
#problem {
  background: var(--red);
  color: white;
  text-align: center;
}

#get-started {
  background: var(--orange);
  color: white;
  text-align: center;
}

#solution {
  background: var(--green);
  color: white;
}

/* ===== COMPONENTS ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.bg-gray-100 {
  background: #f8f9fa;
}
/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem auto;
  max-width: 900px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.15);
  padding: 2rem;
  border-radius: 12px;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.25);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

/* Before/After comparison */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 3rem auto;
  max-width: 1000px;
}

.before,
.after {
  padding: 2rem;
  color: #333;
}

.before {
  border-right: 1px solid #eee;
}

/* Pricing cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem auto;
  max-width: 1000px;
}

.pricing-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--red);
  color: white;
}

.btn-primary:hover {
  background: #c1121f;
  transform: translateY(-3px);
}
/* ===== MODERN FOOTER STYLES ===== */
.site-footer {
  background: #000;
  color: #fff;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-column h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  color: white;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #e63946 0%, #f77f00 100%);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #f1faee;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-links a:hover::after {
  width: 100%;
}

/* Newsletter Form */
.newsletter-form {
  margin-top: 1.5rem;
}

.newsletter-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 4px;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.newsletter-input::placeholder {
  color: #a8dadc;
}

.newsletter-btn {
  background: linear-gradient(90deg, #e63946 0%, #f77f00 100%);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(231, 57, 70, 0.3);
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #e63946;
  transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #a8dadc;
}

/* Decorative Elements */
.footer-decoration {
  position: absolute;
  opacity: 0.05;
  z-index: 0;
}

.decoration-1 {
  top: 20%;
  right: 10%;
  width: 150px;
  height: 150px;
  background: #e63946;
  border-radius: 50%;
  filter: blur(20px);
}

.decoration-2 {
  bottom: 10%;
  left: 5%;
  width: 100px;
  height: 100px;
  background: #f77f00;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 20px;
  width: 2px;
  height: 100vh;
  background: linear-gradient(
    to bottom,
    white 0%,
    white 25%,
    black 25%,
    black 50%,
    white 50%,
    white 75%,
    black 75%,
    black 100%
  );
  background-size: 100% 400%;
  background-position: 0 0;
  z-index: 9999;
  transition: background-position 0.3s ease-out;
}
.sticky-button:active {
  transform: scale(0.97);
}

/* Mobile Menu Styles */
.menu-toggle {
  display: none; /* Hidden by default, shown on mobile */
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
}

.burger-line {
  width: 100%;
  height: 3px;
  background-color: #1d3557;
  transition: all 0.3s ease;
}

.menu-toggle.active .burger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active .burger-line:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .burger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .sticky-menu {
    padding: 1rem;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .speed-btn {
    left: 40%;
    right: 40% !important;
    /* transform: translateX(-50%); */
    bottom: 5px;
    width: 200px;
    padding: 0.8rem 0.9rem !important;
    text-align: center;
    justify-content: center;
    display: flex;
  }
  .headingC {
    font-size: 1.2rem !important;
    padding-left: 5px;
    padding-right: 5px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    transform: none;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-column {
    margin-bottom: 2rem;
  }

  .footer-bottom {
    margin-top: 2rem;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s ease;
    z-index: 1000;
    padding: 2rem;
  }

  .nav-links.active {
    right: 0;
  }

  .header-cta {
    display: none;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.shadow-xl {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.rounded-lg {
  border-radius: 12px;
}

/* -------------------- */
