:root {
  --primary: #4a9d6e;
  --primary-dark: #3a8159;
  --primary-light: #e8f5ed;
  --accent: #d4a84b;
  --accent-light: #fef6e6;
  --text-dark: #1a2e1e;
  --text-muted: #5a6b5e;
  --bg-light: #fafbf9;
  --bg-white: #ffffff;
  --border-color: #e5ebe6;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

.display-4, .display-5, .display-6 {
  font-family: 'Playfair Display', Georgia, serif;
}

/* ===== Navbar ===== */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary) !important;
}

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

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary) !important;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-secondary {
  border-color: var(--border-color);
  color: var(--text-dark);
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.btn-outline-secondary:hover {
  background-color: var(--bg-light);
  border-color: var(--primary);
  color: var(--primary);
}

/* ===== Hero Section ===== */
.hero-section {
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--primary-light) 100%);
  padding-top: 80px;
  overflow: hidden;
}



.hero-content h1 {
  font-size: 3rem;
  letter-spacing: -0.02em;
}

.hero-content .text-primary {
  color: var(--primary) !important;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  background: var(--bg-white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
  top: 20%;
  left: -20px;
  animation-delay: 0s;
}

.floating-card.card-2 {
  bottom: 20%;
  right: -20px;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.stats-row {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ===== Problem Section ===== */
.problem-section {
  background-color: var(--bg-white);
}

.problem-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.problem-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

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

.features-section img {
  transition: transform 0.3s ease;
}

.features-section img:hover {
  transform: scale(1.02);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--text-muted);
}

.feature-list li i {
  font-size: 1.25rem;
}

/* ===== How It Works Section ===== */
.how-it-works-section {
  background-color: var(--bg-white);
}

.step-card {
  background: var(--bg-light);
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.step-number {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.step-icon {
  width: 72px;
  height: 72px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--primary);
}

/* ===== Audience Section ===== */
.audience-section {
  background-color: var(--bg-light);
}

.audience-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.audience-image {
  height: 200px;
  overflow: hidden;
}

.audience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.audience-card:hover .audience-image img {
  transform: scale(1.05);
}

.audience-content {
  padding: 1.5rem;
}

/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-form {
  max-width: 480px;
}

.cta-form .form-control {
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.cta-form .form-control:focus {
  box-shadow: none;
}

.cta-form .btn {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1rem 1.5rem;
  font-weight: 600;
  white-space: nowrap;
}

.cta-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.cta-feature i {
  font-size: 1.5rem;
}

/* ===== Footer ===== */
.footer {
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-color);
}

.footer-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary);
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

/* ===== Badges ===== */
.badge {
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.bg-primary-subtle {
  background-color: var(--primary-light) !important;
}

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

/* ===== Responsive Styles ===== */
@media (max-width: 991.98px) {
  .hero-content h1 {
    font-size: 2.25rem;
  }
  
  .floating-card {
    display: none;
  }
  
  .navbar-collapse {
    background: white;
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-top: 1rem;
    box-shadow: var(--shadow-md);
  }
  
  .navbar-nav {
    margin-bottom: 1rem;
  }
}

@media (max-width: 767.98px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .stats-row .col-4 {
    text-align: center;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.7rem;
  }
  
  .display-5, .display-6 {
    font-size: 1.75rem;
  }
  
  .cta-form .input-group {
    flex-direction: column;
  }
  
  .cta-form .form-control {
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
  }
  
  .cta-form .btn {
    border-radius: var(--radius-md);
    width: 100%;
  }
}

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

.hero-content,
.problem-card,
.step-card,
.audience-card {
  animation: fadeInUp 0.6s ease-out;
}

/* ===== Utility Classes ===== */
.rounded-4 {
  border-radius: var(--radius-lg) !important;
}

.shadow-lg {
  box-shadow: var(--shadow-lg) !important;
}

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

/* ===== Selection ===== */
::selection {
  background-color: var(--primary-light);
  color: var(--primary-dark);
}
.phone-frame {
  max-width: 360px;
  aspect-ratio: 9/19.5;
  border: 14px solid #222;
  border-radius: 35px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  pointer-events: auto;
}

.phone-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.phone-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: auto; 
  position: relative;
  z-index: 10;
}

/* Remove any overlays that might block clicks */
.phone-frame::before {
  display: none;
}