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

:root {
  --color-bg: #F9F6F0;
  --color-surface: #FFFFFF;
  --color-text-main: #3D2B1F;
  --color-text-muted: #6B5C51;
  --color-accent: #C17A5B;
  --color-accent-hover: #A86548;
  --color-sage: #9CAD92;
  --color-sage-light: #E8EDE5;
  --color-border: #E6DFD3;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --transition-speed: 0.3s;
  --border-radius: 12px;
  --border-radius-lg: 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-text-main);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text-main);
}

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

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

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background-color: var(--color-accent);
  color: #FFF;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background-color var(--transition-speed), transform 0.2s ease;
  text-align: center;
}

.btn:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(249, 246, 240, 0.95);
  backdrop-filter: blur(8px);
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: all var(--transition-speed);
}

.header.scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: 0 2px 10px rgba(61, 43, 31, 0.05);
}

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

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

.header-cta {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* Hero Section */
.hero {
  padding: 160px 0 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  max-width: 90%;
}

.hero-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(61, 43, 31, 0.08);
}

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

/* Section Shared */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

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

/* Audience Fit */
.audience {
  background-color: var(--color-sage-light);
}

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

.card {
  background-color: var(--color-bg);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  text-align: center;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--color-sage);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

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

/* Problem / Solution */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.solution-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.solution-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.solution-content h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

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

.solution-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 24px;
  font-size: 1.125rem;
}

.solution-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* Outcomes */
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}

.outcome-img-wrapper {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.outcome-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

/* FAQ */
.faq {
  background-color: var(--color-surface);
  padding: 100px 0;
}

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

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 24px 0;
}

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

.faq-icon {
  font-size: 1.5rem;
  color: var(--color-accent);
  transition: transform var(--transition-speed);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-speed) ease-out;
  color: var(--color-text-muted);
}

.faq-answer p {
  padding-top: 16px;
  line-height: 1.7;
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* Form Section */
.lead-form-section {
  background-color: var(--color-sage-light);
  padding: 100px 0;
}

.form-wrapper {
  max-width: 500px;
  margin: 0 auto;
  background-color: var(--color-surface);
  padding: 48px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px rgba(61, 43, 31, 0.05);
}

.form-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  text-align: center;
}

.form-wrapper p {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: var(--color-bg);
  transition: border-color var(--transition-speed);
}

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

.form-wrapper .btn {
  width: 100%;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 16px;
}

/* Footer */
.footer {
  background-color: var(--color-text-main);
  color: var(--color-bg);
  padding: 60px 0 40px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: #FFF;
}

.footer-info p {
  color: rgba(249, 246, 240, 0.7);
  font-size: 0.875rem;
  margin-bottom: 8px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(249, 246, 240, 0.7);
  font-size: 0.875rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(249, 246, 240, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(249, 246, 240, 0.5);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 400px;
  background-color: var(--color-surface);
  padding: 24px;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 40px rgba(61, 43, 31, 0.1);
  z-index: 2000;
  transform: translateY(150%);
  transition: transform 0.5s ease;
  border: 1px solid var(--color-border);
}

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

.cookie-banner p {
  font-size: 0.875rem;
  margin-bottom: 16px;
  color: var(--color-text-muted);
}

.cookie-banner .btn {
  padding: 10px 20px;
  width: 100%;
}

/* Success & Legal Pages */
.page-header {
  padding: 160px 0 60px;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 40px;
}

.back-link::before {
  content: "←";
  margin-right: 8px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto 100px;
  background-color: var(--color-surface);
  padding: 60px;
  border-radius: var(--border-radius-lg);
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
}

.legal-content p, .legal-content li {
  margin-bottom: 16px;
  color: var(--color-text-muted);
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 24px;
}

.success-box {
  max-width: 600px;
  margin: 100px auto;
  text-align: center;
  background-color: var(--color-surface);
  padding: 60px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px rgba(61, 43, 31, 0.05);
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 24px;
}

.success-box h1 {
  margin-bottom: 16px;
}

.success-box p {
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-grid,
  .solution-grid,
  .outcomes-grid,
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero {
    padding: 120px 0 60px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.125rem;
    max-width: 100%;
  }
  
  .hero-image {
    order: -1;
  }
  
  .section-title {
    font-size: 2rem;
  }

  .form-wrapper, .legal-content {
    padding: 32px 24px;
  }
  
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
}
