@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800;900&family=Raleway:wght@400;600&display=swap');

:root {
  --primary-bg: #FEFEFA;
  --primary-orange: #F57F17;
  --secondary-orange: #EF6C00;
  --accent-gold: #FFB300;
  --light-gold: #FFE082;
  --dark-text: #1A1A1A;
  --light-text: #4A4A4A;
  --border-light: #F0F0F0;
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  background-color: var(--primary-bg);
  color: var(--dark-text);
  line-height: 1.75;
  font-size: 18px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--dark-text);
}

h1 {
  font-size: 54px;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.3;
}

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

p {
  margin-bottom: 16px;
  color: var(--light-text);
  font-size: 18px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(254, 254, 250, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 16px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: background-color 0.3s ease;
}

header.scrolled {
  background: linear-gradient(135deg, rgba(254, 254, 250, 0.98), rgba(255, 227, 130, 0.05));
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 40px;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 24px;
  background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark-text);
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-orange);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-orange);
}

.nav-links a:hover::after {
  width: 100%;
}

main {
  margin-top: 80px;
}

section {
  max-width: 1640px;
  margin: 0 auto;
  padding: 110px 40px;
}

.hero {
  padding-top: 140px;
  padding-bottom: 140px;
  background: linear-gradient(135deg, var(--primary-bg) 0%, rgba(255, 227, 130, 0.1) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 127, 23, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.hero img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  margin-top: 40px;
  width: 100%;
  max-height: 450px;
  object-fit: cover;
}

.disclaimer-banner {
  background: rgba(245, 127, 23, 0.08);
  border-left: 4px solid var(--primary-orange);
  padding: 16px 24px;
  border-radius: 8px;
  margin-bottom: 32px;
  font-size: 16px;
  color: var(--light-text);
}

section > h2 {
  color: var(--dark-text);
  position: relative;
  padding-bottom: 16px;
}

section > h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-orange), var(--accent-gold));
  border-radius: 2px;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.two-column.reverse {
  direction: rtl;
}

.two-column.reverse > * {
  direction: ltr;
}

.two-column img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.two-column img:hover {
  transform: translateY(-8px);
}

.content-block {
  padding-right: 20px;
}

.content-block.right {
  padding-right: 0;
  padding-left: 20px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.card {
  background: var(--primary-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(245, 127, 23, 0.15);
  border-color: var(--primary-orange);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 16px;
}

.card h3 {
  margin-bottom: 12px;
}

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

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.comparison-table thead {
  background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
  color: white;
}

.comparison-table th, .comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
  font-size: 16px;
}

.comparison-table thead th {
  border-bottom: none;
  font-weight: 600;
}

.comparison-table tbody tr:hover {
  background-color: rgba(255, 227, 130, 0.2);
}

.accordion {
  margin-top: 40px;
}

.accordion-item {
  margin-bottom: 12px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
}

.accordion-header {
  background: var(--primary-bg);
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  color: var(--dark-text);
}

.accordion-header:hover {
  background: rgba(245, 127, 23, 0.05);
  color: var(--primary-orange);
}

.accordion-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform 0.45s ease;
  color: var(--primary-orange);
}

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

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
  background: rgba(245, 127, 23, 0.03);
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
}

.accordion-body {
  padding: 24px 20px;
  color: var(--light-text);
  font-size: 16px;
  line-height: 1.75;
}

.cta-button {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 127, 23, 0.3);
}

.cta-button.secondary {
  background: transparent;
  color: var(--primary-orange);
  border: 2px solid var(--primary-orange);
}

.cta-button.secondary:hover {
  background: rgba(245, 127, 23, 0.05);
}

.form-container {
  max-width: 600px;
  margin-top: 40px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark-text);
}

input, textarea {
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s ease;
  background: white;
  color: var(--dark-text);
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(245, 127, 23, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-disclaimer {
  background: rgba(245, 127, 23, 0.05);
  border-left: 4px solid var(--primary-orange);
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 14px;
  color: var(--light-text);
  margin-bottom: 16px;
}

footer {
  background: linear-gradient(135deg, var(--dark-text) 0%, #2A2A2A 100%);
  color: white;
  padding: 60px 40px 40px;
  margin-top: 80px;
}

footer-content {
  max-width: 1640px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

footer h3 {
  color: white;
  font-size: 18px;
  margin-bottom: 20px;
}

footer p {
  color: #CCCCCC;
  font-size: 16px;
  margin-bottom: 8px;
}

footer a {
  color: var(--light-gold);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--accent-gold);
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
  text-align: center;
  color: #CCCCCC;
  font-size: 14px;
}

.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: auto;
  animation: fadeIn 0.3s ease;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background-color: var(--primary-bg);
  margin: auto;
  padding: 40px;
  max-width: 700px;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 16px;
}

.modal-header h2 {
  margin: 0;
  font-size: 32px;
}

.close-btn {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--light-text);
  transition: color 0.3s ease;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover {
  color: var(--primary-orange);
}

.modal-body {
  color: var(--light-text);
  line-height: 1.8;
}

.modal-body h3 {
  color: var(--dark-text);
  margin-top: 24px;
  margin-bottom: 12px;
}

.modal-body ul, .modal-body ol {
  margin-left: 20px;
  margin-bottom: 16px;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--dark-text), #2A2A2A);
  padding: 24px 40px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  animation: slideUp 0.3s ease;
}

.cookie-banner.active {
  display: flex;
}

@keyframes slideUp {
  from {
    transform: translateY(100px);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-text {
  color: white;
  font-size: 16px;
  flex: 1;
  line-height: 1.5;
}

.cookie-text a {
  color: var(--light-gold);
  text-decoration: none;
  cursor: pointer;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  white-space: nowrap;
}

.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 15px;
}

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

.cookie-btn.accept:hover {
  background: var(--secondary-orange);
  transform: translateY(-2px);
}

.cookie-btn.reject {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.cookie-btn.reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.success-message {
  background: rgba(76, 175, 80, 0.1);
  border-left: 4px solid #4CAF50;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
  display: none;
  color: var(--dark-text);
}

.success-message.show {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section.full-width {
  padding: 110px 0;
}

.gradient-bg {
  background: linear-gradient(135deg, var(--primary-bg) 0%, rgba(255, 227, 130, 0.15) 100%);
}

.testimonial {
  background: white;
  border: 1px solid var(--border-light);
  padding: 28px;
  border-radius: var(--radius);
  margin: 20px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.testimonial-author {
  color: var(--primary-orange);
  font-weight: 600;
  margin-top: 16px;
}

.myth-item {
  background: white;
  border: 1px solid var(--border-light);
  padding: 28px;
  border-radius: var(--radius);
  margin: 20px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.myth-title {
  color: var(--primary-orange);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
}

.myth-debunk {
  color: var(--light-text);
  font-size: 16px;
  line-height: 1.75;
}

.highlights {
  display: flex;
  gap: 20px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.highlight-box {
  flex: 1;
  min-width: 200px;
  background: linear-gradient(135deg, rgba(245, 127, 23, 0.05), rgba(255, 227, 130, 0.1));
  border-left: 4px solid var(--primary-orange);
  padding: 20px;
  border-radius: 8px;
}

.highlight-box strong {
  color: var(--primary-orange);
  display: block;
  margin-bottom: 8px;
}

.thank-you-modal {
  text-align: center;
}

.thank-you-modal h2 {
  color: #4CAF50;
  margin-bottom: 16px;
}

.thank-you-modal p {
  color: var(--light-text);
  margin-bottom: 24px;
}

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

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  nav {
    padding: 0 20px;
    flex-direction: column;
    gap: 16px;
  }

  .nav-links {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    text-align: center;
  }

  section {
    padding: 60px 20px;
  }

  .two-column, .two-column.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .content-block, .content-block.right {
    padding: 0;
  }

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

  footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 16px;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-btn {
    flex: 1;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  main {
    margin-top: 100px;
  }
}
