/* ==========================================
   ARTILLUSTR — Main Stylesheet
   ========================================== */

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

:root {
  --cream: #F7F2EA;
  --cream-dark: #EDE6D8;
  --forest: #2A5C45;
  --forest-light: #3D7A5E;
  --forest-pale: #EBF4EF;
  --terracotta: #C4593A;
  --terracotta-light: #D97B5F;
  --sand: #D4A853;
  --charcoal: #1C1C1A;
  --warm-gray: #6B6560;
  --light-gray: #B8B0A8;
  --white: #FFFFFF;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --max-w: 1140px;
  --section-pad: 96px 24px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(28, 28, 26, 0.08);
  --shadow-lg: 0 12px 48px rgba(28, 28, 26, 0.14);
}

html {
  scroll-behavior: smooth;
}

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

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

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

/* ==========================================
   TYPOGRAPHY
   ========================================== */

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

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { color: var(--warm-gray); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

/* ==========================================
   LAYOUT
   ========================================== */

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

section {
  padding: var(--section-pad);
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.22s ease;
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: #B04730;
  border-color: #B04730;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 89, 58, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

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

.btn-forest {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.btn-forest:hover {
  background: var(--forest-light);
  border-color: var(--forest-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42, 92, 69, 0.3);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1.05rem;
}

/* ==========================================
   NAVIGATION
   ========================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(247, 242, 234, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(28, 28, 26, 0.08);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

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

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--warm-gray);
  transition: color 0.2s;
}

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

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

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

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.25s;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  padding: 20px 24px 28px;
  flex-direction: column;
  gap: 4px;
}

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

.nav-mobile a {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--cream-dark);
}

.nav-mobile .btn {
  margin-top: 12px;
  text-align: center;
}

/* ==========================================
   HERO
   ========================================== */

.hero {
  padding-top: 68px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
  flex: 1;
}

.hero-content {
  max-width: 560px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest-pale);
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--forest);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--warm-gray);
  margin-bottom: 40px;
  max-width: 480px;
}

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

.hero-note {
  font-size: 0.8rem;
  color: var(--light-gray);
  margin-top: 16px;
}

.hero-visual {
  position: relative;
}

.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

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

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--forest-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.hero-badge-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
}

.hero-badge-text span {
  font-size: 0.78rem;
  color: var(--warm-gray);
}

/* ==========================================
   FOR WHOM
   ========================================== */

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

.for-whom h2 {
  color: var(--white);
  margin-bottom: 8px;
}

.for-whom .section-header {
  max-width: 560px;
  margin-bottom: 56px;
}

.for-whom .section-header p {
  color: var(--light-gray);
  margin-top: 12px;
  font-size: 1.05rem;
}

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

.audience-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px;
  transition: background 0.2s;
}

.audience-card:hover {
  background: rgba(255,255,255,0.1);
}

.audience-icon {
  width: 48px;
  height: 48px;
  background: var(--forest-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.audience-card h3 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.audience-card p {
  color: var(--light-gray);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ==========================================
   WHAT YOU'LL LEARN
   ========================================== */

.curriculum {
  background: var(--cream);
}

.curriculum-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.curriculum-content {}

.curriculum-content h2 {
  margin-bottom: 16px;
}

.curriculum-content > p {
  color: var(--warm-gray);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.module-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.module-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  cursor: default;
  transition: background 0.2s;
}

.module-item:hover {
  background: var(--cream-dark);
}

.module-num {
  width: 32px;
  height: 32px;
  background: var(--forest);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.module-text h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.module-text p {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.55;
}

.curriculum-visual {
  position: sticky;
  top: 100px;
}

.curriculum-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.skill-chip {
  background: var(--forest-pale);
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 50px;
  text-align: center;
}

/* ==========================================
   FORMAT
   ========================================== */

.format {
  background: var(--cream-dark);
}

.format h2 {
  text-align: center;
  margin-bottom: 12px;
}

.format > .container > .section-label {
  display: block;
  text-align: center;
}

.format-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: var(--warm-gray);
  max-width: 520px;
  margin: 0 auto 56px;
}

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

.format-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.format-card-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.format-card h3 {
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-sans);
  color: var(--charcoal);
  margin-bottom: 8px;
}

.format-card p {
  font-size: 0.87rem;
  color: var(--warm-gray);
  line-height: 1.55;
}

/* ==========================================
   PORTFOLIO / EXAMPLES
   ========================================== */

.portfolio {
  background: var(--cream);
}

.portfolio-header {
  text-align: center;
  margin-bottom: 56px;
}

.portfolio-header h2 {
  margin-bottom: 12px;
}

.portfolio-header p {
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
}

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

.portfolio-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.portfolio-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.portfolio-item-caption {
  background: var(--white);
  padding: 16px 20px;
}

.portfolio-item-caption strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.portfolio-item-caption span {
  font-size: 0.8rem;
  color: var(--warm-gray);
}

/* ==========================================
   MENTOR
   ========================================== */

.mentor {
  background: var(--forest);
  overflow: hidden;
}

.mentor-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 72px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}

.mentor-img-wrap {
  width: 320px;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.mentor-img-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.mentor-content .section-label {
  color: rgba(255,255,255,0.6);
}

.mentor-content h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.mentor-content h3 {
  color: var(--sand);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.mentor-bio {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.mentor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mentor-tag {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
}

/* ==========================================
   PRICING
   ========================================== */

.pricing {
  background: var(--cream-dark);
}

.pricing-header {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-header h2 { margin-bottom: 12px; }

.pricing-header p {
  max-width: 460px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.pricing-card {
  max-width: 580px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.pricing-card-top {
  background: var(--forest);
  padding: 36px 40px;
  color: var(--white);
}

.pricing-card-top h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.pricing-card-top p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.pricing-card-body {
  padding: 36px 40px;
}

.pricing-includes {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-includes li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.pricing-includes li::before {
  content: '✓';
  color: var(--forest);
  font-weight: 700;
  margin-top: 1px;
  flex-shrink: 0;
}

.pricing-cta-note {
  font-size: 0.82rem;
  color: var(--warm-gray);
  text-align: center;
  margin-top: 16px;
}

/* ==========================================
   FAQ
   ========================================== */

.faq {
  background: var(--cream);
}

.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-header h2 { margin-bottom: 8px; }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.faq-item:first-child {
  border-top: 1px solid var(--cream-dark);
}

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

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

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--charcoal);
  transition: background 0.2s, transform 0.25s;
}

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

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

.faq-answer-inner {
  padding-bottom: 24px;
  color: var(--warm-gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==========================================
   LEAD FORM
   ========================================== */

.lead-form {
  background: var(--cream-dark);
}

.lead-form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}

.lead-form-content h2 {
  margin-bottom: 16px;
}

.lead-form-content p {
  font-size: 1.05rem;
  margin-bottom: 0;
}

.lead-form-content .form-trust {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--warm-gray);
}

.trust-item::before {
  content: '✓';
  color: var(--forest);
  font-weight: 700;
  flex-shrink: 0;
}

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

.form-card h3 {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus {
  border-color: var(--forest);
  background: var(--white);
}

.form-group input::placeholder {
  color: var(--light-gray);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 20px 0 24px;
}

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

.form-consent label {
  font-size: 0.8rem;
  color: var(--warm-gray);
  line-height: 1.5;
}

.form-consent label a {
  color: var(--forest);
  text-decoration: underline;
}

.form-submit {
  width: 100%;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
  background: var(--charcoal);
  padding: 56px 24px 36px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

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

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

.footer-brand p {
  font-size: 0.88rem;
  color: var(--light-gray);
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--light-gray);
  padding: 5px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

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

.footer-legal {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}

.footer-legal a {
  color: rgba(255,255,255,0.4);
  text-decoration: underline;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--white);
}

/* ==========================================
   COOKIE BANNER
   ========================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--cream-dark);
  box-shadow: 0 -8px 32px rgba(28,28,26,0.12);
  z-index: 999;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(0);
  transition: transform 0.35s ease;
}

.cookie-banner.hidden {
  transform: translateY(120%);
}

.cookie-text {
  flex: 1;
  min-width: 280px;
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.55;
}

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

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ==========================================
   SUCCESS PAGE
   ========================================== */

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

.success-card {
  text-align: center;
  max-width: 520px;
}

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

.success-card h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 16px;
}

.success-card p {
  font-size: 1.05rem;
  margin-bottom: 32px;
}

/* ==========================================
   LEGAL PAGES
   ========================================== */

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

.legal-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 12px;
}

.legal-page .legal-meta {
  font-size: 0.85rem;
  color: var(--light-gray);
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: 1.3rem;
  font-family: var(--font-sans);
  font-weight: 700;
  margin: 36px 0 12px;
  color: var(--charcoal);
}

.legal-page p {
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.75;
}

.legal-page ul {
  margin: 0 0 16px 24px;
  color: var(--warm-gray);
  font-size: 0.95rem;
  line-height: 1.75;
}

.legal-page li {
  margin-bottom: 6px;
}

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 960px) {
  :root {
    --section-pad: 72px 24px;
  }

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

  .nav-burger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 60px;
  }

  .hero-content {
    max-width: 100%;
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .hero-badge {
    bottom: -16px;
    left: 16px;
  }

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

  .curriculum-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .curriculum-visual {
    position: static;
    order: -1;
  }

  .curriculum-visual img {
    aspect-ratio: 4/3;
  }

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

  .portfolio-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .mentor-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mentor-img-wrap {
    width: 100%;
    max-width: 360px;
  }

  .lead-form-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

@media (max-width: 600px) {
  :root {
    --section-pad: 56px 16px;
  }

  .container {
    padding: 0 16px;
  }

  .hero-inner {
    padding: 48px 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    text-align: center;
  }

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

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

  .form-card {
    padding: 32px 24px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .pricing-card-top, .pricing-card-body {
    padding: 28px 24px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 20px 16px;
  }

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