/* Femixal Landing Page - Clean Pink Design */

:root {
  --primary: #ec4899;
  --primary-dark: #db2777;
  --primary-light: #f9a8d4;
  --success: #10b981;
  --neutral-50: #fef3f9;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-300: #d4d4d4;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--neutral-800);
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--neutral-900);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 32px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
  line-height: 1.7;
}

/* Header */
header {
  background: #fff;
  padding: 16px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  padding: 10px 24px;
  border: 3px solid var(--primary);
  border-radius: 50px;
  white-space: nowrap;
}

.lang-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.875rem;
  margin-left: auto;
}

.lang-switcher a {
  color: var(--neutral-600);
  padding: 6px 10px;
  border-radius: 4px;
  transition: all 0.2s;
  font-weight: 600;
}

.lang-switcher a:hover {
  background: var(--neutral-100);
  color: var(--primary);
}

.lang-switcher a.active {
  background: var(--primary);
  color: #fff;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.cta-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(236, 72, 153, 0.4);
  color: #fff;
}

.cta-button-large {
  font-size: 1.125rem;
  padding: 18px 48px;
}

.cta-button-small {
  font-size: 0.9375rem;
  padding: 12px 30px;
}

/* Hero Section */
.hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--neutral-50) 0%, #fff 100%);
}

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

.hero-text h1 {
  color: var(--neutral-900);
  font-size: 2.75rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 32px;
}

.hero-benefits {
  list-style: none;
  margin-bottom: 40px;
}

.hero-benefits li {
  padding: 16px 0;
  padding-left: 48px;
  position: relative;
  font-size: 1.125rem;
  color: var(--neutral-700);
  line-height: 1.6;
}

.hero-benefits li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 16px;
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--success);
  border-radius: 50%;
}

.price-highlight {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin: 32px 0 8px 0;
  display: block;
  line-height: 1;
}

.price-highlight small {
  font-size: 1rem;
  color: var(--neutral-600);
  font-weight: 400;
  display: block;
  margin-top: 8px;
  margin-bottom: 32px;
}

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

.hero-image img {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

/* Section Spacing */
section {
  padding: 80px 0;
}

section.bg-light {
  background: var(--neutral-50);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--neutral-600);
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.benefit-card {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: all 0.3s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.benefit-card h3 {
  margin-bottom: 12px;
  color: var(--neutral-900);
}

.benefit-card p {
  color: var(--neutral-600);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Ingredients Section */
.ingredients-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.ingredient-item {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.ingredient-item h4 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1.125rem;
}

.ingredient-item p {
  color: var(--neutral-600);
  margin-bottom: 0;
}

/* How to Use */
.usage-steps {
  max-width: 700px;
  margin: 48px auto 0;
}

.usage-step {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.step-content h4 {
  margin-bottom: 8px;
}

.step-content p {
  color: var(--neutral-600);
  margin-bottom: 0;
}

/* Price Box */
.price-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 48px;
  border-radius: 16px;
  text-align: center;
  max-width: 500px;
  margin: 48px auto;
  box-shadow: 0 8px 32px rgba(236, 72, 153, 0.3);
}

.price-box h3 {
  color: #fff;
  margin-bottom: 24px;
}

.price-box .price-highlight {
  color: #fff;
}

.price-box .cta-button {
  background: #fff;
  color: var(--primary);
  margin-top: 24px;
}

.price-box .cta-button:hover {
  background: var(--neutral-100);
}

/* Comparison Table */
.comparison-table {
  max-width: 900px;
  margin: 48px auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid var(--neutral-200);
}

.comparison-table th {
  background: var(--neutral-50);
  font-weight: 700;
  color: var(--neutral-900);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
}

.comparison-table tbody tr:hover {
  background: var(--neutral-50);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table .check {
  color: var(--success);
  font-weight: 700;
  font-size: 1.5rem;
}

.comparison-table .cross {
  color: #ef4444;
  font-weight: 700;
  font-size: 1.5rem;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.review-card {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.review-stars {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.review-text {
  color: var(--neutral-700);
  font-style: italic;
  margin-bottom: 16px;
}

.review-author {
  color: var(--neutral-900);
  font-weight: 600;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  background: #fff;
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-item h4 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.125rem;
}

.faq-item p {
  color: var(--neutral-700);
  margin-bottom: 0;
}

/* Footer */
footer {
  background: var(--neutral-900);
  color: var(--neutral-300);
  padding: 64px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-section h4 {
  color: #fff;
  margin-bottom: 24px;
}

.footer-section p,
.footer-section a {
  color: var(--neutral-300);
  font-size: 0.9375rem;
}

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

.footer-lang-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-lang-links a {
  font-size: 0.875rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--neutral-800);
  color: var(--neutral-300);
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 968px) {
  .header-content {
    flex-wrap: wrap;
  }

  .lang-switcher {
    order: 3;
    flex-basis: 100%;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero {
    padding: 48px 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-image {
    order: -1;
  }

  .price-highlight {
    font-size: 2.5rem;
  }

  section {
    padding: 48px 0;
  }

  .header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .lang-switcher {
    width: 100%;
    gap: 8px;
  }

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

  .comparison-table {
    overflow-x: auto;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }

  .hero-text h1 {
    font-size: 1.75rem;
  }

  .cta-button {
    width: 100%;
    padding: 14px 32px;
  }

  .cta-button-large {
    padding: 16px 40px;
  }

  .price-highlight {
    font-size: 2rem;
  }

  .header-price {
    font-size: 1rem;
    padding: 8px 20px;
  }

  .cta-button-small {
    font-size: 0.875rem;
    padding: 10px 24px;
  }

  .lang-switcher {
    font-size: 0.75rem;
    gap: 6px;
  }

  .lang-switcher a {
    padding: 4px 8px;
  }
}
