:root {
  --bg: #f5f7fa;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #5b6775;
  --accent: #2f6bff;
  --accent-soft: #e6eeff;
  --border: #d7dee9;
  --shadow: 0 24px 80px rgba(22, 40, 71, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

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

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

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(215, 222, 233, 0.9);
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.95rem;
  color: var(--muted);
}

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

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero h1 {
  font-size: clamp(2.75rem, 4vw, 4.2rem);
  margin: 0 0 1.25rem;
  line-height: 1.05;
}

.hero p {
  max-width: 620px;
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 18px 40px rgba(47, 107, 255, 0.18);
}

.btn-secondary {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-secondary:hover {
  background: var(--accent);
  color: white;
  box-shadow: 0 18px 40px rgba(47, 107, 255, 0.18);
  transition: all 0.2s ease;
}

.btn-select {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-placeholder {
  width: 100%;
  max-width: 640px;
  height: auto;
  box-shadow: 0px 53px 100px 43px rgba(82, 140, 185, 0.3);
  color: var(--accent);
  text-align: center;
  font-weight: 700;
}

.nav-links a {
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  display: inline-block;
}

/* Burger toggle */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle .bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

@media (max-width: 960px) {
  .header-inner {
    flex-wrap: wrap;
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(22, 40, 71, 0.06);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.section {
  padding: 3.5rem 0;
}

.section-solid {
  background: #ffffff;
}

.section h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 1rem;
}

.section p {
  color: var(--muted);
  max-width: 42rem;
}

.section-copy {
  margin-bottom: 2rem;
}

.feature-cards,
.audience-grid,
.outcomes-grid,
.steps-grid,
.module-grid,
.resources-grid,
.feature-cards {
  display: grid;
  gap: 1.5rem;
}

.feature-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.audience-card,
.outcome-card,
.step-card,
.module-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.feature-card h3,
.audience-card h3,
.module-card h3 {
  margin-top: 0;
}

.checklist,
.resource-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.checklist li,
.resource-list li {
  padding-left: 1.2rem;
  position: relative;
  color: var(--text);
}

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

.highlight-grid,
.text-with-image-grid,
.resources-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

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

.outcomes-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card span {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--accent);
  font-weight: 700;
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.resources-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.module-card {
  min-height: 210px;
}

.footer-cta {
  background: linear-gradient(180deg, #eff5ff 0%, #eef4ff 100%);
  text-align: center;
}

.footer-cta .cta-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.site-footer {
  padding: 2.5rem 0 1.5rem 0;
  background: #0f172a;
  color: white;
}

.footer-logo {
  margin: 0 auto;
  max-width: 100%;
  text-align: center;
}

.footer-inner {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 16px;
  gap: 1rem;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
  color: white;
}

.footer-links-2 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgb(177, 177, 177);
}

.footer-links-2 a:hover {
  color: white;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  z-index: 50;
  overflow-y: auto;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  display: none;
  max-width: 900px;
  width: 100%;
  max-height: min(90vh, 900px);
  overflow-y: auto;
  background: white;
  border-radius: 28px 0 0 28px;
  padding: 2rem;
  box-shadow: 0 40px 120px rgba(15, 23, 42, 0.35);
  position: relative;
}

.modal.active {
  display: block;
}

.modal h2 {
  margin-top: 0;
}

.modal-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: var(--surface);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  border-radius: 999px;
  cursor: pointer;
}

.modal p,
.modal li,
.modal h3,
.modal h4 {
  color: var(--text);
}

.modal ul {
  margin: 0.75rem 0 1.5rem 1.25rem;
}

.modal ul li {
  margin-bottom: 0.6rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  z-index: 40;
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.1);
}

.cookie-content {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.cookie-text h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  color: var(--text);
}

.cookie-text p {
  margin: 0.5rem 0 0 0;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 550px;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  z-index: 50;
  overflow-y: auto;
}

.cookie-modal-content {
  max-width: 500px;
  width: 100%;
  background: white;
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 40px 120px rgba(15, 23, 42, 0.35);
  position: relative;
}

.cookie-preferences {
  margin: 1.5rem 0;
}

.cookie-pref-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.cookie-pref-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cookie-pref-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.cookie-pref-item input[type="checkbox"] {
  margin-right: 0.75rem;
  cursor: pointer;
  width: 18px;
  height: 18px;
}

.cookie-pref-item input[type="checkbox"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-pref-item p {
  margin: 0.5rem 0 0 2rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-modal-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: space-between;
}

.hidden {
    display: none !important;
}

.footer-logo {
  flex: 1;
}

.footer-links-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-links-2 a:hover {
  color: white;
}

.pricing-grid,
.faq-grid,
.support-grid,
.feedback-grid {
  display: grid;
  gap: 1.5rem;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feedback-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: stretch;
}

.feedback-form,
.feedback-message {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.feedback-form h2 {
  margin-top: 0;
}

.feedback-form p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.form-fields {
  display: grid;
  gap: 1rem;
}

.form-fields label {
  display: grid;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text);
}

.feedback-message label {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
  min-height: 0;
  font-weight: 600;
  color: var(--text);
}

.form-fields input,
.feedback-message textarea {
  width: 100%;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--bg);
  color: var(--text);
  font: inherit;
}

.feedback-message {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.feedback-message textarea {
  flex: 1;
  min-height: 0;
  resize: none;
}

.feedback-message button {
  align-self: flex-end;
  margin-top: 1rem;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.pricing-card.recommended {
  border-color: var(--accent);
  background: #f3f7ff;
}

.pricing-card .price {
  margin: 0.75rem 0 1rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.pricing-list li {
  padding-left: 1rem;
  position: relative;
  color: var(--text);
}

.pricing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
}

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

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.5rem;
  color: var(--text);
}

.support-grid {
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
}

.info-box {
  background: #f0f4ff;
  border: 1px solid rgba(47, 107, 255, 0.2);
  border-radius: 24px;
  padding: 1.75rem;
}

.footer-cta {
  margin-top: 0;
}

.thank-you-list {
  margin-top: 4rem;
	margin-bottom: 2rem;
  padding: 2rem;
  background: var(--accent-soft);
  border-radius: 28px;
}

@media (max-width: 960px) {
  .hero-grid,
  .highlight-grid,
  .text-with-image-grid,
  .resources-grid,
  .pricing-grid,
  .faq-grid,
  .support-grid,
  .feedback-grid,
  .audience-grid,
  .outcomes-grid,
  .module-grid,
  .feature-cards {
    grid-template-columns: 1fr;
  }

  .text-with-image-grid-reverse {
    display: flex;
    flex-direction: column-reverse;
  }

  .header-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .cookie-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cookie-actions {
    width: 100%;
    justify-content: space-between;
  }

  .cookie-actions .btn {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 0 0 1rem 0;
  }

  .section-solid {
    background: transparent;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .btn {
    width: 100%;
  }

  .cookie-banner {
    padding: 1rem;
    bottom: auto;
    top: 0;
    border-top: none;
    border-bottom: 1px solid var(--border);
  }

  .cookie-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cookie-text p {
    max-width: 100%;
    font-size: 0.85rem;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
    min-height: 2.5rem;
    padding: 0 1rem;
    font-size: 0.9rem;
  }

  .cookie-modal-content {
    padding: 1.5rem;
  }

  .cookie-modal-actions {
    flex-direction: column;
  }

  .cookie-modal-actions .btn {
    width: 100%;
  }

  /* Mobile: stack steps vertically */
  .steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .steps-grid .step-card {
    min-width: auto;
    flex: initial;
  }
  .modal ul {
    margin: 0;
  }
  .thank-you-list {
    padding: 1rem;
  }
}
