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

:root {
  --color-ecru: #f9f5f0;
  --color-ecru-light: #fdfbf9;
  --color-rose: #dfb6b4;
  --color-rose-light: #f2dad8;
  --color-terracotta: #c46d5c;
  --color-terracotta-dark: #a95646;
  --color-charcoal: #3e3a39;
  --color-charcoal-light: #6a6361;

  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-charcoal);
  background-color: var(--color-ecru-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-charcoal);
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
p { margin-bottom: 1rem; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  section {
    padding: 7rem 0;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(253, 251, 249, 0.95);
  backdrop-filter: blur(8px);
  z-index: 100;
  border-bottom: 1px solid rgba(223, 182, 180, 0.3);
  transition: all 0.3s ease;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-charcoal);
  font-style: italic;
}

.nav__links {
  display: flex;
  gap: 2rem;
}

.nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-charcoal-light);
  transition: color 0.3s ease;
  position: relative;
}

.nav__link:hover {
  color: var(--color-terracotta);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-terracotta);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.nav__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 101;
}

.burger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--color-charcoal);
  transition: all 0.3s ease;
  left: 0;
}

.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 9px; }
.burger span:nth-child(3) { top: 18px; }

.burger.active span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-ecru-light);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 1.5rem;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  }
  .nav__links.active {
    transform: translateY(0);
  }
  .burger {
    display: block;
  }
  .nav__link {
    font-size: 1.25rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.05rem;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn--primary {
  background-color: var(--color-terracotta);
  color: white;
  box-shadow: 0 4px 14px rgba(196, 109, 92, 0.3);
}

.btn--primary:hover {
  background-color: var(--color-terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 109, 92, 0.4);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-terracotta);
  border: 1px solid var(--color-terracotta);
}

.btn--outline:hover {
  background-color: var(--color-terracotta);
  color: white;
}

.hero {
  padding-top: 120px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--color-ecru);
  position: relative;
  overflow: hidden;
}

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

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__subtitle {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--color-terracotta);
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
}

.hero__desc {
  font-size: 1.15rem;
  color: var(--color-charcoal-light);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero__image-wrapper {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transform: rotate(2deg);
  transition: transform 0.5s ease;
}

.hero__image-wrapper:hover {
  transform: rotate(0deg);
}

.hero__image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-2xl);
  pointer-events: none;
}

.hero__image {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.hero__decor {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--color-rose-light);
  filter: blur(80px);
  z-index: 1;
  top: -10%;
  right: -5%;
  opacity: 0.6;
}

@media (max-width: 992px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero__desc {
    margin: 0 auto 2.5rem;
  }
  .hero__image-wrapper {
    transform: rotate(0);
    max-width: 600px;
    margin: 0 auto;
  }
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

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

.section-header p {
  color: var(--color-charcoal-light);
  font-size: 1.1rem;
}

.for-whom {
  background-color: var(--color-ecru-light);
}

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

.audience-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 30px rgba(62, 58, 57, 0.04);
  border: 1px solid rgba(223, 182, 180, 0.2);
  transition: transform 0.3s ease;
}

.audience-card:hover {
  transform: translateY(-5px);
}

.audience-card h3 {
  color: var(--color-terracotta);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

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

.result-section {
  background-color: var(--color-rose-light);
  position: relative;
}

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

.result-content h2 {
  margin-bottom: 1.5rem;
}

.result-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.result-image-wrapper {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.result-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 992px) {
  .result-grid {
    grid-template-columns: 1fr;
  }
  .result-content {
    order: 2;
  }
  .result-image-wrapper {
    order: 1;
  }
}

.process-section {
  background-color: var(--color-ecru);
}

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

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

.process-step {
  display: flex;
  gap: 1.5rem;
  background: rgba(255,255,255,0.5);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(223,182,180,0.3);
}

.process-step__num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-terracotta);
  font-weight: 600;
  line-height: 1;
}

.process-step__text h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.process-step__text p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--color-charcoal-light);
}

.process-image-wrapper {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  position: relative;
}

.process-image-wrapper img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

.content-section {
  background-color: var(--color-ecru-light);
}

.module-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.module-item {
  background: #fff;
  border: 1px solid rgba(223,182,180,0.3);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.module-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-terracotta);
  flex-shrink: 0;
}

.module-item__icon svg {
  width: 24px;
  height: 24px;
}

.module-item__text h4 {
  margin-bottom: 0.25rem;
  font-size: 1.15rem;
}

.module-item__text p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--color-charcoal-light);
}

.form-section {
  background-color: var(--color-rose-light);
  padding: 6rem 0;
}

.form-container {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  padding: 3rem;
  border-radius: var(--radius-2xl);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.form-container h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.form-container > p {
  text-align: center;
  color: var(--color-charcoal-light);
  margin-bottom: 2rem;
}

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

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--color-charcoal);
}

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid #e2e0df;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #faf9f8;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-terracotta);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(196,109,92,0.1);
}

.form-submit {
  width: 100%;
  margin-top: 1rem;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--color-charcoal-light);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.4;
}

.form-disclaimer a {
  text-decoration: underline;
}

.form-error-msg {
  color: var(--color-terracotta-dark);
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: none;
}

.faq-section {
  background-color: var(--color-ecru-light);
}

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

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 1.5rem 0;
}

.faq-item:first-child {
  border-top: 1px solid rgba(0,0,0,0.1);
}

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

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--color-terracotta);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::before { width: 16px; height: 2px; }
.faq-icon::after { width: 2px; height: 16px; transition: transform 0.3s ease; }

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  opacity: 1;
}

.faq-answer p {
  padding-top: 1rem;
  margin-bottom: 0;
  color: var(--color-charcoal-light);
}

.footer {
  background-color: var(--color-charcoal);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
  font-size: 0.9rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: #fff;
  font-style: italic;
  margin-bottom: 1rem;
  display: block;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links a {
  transition: color 0.3s ease;
}

.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;
}

@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  max-width: 400px;
  background: #fff;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translateY(150%);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.cookie-banner p {
  font-size: 0.85rem;
  margin-bottom: 0;
  color: var(--color-charcoal-light);
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background: var(--color-terracotta);
  color: #fff;
  flex: 1;
}

.cookie-btn-accept:hover {
  background: var(--color-terracotta-dark);
}

.cookie-btn-more {
  background: var(--color-ecru);
  color: var(--color-charcoal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cookie-btn-more:hover {
  background: var(--color-rose-light);
}

@media (max-width: 768px) {
  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}

.legal-page {
  padding: 120px 0 6rem;
  background: var(--color-ecru-light);
  min-height: 100vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 4rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

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

@media (max-width: 768px) {
  .legal-content {
    padding: 2rem;
  }
}

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-rose-light);
  text-align: center;
  padding: 120px 1.5rem 6rem;
}

.success-content {
  background: #fff;
  padding: 4rem 3rem;
  border-radius: var(--radius-2xl);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  max-width: 500px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--color-ecru);
  color: var(--color-terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.success-icon svg {
  width: 40px;
  height: 40px;
}

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

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

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
