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

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

:root {
  --bg: #FBF8F4;
  --surface: #FFFFFF;
  --primary: #2D5F6B;
  --primary-dark: #1D4A55;
  --primary-light: #E8F4F7;
  --accent: #E88A59;
  --accent-dark: #D4723E;
  --text: #1A1A1A;
  --text-secondary: #5C5C5C;
  --border: #E8E2DA;
  --shadow: 0 2px 16px rgba(45, 95, 107, 0.08);
  --shadow-md: 0 4px 32px rgba(45, 95, 107, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', system-ui, sans-serif;
  line-height: 1.2;
  color: var(--text);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--primary-dark);
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-align: center;
  line-height: 1;
}

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

.btn-primary:hover {
  background-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 138, 89, 0.35);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

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

.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--primary);
  letter-spacing: -0.5px;
}

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

.hero {
  padding: 72px 0 64px;
  background-color: var(--bg);
  overflow: hidden;
}

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

.hero-badge {
  display: inline-block;
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text);
}

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

.hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 13px;
  color: var(--text-secondary);
}

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

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

.trust-strip {
  padding: 40px 0;
  background-color: var(--primary);
}

.trust-strip .container {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 500;
}

.trust-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.section-tag {
  display: inline-block;
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text);
}

.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.6;
}

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

.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.for-whom-card {
  background-color: var(--bg);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}

.for-whom-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.card-icon {
  width: 52px;
  height: 52px;
  background-color: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.for-whom-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.for-whom-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.outcomes {
  background-color: var(--bg);
}

.outcomes-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 48px;
}

.outcomes-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.outcomes-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.outcomes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.outcomes-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.outcome-check {
  width: 28px;
  height: 28px;
  background-color: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.outcomes-list li span {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
}

.curriculum {
  background-color: var(--surface);
}

.modules {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.module {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.module-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background-color: var(--bg);
  transition: background-color 0.2s;
  user-select: none;
  gap: 12px;
}

.module-header:hover {
  background-color: var(--primary-light);
}

.module-header.active {
  background-color: var(--primary-light);
  border-bottom: 1px solid var(--border);
}

.module-num {
  width: 32px;
  height: 32px;
  background-color: var(--primary);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  flex-shrink: 0;
}

.module-title {
  font-size: 16px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  flex: 1;
}

.module-arrow {
  color: var(--text-secondary);
  font-size: 18px;
  transition: transform 0.25s;
  flex-shrink: 0;
}

.module.open .module-arrow {
  transform: rotate(180deg);
}

.module-body {
  display: none;
  padding: 20px 24px;
  background-color: var(--surface);
}

.module.open .module-body {
  display: block;
}

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

.module-body ul li {
  font-size: 15px;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}

.module-body ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.format {
  background-color: var(--bg);
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.format-card {
  background-color: var(--surface);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--border);
}

.format-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.format-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.format-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.gallery {
  background-color: var(--surface);
}

.gallery-intro {
  margin-bottom: 48px;
}

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

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-caption {
  margin-top: 28px;
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
  font-style: italic;
}

.faq {
  background-color: var(--bg);
}

.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
  transition: background-color 0.2s;
}

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

.faq-question h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.faq-arrow {
  font-size: 18px;
  color: var(--text-secondary);
  transition: transform 0.25s;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
}

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

.faq-answer p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.lead-form-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
}

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

.lead-form-copy h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.lead-form-copy p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  margin-bottom: 24px;
}

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

.lead-form-promises li {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 10px;
}

.lead-form-promises li::before {
  content: "✓";
  display: inline-flex;
  width: 22px;
  height: 22px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.form-card {
  background-color: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.form-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

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

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

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

.form-group input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background-color: var(--bg);
  transition: border-color 0.2s;
  outline: none;
}

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

.form-group input::placeholder {
  color: #b0a99f;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  font-size: 16px;
}

.form-disclaimer {
  font-size: 12px;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

.form-disclaimer a {
  color: var(--primary);
  text-decoration: underline;
}

.site-footer {
  background-color: #1A2C30;
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 12px;
  display: block;
}

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

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 16px;
}

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

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #fff;
}

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

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

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-align: right;
  flex-shrink: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 540px;
  background-color: #1A2C30;
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: none;
  animation: slideUp 0.35s ease;
}

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

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

.cookie-banner p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-accept {
  padding: 10px 22px;
  background-color: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: background-color 0.2s;
}

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

.cookie-decline {
  padding: 10px 22px;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}

.cookie-decline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.legal-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

.legal-page h1 {
  font-size: 32px;
  margin-bottom: 8px;
}

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

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

.legal-page p, .legal-page li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

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

.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 28px;
}

.success-page h1 {
  font-size: 36px;
  margin-bottom: 14px;
}

.success-page p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 440px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image img {
    height: 280px;
  }

  .format-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lead-form-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .for-whom-grid {
    grid-template-columns: 1fr;
  }

  .outcomes-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .outcomes-image img {
    height: 300px;
  }

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

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

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

  .footer-copy {
    text-align: left;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-strip .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

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

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

  .form-card {
    padding: 28px 20px;
  }
}
