@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=DM+Serif+Display&display=swap');

:root {
  --background: 210 20% 98%;
  --foreground: 220 25% 14%;
  --card: 0 0% 100%;
  --card-foreground: 220 25% 14%;
  --primary: 174 72% 40%;
  --primary-foreground: 0 0% 100%;
  --secondary: 210 16% 93%;
  --secondary-foreground: 220 25% 14%;
  --muted: 210 16% 95%;
  --muted-foreground: 220 12% 48%;
  --destructive: 0 84% 60%;
  --border: 220 14% 90%;
  --radius: 0.625rem;
}

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

.min-h-screen {
  min-height: 100vh;
}

.bg-background {
  background-color: hsl(var(--background));
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: hsl(var(--card) / 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
}

.navbar-content {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}

.logo-img {
  height: 2.25rem;
  width: 2.25rem;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: hsl(var(--foreground));
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .navbar-links {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: hsl(var(--foreground));
}

.navbar-cta {
  display: none;
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s;
}

@media (min-width: 768px) {
  .navbar-cta {
    display: inline-flex;
  }
}

.navbar-cta:hover {
  background-color: hsl(var(--primary) / 0.9);
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  color: hsl(var(--foreground));
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.menu-icon {
  width: 24px;
  height: 24px;
}

.mobile-menu {
  display: none;
  background-color: hsl(var(--card));
  border-top: 1px solid hsl(var(--border));
  padding: 0 1.5rem 1.25rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.mobile-menu.active {
  display: block;
}

.mobile-link {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.2s;
}

.mobile-link:hover {
  color: hsl(var(--foreground));
}

.mobile-cta {
  display: block;
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  margin-top: 0.5rem;
}

/* Hero Section */
.hero-section {
  padding-top: 72px;
}

.hero-content {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  overflow: hidden;
  background-image: radial-gradient(at 20% 30%, hsl(var(--primary) / 0.08) 0%, transparent 50%),
                    radial-gradient(at 80% 70%, hsl(174 72% 60% / 0.06) 0%, transparent 50%);
}

.hero-decorative-blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(80px);
}

.hero-blob-1 {
  top: -8rem;
  right: -8rem;
  width: 500px;
  height: 500px;
  background-color: hsl(var(--primary) / 0.05);
}

.hero-blob-2 {
  bottom: -5rem;
  left: -10rem;
  width: 400px;
  height: 400px;
  background-color: hsl(var(--primary) / 0.08);
}

.hero-inner {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--primary) / 0.2);
  margin-bottom: 1.75rem;
}

.badge-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background-color: hsl(var(--primary));
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: hsl(var(--foreground));
  margin-bottom: 1.75rem;
}

.hero-title-highlight {
  color: hsl(var(--primary));
  position: relative;
  display: inline-block;
}

.title-underline {
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 12px;
}

.hero-description {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  max-width: 42rem;
  margin: 0 auto 1.75rem;
  line-height: 1.75;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 10px 15px -3px hsl(var(--primary) / 0.25);
}

.btn-primary:hover {
  background-color: hsl(var(--primary) / 0.9);
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px hsl(var(--primary) / 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: hsl(var(--card));
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background-color: hsl(var(--muted));
  transform: translateY(-2px);
}

.btn-icon {
  width: 16px;
  height: 16px;
}

.play-icon {
  width: 14px;
  height: 14px;
  color: hsl(var(--primary));
}

/* Stats Banner */
.stats-banner {
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(174 72% 35%) 100%);
  color: hsl(var(--primary-foreground));
  padding: 2.5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.stats-decorative {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1), transparent 60%);
}

.stats-grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  position: relative;
}

@media (min-width: 1024px) {
  .stat-border {
    border-right: 1px solid hsl(var(--primary-foreground) / 0.2);
  }
}

.stat-value {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: hsl(var(--primary-foreground) / 0.7);
}

/* Mockup */
.mockup-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

.mockup-card {
  background-color: hsl(var(--card));
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.05);
  border: 1px solid hsl(var(--border));
  overflow: hidden;
  margin-top: 3rem;
  ring: 1px;
  ring-color: hsl(var(--primary) / 0.1);
}

.mockup-img {
  width: 100%;
  display: block;
}

/* Section Styles */
.section-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.section-subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.section-subtitle.primary {
  color: hsl(var(--primary));
}

.section-subtitle.destructive {
  color: hsl(var(--destructive));
}

.section-title {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.text-primary {
  color: hsl(var(--primary));
}

.text-destructive {
  color: hsl(var(--destructive));
}

.section-description {
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
}

/* Problem Section */
.problem-section {
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.section-top-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, hsl(var(--destructive) / 0.2), transparent);
}

.problems-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .problems-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.problem-card {
  background-color: hsl(var(--card));
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  padding: 1.5rem;
  transition: box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.problem-card:hover {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.problem-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.problem-icon svg {
  width: 20px;
  height: 20px;
}

.problem-icon-orange {
  background-color: hsl(27 84% 50% / 0.1);
  color: hsl(27 84% 50%);
}

.problem-icon-red {
  background-color: hsl(0 84% 60% / 0.1);
  color: hsl(0 84% 60%);
}

.problem-icon-amber {
  background-color: hsl(45 93% 47% / 0.1);
  color: hsl(45 93% 47%);
}

.problem-icon-rose {
  background-color: hsl(350 89% 60% / 0.1);
  color: hsl(350 89% 60%);
}

.problem-title {
  font-size: 1rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.problem-desc {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
  flex: 1;
}

/* Solution Section */
.solution-section {
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, hsl(var(--primary) / 0.06) 0%, hsl(174 72% 60% / 0.02) 100%);
  position: relative;
  overflow: hidden;
}

.solution-decorative-blob {
  position: absolute;
  top: -10rem;
  right: -10rem;
  width: 500px;
  height: 500px;
  background-color: hsl(var(--primary) / 0.05);
  border-radius: 9999px;
  filter: blur(80px);
}

.solution-relative {
  position: relative;
  z-index: 10;
}

.solution-content {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.solution-title {
  margin-bottom: 1.5rem;
}

.solution-description {
  margin-bottom: 2rem;
}

.solution-list {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.check-icon {
  width: 18px;
  height: 18px;
  color: hsl(var(--primary));
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.solution-btn {
  box-shadow: 0 10px 15px -3px hsl(var(--primary) / 0.25);
}

.solution-btn:hover {
  transform: translateY(-2px);
}

/* Benefits Section */
.benefits-section {
  padding: 4rem 1.5rem;
  background-color: hsl(var(--muted) / 0.4);
  position: relative;
  overflow: hidden;
}

.benefits-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--card));
  padding: 1.5rem;
  transition: box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.benefit-card:hover {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.benefit-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.benefit-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background-color: hsl(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
  color: hsl(var(--primary));
}

.benefit-role {
  font-size: 1rem;
  font-weight: 700;
}

.benefit-list {
  list-style: none;
  flex: 1;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.benefit-check {
  color: hsl(var(--primary));
  margin-top: 0.125rem;
  flex-shrink: 0;
}

/* CTA Section */
.cta-section {
  padding: 4rem 1.5rem;
  position: relative;
}

.cta-container {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.cta-card {
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(174 72% 35%) 100%);
  border-radius: 1.5rem;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .cta-card {
    padding: 4rem;
  }
}

.cta-decorative {
  position: absolute;
  border-radius: 9999px;
}

.cta-deco-1 {
  top: 0;
  right: 0;
  width: 20rem;
  height: 20rem;
  background-color: hsl(var(--primary-foreground) / 0.05);
  transform: translate(33%, -50%);
}

.cta-deco-2 {
  bottom: 0;
  left: 0;
  width: 15rem;
  height: 15rem;
  background-color: hsl(var(--primary-foreground) / 0.05);
  transform: translate(-33%, 50%);
}

.cta-gradient-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.08), transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 10;
}

.cta-title {
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 700;
  color: hsl(var(--primary-foreground));
  margin-bottom: 1rem;
}

.cta-description {
  color: hsl(var(--primary-foreground) / 0.8);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: hsl(var(--primary-foreground) / 0.7);
  margin-bottom: 2rem;
}

.cta-feature {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background-color: hsl(var(--primary-foreground) / 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.feature-check {
  width: 12px;
  height: 12px;
}

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

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: hsl(var(--card));
  color: hsl(var(--foreground));
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.cta-btn-primary:hover {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  transform: translateY(-2px);
}

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid hsl(var(--primary-foreground) / 0.3);
  color: hsl(var(--primary-foreground));
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s;
}

.cta-btn-secondary:hover {
  background-color: hsl(var(--primary-foreground) / 0.1);
}

.phone-icon {
  width: 14px;
  height: 14px;
}

/* Footer */
.footer {
  background-color: hsl(var(--muted) / 0.6);
  border-top: 1px solid hsl(var(--border));
  padding: 2.5rem 1.5rem;
}

.footer-content {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-content {
    flex-direction: row;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.footer-logo-img {
  height: 1.75rem;
  width: 1.75rem;
}

.footer-logo-text {
  font-weight: 700;
}

.footer-text {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Utilities */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
