@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;1,9..40,400&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --bg-color: #F8F6F0;
  --surface: #FFFFFF;
  --surface-alt: #EFEBE0;
  --text-main: #2A2520;
  --text-muted: #5E554C;
  --accent: #C97A34;
  --accent-hover: #B06626;
  --border-color: #E2DDD0;
  --wood-dark: #3D3329;
  
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'DM Sans', sans-serif;
  
  --container-width: 1200px;
  --transition-smooth: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-color);
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--wood-dark);
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-smooth);
}

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(248, 246, 240, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 221, 208, 0.5);
  transition: transform var(--transition-smooth), background-color var(--transition-smooth);
}

.site-header.scrolled {
  background-color: rgba(248, 246, 240, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--wood-dark);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}

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

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--wood-dark);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background-color: var(--accent);
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-smooth), transform var(--transition-smooth);
  font-family: var(--font-sans);
}

.btn:hover {
  background-color: var(--accent-hover);
}

.btn:active {
  transform: translateY(1px);
}

section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-inline: auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-muted);
}

.hero {
  padding: 12rem 0 8rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--wood-dark);
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  z-index: 1;
}

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

.hero h1 {
  font-size: 4rem;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.audience-card {
  background-color: var(--surface);
  padding: 3rem 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border-color);
}

.audience-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.audience-card p {
  color: var(--text-muted);
}

.process {
  background-color: var(--surface-alt);
}

.process-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.process-image img {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step {
  display: flex;
  gap: 1.5rem;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(201, 122, 52, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-text h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 500;
}

.step-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.module-card {
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  background-color: var(--surface);
  border-radius: 8px;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.module-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.module-card .module-num {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
  font-weight: 600;
}

.module-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.module-card p {
  color: var(--text-muted);
}

.tools {
  background-color: var(--wood-dark);
  color: #fff;
}

.tools .section-header h2 {
  color: #fff;
}

.tools .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.tools-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tools-list {
  list-style: none;
}

.tools-list li {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.tools-list h4 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.tools-list p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.result-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.result-image {
  order: 2;
}

.result-text {
  order: 1;
}

.result-text h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.result-text p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.result-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.result-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.result-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent);
}

.faq {
  background-color: var(--surface-alt);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--surface);
  margin-bottom: 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--wood-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--accent);
  transition: transform var(--transition-smooth);
}

.faq-icon::before {
  top: 11px;
  left: 4px;
  width: 16px;
  height: 2px;
}

.faq-icon::after {
  top: 4px;
  left: 11px;
  width: 2px;
  height: 16px;
}

.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth), padding var(--transition-smooth);
}

.faq-item.active .faq-answer {
  padding: 0 2rem 1.5rem;
  max-height: 500px;
}

.faq-answer p {
  color: var(--text-muted);
}

.lead-section {
  padding: 8rem 0;
  background-color: var(--wood-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.lead-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  mix-blend-mode: overlay;
  z-index: 1;
  pointer-events: none;
}

.lead-container {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--surface);
  border-radius: 12px;
  padding: 4rem 3rem;
  color: var(--text-main);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.lead-container h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.lead-container p {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--wood-dark);
}

.form-control {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 1rem;
  background-color: var(--bg-color);
  transition: border-color 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
}

.form-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  display: block;
}

.btn-block {
  width: 100%;
  margin-top: 1rem;
}

.form-error {
  color: #D32F2F;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}

.consent-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1.5rem;
}

.consent-text a {
  text-decoration: underline;
}

.site-footer {
  background-color: #1A1613;
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-desc {
  max-width: 300px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.footer-links h4 {
  color: #fff;
  font-family: var(--font-sans);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.legal-page {
  padding: 10rem 0 6rem;
  max-width: 800px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.25rem;
  margin: 2rem 0 1rem;
  color: var(--wood-dark);
}

.legal-content p, .legal-content ul {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.legal-content ul {
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(201, 122, 52, 0.1);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
}

.success-page h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.success-page p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-inline: auto;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--wood-dark);
  color: #fff;
  padding: 1.5rem;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
  background: transparent;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-actions .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .audience-grid,
  .process-content,
  .modules-grid,
  .tools-content,
  .result-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .result-image {
    order: 1;
  }
  
  .result-text {
    order: 2;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--surface);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s ease;
  }
  
  .nav-links.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  
  .nav-links li {
    width: 100%;
  }
  
  .nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-color);
  }
  
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero {
    padding: 8rem 0 6rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .lead-container {
    padding: 2.5rem 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-actions {
    width: 100%;
  }
  
  .cookie-actions button, 
  .cookie-actions a {
    flex: 1;
    text-align: center;
  }
}
