:root {
  --primary: #f53d86; /* Pinkish primary like reference */
  --primary-hover: #d92d6e;
  --secondary: #8c52ff; /* Purple secondary */
  --bg-light: #faf9fb;
  --text-main: #2d2d2d;
  --text-light: #5e5e5e;
  --white: #ffffff;
  --success: #10b981;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.1);
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 800;
  color: var(--text-main);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
  text-align: center;
}

p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(245, 61, 134, 0.4);
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 61, 134, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(245, 61, 134, 0.3);
}

.btn-large {
  width: 100%;
  max-width: 400px;
  padding: 20px 32px;
  font-size: 1.25rem;
}

/* Navigation */
nav {
  padding: 20px 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-main);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--primary);
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  display: flex;
  align-items: center;
  min-height: 90vh;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.highlight {
  color: var(--primary);
}

.hero-image-wrapper {
  position: relative;
  z-index: 1;
}

.hero-image {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 8px solid var(--white);
}

.floating-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 15px;
  animation: float 4s ease-in-out infinite;
}

.badge-icon {
  width: 50px;
  height: 50px;
  background: #fff0f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

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

/* Features/Problem Section */
.section {
  padding: 100px 0;
}

.section-light {
  background: var(--white);
}

.text-center {
  text-align: center;
}

.max-w-2xl {
  max-width: 672px;
  margin-left: auto;
  margin-right: auto;
}

.pain-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid rgba(0,0,0,0.03);
}

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

.card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

/* Products Section */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.product-image {
  background: #fdf5f8;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

.product-image img {
  max-width: 200px;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}

.product-content {
  padding: 40px 30px;
  flex-grow: 1;
}

.product-tag {
  color: var(--secondary);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.product-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  margin-bottom: 30px;
}

.feature-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  color: var(--text-light);
  font-size: 1rem;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary);
  font-weight: bold;
  font-size: 1.2rem;
  background: #f0e6ff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Reviews Section */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.review-card {
  background: var(--bg-light);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.05);
}

.stars {
  color: #ffb400;
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.review-text {
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 15px;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Pricing/Checkout */
.pricing-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 50px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--shadow-hover);
  border: 3px solid var(--primary);
  position: relative;
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
}

.price {
  font-size: 4rem;
  font-weight: 900;
  color: var(--text-main);
  margin: 20px 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.price span {
  font-size: 2rem;
  margin-top: 10px;
}

.old-price {
  text-decoration: line-through;
  color: #a0a0a0;
  font-size: 1.5rem;
}

/* Footer */
footer {
  background: var(--white);
  padding: 60px 0 40px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
}

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

.copyright {
  color: #a0a0a0;
  font-size: 0.875rem;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .floating-badge {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) !important;
    width: 90%;
    justify-content: center;
  }
  
  @keyframes float {
    0% { transform: translate(-50%, 0px); }
    50% { transform: translate(-50%, -10px); }
    100% { transform: translate(-50%, 0px); }
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
}
