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

:root {
  --primary: #f3e8ff;
  --accent1: #7e57c2;
  --accent2: #4527a0;
  --white: #ffffff;
  --light: #f3e5f5;
  --text: #2c1b47;
  --gray-light: #e0d4f0;
  --gray-medium: #c9b8d4;
  --overlay-light: rgba(243, 232, 255, 0.125);
  --shadow-light: rgba(0, 0, 0, 0.08);
  --shadow-hover: rgba(0, 0, 0, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
  background-color: var(--white);
  color: var(--text);
  line-height: 1.6;
  font-size: 18px;
}

h1 {
  font-size: 56px;
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.9px;
  color: var(--text);
  margin-bottom: 32px;
  text-rendering: optimizeLegibility;
}

h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.7px;
  color: var(--text);
  margin-bottom: 24px;
  text-rendering: optimizeLegibility;
}

h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 16px;
}

p {
  line-height: 1.82;
  max-width: 730px;
  margin-bottom: 16px;
  color: var(--text);
}

a {
  color: var(--accent1);
  text-decoration: none;
  transition: color 0.32s ease-in-out;
}

a:hover {
  color: var(--accent2);
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.32s ease-in-out;
  background-color: var(--accent1);
  color: var(--white);
  text-decoration: none;
}

.btn:hover {
  background-color: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px var(--shadow-hover);
}

.btn-secondary {
  background-color: transparent;
  color: var(--accent1);
  border: 2px solid var(--accent1);
}

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

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 4px 12px transparent;
  transition: all 0.32s ease-in-out;
  padding: 16px 0;
}

header.scrolled {
  background-color: rgba(243, 232, 255, 0.95);
  box-shadow: 0 4px 12px var(--shadow-light);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 80px;
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 28px;
  }
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent2);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  width: 32px;
  height: 32px;
  border-radius: 4px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

@media (max-width: 768px) {
  nav ul {
    gap: 16px;
  }
}

nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 16px;
  transition: color 0.32s ease-in-out;
}

nav a:hover {
  color: var(--accent1);
}

.hero {
  position: relative;
  width: 100%;
  height: 600px;
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('images/hero.jpg') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(243, 232, 255, 0.15));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-size: 64px;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

section {
  padding: 140px 80px;
  max-width: 1820px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  section {
    padding: 80px 28px;
  }
}

.section-container {
  max-width: 1480px;
  margin: 0 auto;
}

.text-block {
  line-height: 1.82;
}

.text-block p {
  margin-bottom: 24px;
}

.layout-image-left {
  display: grid;
  grid-template-columns: 60% 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .layout-image-left {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.layout-image-right {
  display: grid;
  grid-template-columns: 1fr 40%;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .layout-image-right {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.image-box {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 24px var(--shadow-light);
  transition: all 0.32s ease-in-out;
}

.image-box img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.32s ease-in-out;
}

.image-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px var(--shadow-hover);
}

.image-box:hover img {
  transform: scale(1.03);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  background-color: var(--white);
  box-shadow: 0 2px 8px var(--shadow-light);
  border-radius: 8px;
  overflow: hidden;
}

th {
  background-color: var(--accent1);
  color: var(--text);
  padding: 16px;
  text-align: left;
  font-weight: 600;
}

td {
  padding: 16px;
  border-bottom: 1px solid var(--gray-light);
}

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

tr:hover {
  background-color: var(--primary);
}

.list-items {
  list-style: none;
  padding: 0;
}

.list-items li {
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  gap: 16px;
}

.list-items li::before {
  content: '→';
  color: var(--accent1);
  font-weight: bold;
  min-width: 20px;
  flex-shrink: 0;
}

.list-items li:last-child {
  border-bottom: none;
}

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

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.comparison-item {
  background-color: var(--light);
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid var(--accent1);
}

.comparison-item h3 {
  color: var(--accent2);
  margin-bottom: 12px;
}

.faq {
  margin: 32px 0;
}

.faq-item {
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  background-color: var(--white);
}

.faq-question {
  padding: 20px 24px;
  background-color: var(--primary);
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.32s ease-in-out;
  user-select: none;
}

.faq-question:hover {
  background-color: var(--gray-light);
}

.faq-toggle {
  font-size: 20px;
  transition: transform 0.32s ease-in-out;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease-in-out;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 24px;
}

.faq-answer p {
  margin: 0;
  line-height: 1.6;
}

.disclaimer {
  background-color: var(--light);
  border-left: 4px solid var(--accent1);
  padding: 32px;
  border-radius: 8px;
  margin: 60px 0;
}

.disclaimer h2 {
  color: var(--accent2);
  font-size: 24px;
  margin-bottom: 16px;
}

.disclaimer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.form-section {
  background-color: var(--light);
  padding: 60px;
  border-radius: 12px;
  max-width: 600px;
}

@media (max-width: 768px) {
  .form-section {
    padding: 40px;
  }
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 16px;
}

input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 2px solid var(--gray-light);
  border-radius: 4px;
  background-color: var(--white);
  color: var(--text);
  transition: border-color 0.32s ease-in-out;
  font-family: inherit;
}

input[type="text"]:focus,
input[type="email"]:focus {
  outline: none;
  border-color: var(--accent1);
  box-shadow: 0 0 0 3px rgba(126, 87, 194, 0.1);
}

.form-disclaimer {
  background-color: var(--white);
  padding: 16px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
  border-left: 3px solid var(--accent1);
}

footer {
  background-color: var(--text);
  color: var(--light);
  padding: 60px 80px;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  footer {
    padding: 40px 28px;
  }
}

.footer-content {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer-section h3 {
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 12px;
}

.footer-section a {
  color: var(--light);
  transition: color 0.32s ease-in-out;
  cursor: pointer;
}

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

.footer-divider {
  height: 1px;
  background-color: rgba(243, 232, 255, 0.2);
  margin: 40px 0;
}

.footer-bottom {
  max-width: 1480px;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  color: var(--gray-medium);
  line-height: 1.8;
}

.info-message {
  text-align: center;
  font-weight: 600;
  color: var(--accent1);
  margin: 20px 0 0 0;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--white);
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  width: 90%;
}

@media (max-width: 768px) {
  .modal-content {
    padding: 28px;
    width: 95%;
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: var(--text);
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.32s ease-in-out;
}

.modal-close:hover {
  background-color: var(--primary);
  color: var(--accent1);
}

.modal h2 {
  margin-top: 0;
  color: var(--accent2);
}

.modal h3 {
  margin-top: 24px;
  color: var(--accent1);
}

.modal p {
  font-size: 16px;
  line-height: 1.6;
  max-width: none;
}

.modal ul {
  list-style-position: inside;
  margin: 16px 0;
}

.modal li {
  margin-bottom: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text);
  color: var(--light);
  padding: 20px 28px;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.cookie-text {
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cookie-buttons {
    width: 100%;
    gap: 8px;
  }
}

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.32s ease-in-out;
}

.cookie-btn-accept {
  background-color: var(--accent1);
  color: var(--white);
}

.cookie-btn-accept:hover {
  background-color: var(--primary);
  color: var(--accent1);
}

.cookie-btn-reject {
  background-color: transparent;
  color: var(--light);
  border: 2px solid var(--light);
}

.cookie-btn-reject:hover {
  border-color: var(--accent1);
  color: var(--accent1);
}

.cookie-btn-more {
  background-color: transparent;
  color: var(--light);
  text-decoration: underline;
  padding: 10px 0;
}

.cookie-btn-more:hover {
  color: var(--accent1);
}

.success-message {
  background-color: var(--light);
  color: var(--accent2);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--accent1);
  margin-top: 20px;
  text-align: center;
  font-weight: 600;
}

.summary-links {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid var(--gray-light);
}

.summary-links .btn {
  margin-right: 12px;
  margin-bottom: 12px;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px var(--shadow-light);
  transition: all 0.32s ease-in-out;
  height: 200px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease-in-out;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.plant-card {
  background-color: var(--light);
  padding: 28px;
  border-radius: 8px;
  border: 1px solid var(--gray-light);
  margin-bottom: 20px;
}

.plant-card h3 {
  color: var(--accent2);
  margin-top: 0;
}

.plant-card p {
  margin-bottom: 0;
  font-size: 16px;
}

.info-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--light) 100%);
  border: 1px solid var(--gray-light);
  padding: 20px 28px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  color: var(--accent2);
  margin: 40px 0;
}

.closing-section {
  text-align: center;
  max-width: 730px;
  margin: 0 auto;
}

.closing-section h2 {
  margin-bottom: 24px;
}

.closing-section p {
  margin: 0 auto 20px auto;
  font-size: 18px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
