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

:root {
  --primary-color: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #3b82f6;
  --success-color: #10b981;
  --text-dark: #1f2937;
  --text-gray: #6b7280;
  --text-light: #9ca3af;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-2xl: 64px;
  --spacing-3xl: 96px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-dark);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: 2.25rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 1.875rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.5rem;
}

p {
  line-height: 1.6;
  margin-bottom: var(--spacing-sm);
  color: var(--text-gray);
}

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

/* Container and Layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.section {
  padding: var(--spacing-2xl) 0;
}

.section-alt {
  background-color: var(--bg-light);
}

/* Header and Navigation */
.header {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  padding: var(--spacing-sm) 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.lang-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
  font-size: 0.875rem;
}

.lang-switcher a {
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.lang-switcher a:hover {
  background-color: var(--bg-light);
}

.lang-switcher .active {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

/* Hero Section */
.hero {
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.hero-text {
  order: 1;
}

.hero-image {
  order: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 450px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.08));
  animation: float 3s ease-in-out infinite;
  border: none;
  outline: none;
  box-shadow: none;
}

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

.hero h1 {
  margin-bottom: var(--spacing-md);
  color: var(--text-dark);
}

.hero-benefits {
  list-style: none;
  margin: var(--spacing-md) 0;
}

.hero-benefits li {
  padding: var(--spacing-xs) 0;
  padding-left: var(--spacing-lg);
  position: relative;
  color: var(--text-gray);
  font-size: 1.125rem;
}

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

.hero-price {
  margin: var(--spacing-md) 0;
}

.price-tag {
  display: inline-block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--success-color);
  background: linear-gradient(135deg, var(--success-color), #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-right: var(--spacing-sm);
}

.price-label {
  color: var(--text-gray);
  font-size: 1rem;
}

.hero-cta {
  margin-top: var(--spacing-md);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 18px 36px;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: var(--bg-white);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
  color: var(--bg-white);
}

.btn-large {
  padding: 22px 48px;
  font-size: 1.3rem;
}

.btn-block {
  display: block;
  width: 100%;
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.benefit-card {
  background: var(--bg-white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

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

.benefit-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: var(--spacing-sm);
}

.benefit-card h3 {
  margin-bottom: var(--spacing-xs);
}

/* Ingredients Section */
.ingredients-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.ingredient-item {
  background: var(--bg-white);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.ingredient-item h3 {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xs);
}

/* How to Use Section */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.step {
  background: var(--bg-white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}

.step-number {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.step h3 {
  margin-bottom: var(--spacing-sm);
  padding-right: 60px;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--spacing-lg);
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
  padding: var(--spacing-sm);
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: var(--bg-white);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

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

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

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

/* FAQ Section */
.faq {
  max-width: 800px;
  margin: var(--spacing-lg) auto 0;
}

.faq-item {
  background: var(--bg-white);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-sm);
  box-shadow: var(--shadow-sm);
}

.faq-item h3 {
  color: var(--primary-color);
  font-size: 1.125rem;
  margin-bottom: var(--spacing-xs);
}

/* CTA Box */
.cta-box {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: var(--bg-white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-xl);
  margin-top: var(--spacing-lg);
}

.cta-box h2 {
  color: var(--bg-white);
  margin-bottom: var(--spacing-sm);
}

.cta-box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: var(--spacing-md);
}

.cta-box .btn {
  background: var(--bg-white);
  color: var(--primary-color);
}

.cta-box .btn:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
  color: var(--primary-dark);
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: var(--text-light);
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
  color: var(--bg-white);
  font-size: 1.125rem;
  margin-bottom: var(--spacing-sm);
}

.footer-section p,
.footer-section a {
  color: var(--text-light);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-section a:hover {
  color: var(--bg-white);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
}

/* Responsive Design */
@media (min-width: 640px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  h2 {
    font-size: 2.25rem;
  }

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

  .hero-text {
    order: 1;
  }

  .hero-image {
    order: 2;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ingredients-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--spacing-lg);
  }

  .section {
    padding: var(--spacing-2xl) 0;
  }

  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Utility Classes */
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

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

body.locale-bg { --primary-color: #dc2626; --primary-dark: #b91c1c; --primary-light: #ef4444; }
body.locale-hu { --primary-color: #059669; --primary-dark: #047857; --primary-light: #10b981; }
body.locale-gr { --primary-color: #0284c7; --primary-dark: #0369a1; --primary-light: #0ea5e9; }
body.locale-es { --primary-color: #d97706; --primary-dark: #b45309; --primary-light: #f59e0b; }
body.locale-it { --primary-color: #16a34a; --primary-dark: #15803d; --primary-light: #22c55e; }
body.locale-cy { --primary-color: #7c3aed; --primary-dark: #6d28d9; --primary-light: #8b5cf6; }
body.locale-pl { --primary-color: #be123c; --primary-dark: #9f1239; --primary-light: #e11d48; }
body.locale-pt { --primary-color: #0369a1; --primary-dark: #075985; --primary-light: #0284c7; }
body.locale-ro { --primary-color: #ca8a04; --primary-dark: #a16207; --primary-light: #eab308; }
body.locale-sk { --primary-color: #0d9488; --primary-dark: #0f766e; --primary-light: #14b8a6; }
body.locale-sl { --primary-color: #15803d; --primary-dark: #166534; --primary-light: #16a34a; }
body.locale-hr { --primary-color: #2563eb; --primary-dark: #1e40af; --primary-light: #3b82f6; }
body.locale-cz { --primary-color: #4f46e5; --primary-dark: #4338ca; --primary-light: #6366f1; }
