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

:root {
  --bg: #F7F3EE;
  --bg-alt: #EDE7DE;
  --dark: #1E1A17;
  --text: #2C2520;
  --text-muted: #7A6E66;
  --accent: #8B5E3C;
  --accent-light: #C4956A;
  --accent-pale: #F0E4D5;
  --highlight: #C4704A;
  --border: #D6CCC2;
  --white: #FDFAF7;
  --shadow: 0 4px 24px rgba(30,26,23,0.08);
  --shadow-lg: 0 8px 48px rgba(30,26,23,0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --max-w: 1120px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

a:hover {
  color: var(--highlight);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--dark);
}

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

section {
  padding: 80px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--highlight);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

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

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

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,243,238,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: var(--shadow);
}

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

.nav-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.hero {
  padding: 80px 0 60px;
  background: var(--bg);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-pale) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-pale);
  color: var(--accent);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '✏️';
  font-size: 14px;
}

.hero h1 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.hero-form-title {
  font-family: var(--font-serif);
  font-size: 20px;
  margin-bottom: 6px;
  color: var(--dark);
}

.hero-form-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}

.hero-trust-item::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-image-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(247,243,238,0.95);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 13px;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 15px;
  background: var(--bg);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139,94,60,0.1);
}

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

.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 16px 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}

.form-consent a {
  color: var(--accent);
}

.form-submit {
  width: 100%;
  justify-content: center;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-head {
  margin-bottom: 56px;
}

.section-head.centered {
  text-align: center;
}

.section-head.centered .section-subtitle {
  margin: 0 auto;
}

.audience {
  background: var(--bg-alt);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.audience-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.audience-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

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

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

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.benefit-item {
  display: flex;
  gap: 20px;
}

.benefit-num {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--accent-pale);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  -webkit-text-stroke: 2px var(--accent-light);
}

.benefit-content h3 {
  font-size: 17px;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 8px;
}

.benefit-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.process {
  background: var(--dark);
  color: var(--white);
}

.process .section-title,
.process .section-label {
  color: var(--white);
}

.process .section-label {
  color: var(--accent-light);
}

.process .section-subtitle {
  color: rgba(253,250,247,0.7);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 80px;
  right: 80px;
  height: 1px;
  background: rgba(253,250,247,0.15);
}

.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.process-step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(196,149,106,0.15);
  border: 1px solid var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-light);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.process-step h3 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
  color: rgba(253,250,247,0.65);
  line-height: 1.6;
}

.examples {
  background: var(--bg-alt);
}

.examples-visual {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: center;
}

.examples-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.examples-text .section-subtitle {
  margin-bottom: 24px;
}

.examples-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.examples-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.examples-list li::before {
  content: '✏️';
  flex-shrink: 0;
  font-size: 16px;
  margin-top: 1px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 72px;
  color: var(--accent-pale);
  line-height: 0.6;
  position: absolute;
  top: 24px;
  left: 24px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  padding-top: 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
}

.testimonial-city {
  font-size: 13px;
  color: var(--text-muted);
}

.instructor {
  background: var(--bg-alt);
}

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

.instructor-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.instructor-name {
  font-size: clamp(24px, 2.5vw, 32px);
  margin-bottom: 6px;
}

.instructor-title {
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

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

.instructor-facts {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.instructor-fact-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.instructor-fact-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

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

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

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

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

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  transition: all var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: rotate(45deg);
}

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

.faq-answer-inner {
  padding-bottom: 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.lead-form-section {
  background: var(--accent-pale);
  position: relative;
  overflow: hidden;
}

.lead-form-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,149,106,0.2) 0%, transparent 70%);
}

.lead-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.lead-form-text .section-subtitle {
  margin-bottom: 28px;
}

.lead-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lead-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
}

.lead-benefits li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.lead-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.lead-form-card .section-title {
  font-size: 24px;
  margin-bottom: 8px;
}

.lead-form-card .form-sub {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 28px;
}

.footer {
  background: var(--dark);
  color: rgba(253,250,247,0.7);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(253,250,247,0.1);
  margin-bottom: 32px;
}

.footer-brand .nav-logo {
  color: var(--white);
  display: block;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: rgba(253,250,247,0.6);
  font-size: 14px;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 12px;
  line-height: 1.7;
  max-width: 560px;
}

.footer-copy {
  font-size: 12px;
  white-space: nowrap;
}

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  text-align: center;
  padding: 40px 24px;
}

.success-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  max-width: 520px;
  width: 100%;
}

.success-icon {
  font-size: 56px;
  margin-bottom: 20px;
}

.success-card h1 {
  font-size: 28px;
  margin-bottom: 14px;
}

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

.legal-page {
  padding: 80px 0;
}

.legal-page h1 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 12px;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 48px;
}

.legal-body {
  max-width: 720px;
}

.legal-body h2 {
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 12px;
}

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

.legal-body ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.legal-body ul li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 8px;
}

.legal-company-details {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 40px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.9;
  border: 1px solid var(--border);
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  display: none;
  align-items: flex-start;
  gap: 20px;
  animation: slideUp 0.4s ease;
}

.cookie-banner.show {
  display: flex;
}

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

.cookie-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(253,250,247,0.8);
}

.cookie-text a {
  color: var(--accent-light);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-direction: column;
}

.cookie-accept {
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background var(--transition);
  white-space: nowrap;
}

.cookie-accept:hover {
  background: var(--highlight);
}

.cookie-decline {
  background: transparent;
  color: rgba(253,250,247,0.6);
  border: 1px solid rgba(253,250,247,0.2);
  border-radius: var(--radius);
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: all var(--transition);
  white-space: nowrap;
}

.cookie-decline:hover {
  color: var(--white);
  border-color: rgba(253,250,247,0.5);
}

@media (max-width: 900px) {
  .hero-grid,
  .lead-form-grid,
  .instructor-grid,
  .examples-visual {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image {
    order: -1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-grid::before {
    display: none;
  }

  .process-step {
    padding: 0 12px;
  }
}

@media (max-width: 600px) {
  section {
    padding: 56px 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    padding: 32px 24px;
    gap: 24px;
    z-index: 99;
  }

  .nav-links.mobile-open a {
    font-size: 18px;
  }

  .nav-cta.mobile-open {
    display: flex;
    flex-direction: column;
    margin-top: auto;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .hero-form,
  .lead-form-card {
    padding: 24px;
  }

  .success-card {
    padding: 40px 28px;
  }

  .instructor-facts {
    gap: 20px;
  }

  .cookie-banner {
    flex-direction: column;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-width: 100%;
  }

  .cookie-actions {
    flex-direction: row;
    width: 100%;
  }

  .cookie-accept,
  .cookie-decline {
    flex: 1;
    text-align: center;
  }
}
