:root {
  --primary-color: #5E35B1; /* Глубокий фиолетовый */
  --secondary-color: #311B92;
  --accent-color: #FF4081; /* Розовый акцент */
  --light-color: #F3E5F5;
  --dark-color: #1A0A2E;
  --background-color: #FFFFFF;
  --text-color: #2D2D2D;
  --border-color: rgba(94, 53, 177, 0.1);
  --divider-color: rgba(49, 27, 146, 0.05);
  --shadow-color: rgba(94, 53, 177, 0.15);
  --highlight-color: #7E57C2;
  --main-font: 'Ubuntu', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--main-font);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* HEADER & NAV (Exact Logic) */
header {
  background: var(--primary-color);
  padding: 1rem 0;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.line { width: 28px; height: 3px; background: white; border-radius: 4px; }

.navigation ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.navigation a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
}

@media (max-width: 767px) {
  .hamburger { display: flex; }
  .navigation {
    display: none;
    width: 100%;
    background: var(--secondary-color);
    position: absolute;
    top: 100%;
    left: 0;
    padding: 1rem;
    text-align: center;
  }
  #menu-toggle:checked ~ .navigation { display: block; }
  .navigation ul { flex-direction: column; gap: 1rem; }
}

/* HERO (85vh) */
.hero {
  height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  color: white;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(26, 10, 46, 0.8) 0%, rgba(94, 53, 177, 0.4) 100%);
}

.hero .container { position: relative; z-index: 2; }

/* IMAGE-TEXT SECTIONS */
.image-text-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem 0;
}

.image-text-section.reverse { direction: rtl; }
.image-text-section.reverse > div { direction: ltr; }
.image-text-section img { 
  width: 100%; 
  border-radius: 50px 5px; 
  filter: saturate(1.1);
}

@media (max-width: 767px) {
  .image-text-section { grid-template-columns: 1fr; }
  .image-text-section.reverse { direction: ltr; }
}

/* RANDOM CONTENT BLOCK (Myth vs Fact) */
.myth-fact-block {
  padding: 5rem 0;
  background: var(--dark-color);
  color: white;
}

.myth-card { background: rgba(255,255,255,0.05); padding: 2rem; border-radius: 20px; border-left: 5px solid var(--accent-color); }

/* FEATURE CARDS (3 items) */
.feature-card {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 3rem;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 10px 25px var(--shadow-color);
}

.feature-icon { font-size: 4rem; margin-bottom: 1rem; display: block; }

/* CONTACT (80% Desktop) */
#contact .contact-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

@media (min-width: 768px) { #contact .contact-inner { width: 80%; margin: 0 auto; } }

.contact-form {
  flex: 1;
  min-width: 300px;
  background: var(--light-color);
  padding: 2rem;
  border-radius: 30px;
}

.contact-form input, .contact-form textarea {
  width: 100%; padding: 0.8rem; margin-bottom: 1rem; border-radius: 10px; border: none;
}

/* FAQ (Clean list) */
.faq-item { margin-bottom: 2rem; padding: 1.5rem; background: #fff; border-radius: 15px; box-shadow: 0 2px 10px var(--shadow-color); }

/* FOOTER */
footer { background: var(--dark-color); color: white; padding: 3rem 0; }
footer img[alt="logo"] { filter: brightness(0) invert(1); }