:root {
  --color-bg-light: #FDFBF7;
  --color-bg-warm: #F4ECE1;
  --color-bg-dark: #3A2E28;
  --color-primary: #C39953;
  --color-primary-light: #E0BA79;
  --color-text-dark: #2B211C;
  --color-text-light: #FDFBF7;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: var(--color-bg-light);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
}

/* Typography */
h1 { font-size: 3.5rem; margin-bottom: 1rem; color: var(--color-text-dark); }
h2 { font-size: 2.5rem; margin-bottom: 2rem; text-align: center; color: var(--color-primary); }
p { margin-bottom: 1.5rem; font-size: 1.1rem; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  text-decoration: none;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(195, 153, 83, 0.3);
}

.btn:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(195, 153, 83, 0.4);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  box-shadow: none;
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  box-shadow: 0 4px 15px rgba(195, 153, 83, 0.3);
}

/* Navigation */
.main-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 500;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-text-dark);
  margin-left: 2rem;
  font-family: var(--font-heading);
  font-weight: 400;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
  opacity: 1;
  color: var(--color-primary);
}

/* Sections */
section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-warm {
  background-color: var(--color-bg-warm);
  max-width: 100%;
}
.section-warm .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-dark {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  max-width: 100%;
}
.section-dark .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--color-bg-light);
  padding-top: 5rem;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: block;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 20px 200px 20px 200px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  height: 600px;
  width: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Opt-in Form */
.optin-form {
  margin-top: 2.5rem;
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.04);
  border: 1px solid rgba(195, 153, 83, 0.1);
}

.optin-form h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-dark);
}

.optin-form p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: #666;
}

.input-group {
  display: flex;
  gap: 1rem;
}

.input-group input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 1px solid #E5E5E5;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.input-group input:focus {
  border-color: var(--color-primary);
}

.rgpd-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #666;
  text-align: left;
  line-height: 1.4;
}

.rgpd-consent input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--color-primary);
}

/* Audio Control */
.audio-control {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  background: var(--color-bg-light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.audio-control:hover {
  transform: scale(1.1);
}

.audio-control.playing {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(195, 153, 83, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(195, 153, 83, 0); }
  100% { box-shadow: 0 0 0 0 rgba(195, 153, 83, 0); }
}

.audio-control.attention {
  animation: attention-pulse 1s ease-in-out 3;
}

@keyframes attention-pulse {
  0%   { transform: scale(1); box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
  50%  { transform: scale(1.25); box-shadow: 0 0 0 12px rgba(195, 153, 83, 0.2); }
  100% { transform: scale(1); box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: 20px 20px 200px 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Offers Section */
.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.offer-card {
  background: var(--color-bg-light);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--color-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-10px);
}

.offer-card:hover::before {
  opacity: 1;
}

.offer-time {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #E5E5E5;
  padding: 1.5rem 0;
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: #666;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 1rem;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 10px 20px rgba(195, 153, 83, 0.3);
}

.process-step h3 {
  color: var(--color-primary-light);
  margin-bottom: 1rem;
}

/* Contact / Questionnaire (Option A - Typeform Style) */
.typeform-style {
  background: transparent;
  box-shadow: none;
  padding: 2rem 0;
  max-width: 800px;
  margin: 0 auto;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-progress {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 3rem;
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.form-step {
  display: none;
  animation: slideUpFade 0.5s ease forwards;
}

.form-step.active {
  display: block;
}

@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-question {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.step-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
}

.step-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--color-text-light);
  padding: 1rem 0;
  margin-bottom: 2rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.step-input:focus {
  border-bottom-color: var(--color-primary);
}

.step-input::placeholder {
  color: rgba(255,255,255,0.2);
}

.step-input option {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  font-size: 1.1rem;
}

.step-input:-webkit-autofill {
  -webkit-text-fill-color: var(--color-text-light);
  transition: background-color 5000s ease-in-out 0s;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 8rem;
  }
  .hero-image-wrapper {
    height: 400px;
    border-radius: 20px 100px 20px 100px;
  }
  .optin-form {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .about-grid, .offers-grid, .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .hero-content {
    margin-left: 0;
    text-align: center;
  }
  
  .input-group {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .about-grid, .offers-grid, .process-grid {
    grid-template-columns: 1fr;
  }
}
