:root {
  --primary: #27ae60;
  --primary-light: #2ecc71;
  --accent: #f39c12;
  --text: #2c3e50;
  --text-light: #7f8c8d;
  --bg: #ffffff;
  --bg-light: #f8f9fa;
  --border: #ecf0f1;
  --shadow: rgba(0,0,0,0.1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

img { max-width: 100%; height: auto; display: block; border-radius: 8px; }
a { color: var(--primary); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--primary-light); }

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

/* Minimal Header */
.minimal-header { 
  background: var(--bg); 
  border-bottom: 1px solid var(--border); 
  position: sticky; 
  top: 0; 
  z-index: 100; 
}
.minimal-header .container { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  height: 70px; 
}
.logo { 
  font-weight: 700; 
  font-size: 1.3rem; 
  color: var(--text); 
}
.cta-button {
  background: var(--primary);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
}
.cta-button:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
}
.hero-content h1 {
  font-size: 3rem;
  margin: 0 0 1rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero-subtitle {
  font-size: 1.2rem;
  margin: 0 0 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.hero-cta {
  background: var(--accent);
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
  transition: background 0.3s, transform 0.2s;
}
.hero-cta:hover {
  background: #e67e22;
  transform: translateY(-2px);
}

/* Story Sections */
.story-section {
  padding: 4rem 0;
}
.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.story-section.reverse .story-content {
  grid-template-columns: 1fr 1fr;
}
.story-section.reverse .story-text {
  order: 2;
}
.story-section.reverse .story-image {
  order: 1;
}
.story-text h2 {
  font-size: 2rem;
  margin: 0 0 1rem;
  color: var(--primary);
}
.story-text p {
  margin: 0 0 1rem;
  color: var(--text-light);
}

/* Page Content */
.page-content {
  padding: 2rem 0;
}
.page-header {
  text-align: center;
  margin: 2rem 0 3rem;
}
.page-header h1 {
  font-size: 2.5rem;
  margin: 0 0 1rem;
  color: var(--text);
}
.page-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}
.product-card {
  background: var(--bg-light);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px var(--shadow);
}
.product-info {
  padding: 1.5rem;
}
.product-info h3 {
  margin: 0 0 0.5rem;
  color: var(--primary);
}

/* Process Steps */
.process-hero {
  margin: 2rem 0 3rem;
  text-align: center;
}
.process-steps {
  margin: 3rem 0;
}
.step {
  display: flex;
  gap: 2rem;
  margin: 3rem 0;
  align-items: flex-start;
}
.step-number {
  background: var(--primary);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.step-content h3 {
  margin: 0 0 1rem;
  color: var(--primary);
}

/* About Content */
.about-hero {
  margin: 2rem 0 3rem;
  text-align: center;
}
.about-content {
  max-width: 800px;
  margin: 0 auto;
}
.about-section {
  margin: 3rem 0;
}
.about-section h2 {
  color: var(--primary);
  margin: 0 0 1rem;
}

/* Contact Section */
.contact-section {
  margin: 3rem 0;
}
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 2rem 0 3rem;
}
.contact-item h3 {
  margin: 0 0 0.5rem;
  color: var(--primary);
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  margin: 1rem 0;
  font-weight: 600;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  margin-top: 0.5rem;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.contact-form .checkbox {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}
.contact-form .checkbox input {
  margin: 0;
}
#form-result {
  margin-top: 1rem;
  font-weight: 600;
}

/* Policies */
.policies-section {
  margin: 4rem 0;
}
.policy-block {
  margin: 2rem 0;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}
.policy-block h3 {
  margin: 0 0 1rem;
  color: var(--primary);
}

/* Footer Hub */
.footer-hub {
  background: var(--text);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-col h3 {
  margin: 0 0 1rem;
  color: var(--primary-light);
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li {
  margin: 0.5rem 0;
}
.footer-col a {
  color: #bdc3c7;
  transition: color 0.3s;
}
.footer-col a:hover {
  color: white;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #34495e;
}
.social-links {
  display: flex;
  gap: 1rem;
}
.social-links a {
  font-size: 1.2rem;
  transition: transform 0.2s;
}
.social-links a:hover {
  transform: scale(1.2);
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--text);
  color: white;
  padding: 1rem;
  border-radius: 8px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 1000;
  box-shadow: 0 4px 15px var(--shadow);
}
#cookie-banner a {
  color: var(--primary-light);
}
#cookie-accept {
  background: var(--primary);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}
#cookie-accept:hover {
  background: var(--primary-light);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .story-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .story-section.reverse .story-text,
  .story-section.reverse .story-image {
    order: unset;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .step {
    flex-direction: column;
    text-align: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  #cookie-banner {
    flex-direction: column;
    text-align: center;
  }
}
