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

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

:root {
  --bg: #faf8f5;
  --bg-muted: #f3efe9;
  --bg-accent: #f5ede8;
  --bg-card: #faf7f3;
  --text: #2e2219;
  --text-muted: #7a6a5e;
  --border: #e5d9cf;
  --primary: #b06070;
  --primary-dark: #9a5060;
  --primary-light: #f0dde2;
  --secondary: #8aad96;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 12px rgba(46,34,25,0.10);
  --shadow-lg: 0 8px 32px rgba(46,34,25,0.13);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --max-w: 1000px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250,248,245,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.15s;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  opacity: 0.88;
}

.btn-primary-lg {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

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

.btn-outline:hover {
  background: var(--bg-muted);
}

.section {
  padding: 72px 0;
}

.section-muted {
  background: var(--bg-muted);
}

.section-accent {
  background: var(--bg-accent);
}

.section-primary {
  background: var(--primary);
  color: #fff;
}

.section-title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--text-muted);
  text-align: center;
  max-width: 520px;
  margin: 0 auto 48px;
}

.hero {
  background: var(--bg-accent);
  padding: 72px 0;
}

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

.hero-eyebrow {
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 32px;
}

.hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

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

.pain-card {
  padding: 24px;
  background: rgba(176,96,112,0.07);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.pain-card h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.pain-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.format-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.format-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.format-step {
  display: flex;
  gap: 16px;
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.format-step h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.format-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.format-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.format-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.modules-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.module-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

.module-card:hover {
  border-color: rgba(176,96,112,0.4);
}

.module-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: rgba(176,96,112,0.25);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 4px;
}

.module-card h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.module-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}

.skill-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.skill-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.skill-check svg {
  width: 10px;
  height: 10px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skill-item span {
  font-size: 14px;
  line-height: 1.5;
}

.instructor-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.instructor-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.instructor-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top;
}

.instructor-eyebrow {
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.instructor-name {
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: 20px;
}

.instructor-text {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 15px;
}

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

.review-card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 1px 4px rgba(46,34,25,0.05);
  display: flex;
  flex-direction: column;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.review-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--primary);
  color: var(--primary);
}

.review-text {
  font-size: 14px;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}

.review-author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.review-author span {
  font-size: 12px;
  color: var(--text-muted);
}

.lead-form-wrap {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.lead-form-wrap .section-title {
  margin-bottom: 12px;
}

.lead-form-wrap .section-sub {
  margin-bottom: 40px;
}

.form-group {
  text-align: left;
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 15px;
  background: var(--bg);
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
}

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

.form-group input::placeholder {
  color: var(--text-muted);
}

.form-error {
  display: none;
  color: #c0392b;
  font-size: 12px;
  margin-top: 4px;
}

.form-error.visible {
  display: block;
}

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.5;
}

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

.form-note a:hover {
  color: var(--primary);
}

.faq-list {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 720px;
  margin: 0 auto;
  overflow: hidden;
}

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

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-align: left;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  transition: transform 0.2s;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

.cta-strip {
  text-align: center;
}

.cta-strip .section-title {
  color: #fff;
}

.cta-strip .section-sub {
  color: rgba(255,255,255,0.8);
}

.btn-white {
  background: var(--bg);
  color: var(--text);
  font-weight: 600;
  padding: 14px 36px;
  font-size: 16px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(46,34,25,0.18);
}

.btn-white:hover {
  background: #f0ebe5;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-muted);
  padding: 48px 0;
}

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

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-brand-desc {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 240px;
  line-height: 1.6;
}

.footer-links-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

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

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.15s;
}

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

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--text);
  color: #f0ebe5;
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 -4px 16px rgba(46,34,25,0.18);
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.cookie-banner p {
  font-size: 14px;
  line-height: 1.5;
}

.cookie-banner a {
  text-decoration: underline;
  opacity: 0.8;
}

.cookie-banner a:hover {
  opacity: 1;
}

.cookie-banner .btn-primary {
  flex-shrink: 0;
  white-space: nowrap;
}

.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px;
}

.legal-page h1 {
  font-size: clamp(26px, 4vw, 34px);
  margin-bottom: 8px;
}

.legal-page .date {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 32px;
}

.legal-page p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal-page h2 {
  font-size: 20px;
  margin: 36px 0 12px;
}

.legal-page h3 {
  font-size: 16px;
  font-family: var(--font-sans);
  font-weight: 600;
  margin: 24px 0 8px;
}

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

.legal-page ul li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 6px;
}

.success-page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

.success-content {
  max-width: 440px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(176,96,112,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.success-icon svg {
  width: 44px;
  height: 44px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-title {
  font-size: clamp(26px, 4vw, 34px);
  margin-bottom: 16px;
}

.success-text {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.success-note {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 36px;
}

.page-with-footer {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-with-footer > main {
  flex: 1;
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-inner .hero-img {
    order: -1;
  }
  .hero-img img {
    height: 260px;
  }
  .pain-grid {
    grid-template-columns: 1fr;
  }
  .format-inner {
    grid-template-columns: 1fr;
  }
  .format-img {
    order: -1;
  }
  .format-img img {
    height: 240px;
  }
  .skills-grid {
    grid-template-columns: 1fr;
  }
  .instructor-inner {
    grid-template-columns: 1fr;
  }
  .instructor-img img {
    height: 280px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 48px 0;
  }
  .container {
    padding: 0 16px;
  }
}
