/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --clay: #a0522d;
  --clay-light: #c9874f;
  --clay-pale: #f5ede4;
  --sage: #7b9e7d;
  --sage-dark: #5a7a5c;
  --sage-pale: #eef4ee;
  --earth: #4a3728;
  --cream: #faf6f1;
  --warm-white: #fffef9;
  --text: #2d2420;
  --text-muted: #6b5a52;
  --border: #e8ddd5;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 2px 16px rgba(74,55,40,0.09);
  --shadow-lg: 0 8px 36px rgba(74,55,40,0.14);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', serif;
  background: var(--warm-white);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Georgia', serif;
  color: var(--earth);
  line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.section-label {
  display: inline-block;
  font-family: sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 14px;
}

.section-title {
  margin-bottom: 18px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 680px;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 50px;
  font-family: sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--clay);
  color: #fff;
  box-shadow: 0 4px 18px rgba(160,82,45,0.35);
}

.btn-primary:hover {
  background: var(--clay-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(160,82,45,0.45);
}

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

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

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,254,249,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Georgia', serif;
  font-size: 1.45rem;
  font-weight: normal;
  color: var(--earth);
}

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

.nav {
  display: flex;
  gap: 28px;
  font-family: sans-serif;
  font-size: 0.92rem;
}

.nav a {
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.header-cta { flex-shrink: 0; }

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

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--earth);
  border-radius: 2px;
  transition: var(--transition);
}

/* === HERO === */
.hero {
  padding: 80px 0 0;
  background: var(--cream);
  overflow: hidden;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sage-pale);
  color: var(--sage-dark);
  border: 1px solid #c4dbc5;
  border-radius: 30px;
  padding: 6px 16px;
  font-family: sans-serif;
  font-size: 0.83rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--sage);
  border-radius: 50%;
}

.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--clay); }

.hero-desc {
  color: var(--text-muted);
  font-size: 1.08rem;
  margin-bottom: 36px;
  max-width: 480px;
}

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

.hero-link {
  font-family: sans-serif;
  font-size: 0.9rem;
  color: var(--clay);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.hero-link:hover { color: var(--clay-light); }

.hero-trust {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-num {
  font-size: 1.6rem;
  font-family: 'Georgia', serif;
  color: var(--clay);
  font-weight: normal;
}

.trust-label {
  font-family: sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.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-float {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: sans-serif;
  font-size: 0.85rem;
}

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

.hero-float strong { display: block; color: var(--earth); font-size: 0.92rem; }
.hero-float span { color: var(--text-muted); font-size: 0.78rem; }

/* === SECTION BASE === */
section { padding: 88px 0; }

/* === FOR WHOM === */
.for-whom { background: var(--cream); }

.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

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

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

.whom-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.whom-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--earth);
}

.whom-card p {
  font-family: sans-serif;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === PROCESS === */
.process { background: #fff; }

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

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}

.process-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--clay-pale);
  color: var(--clay);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Georgia', serif;
  font-size: 1.05rem;
}

.step-body h4 {
  font-size: 1rem;
  color: var(--earth);
  margin-bottom: 4px;
}

.step-body p {
  font-family: sans-serif;
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.process-visual img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 380px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* === RESULTS === */
.results { background: var(--sage-pale); }

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

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

.results-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.results-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: sans-serif;
  font-size: 0.95rem;
  color: var(--text);
}

.results-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--sage);
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  margin-top: 1px;
}

.results-visual img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* === GALLERY === */
.gallery { background: #fff; }

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

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

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

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

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

/* === MATERIALS === */
.materials { background: var(--clay-pale); }

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

.materials-img img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 360px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

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

.mat-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.mat-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.mat-item h4 {
  font-size: 1rem;
  margin-bottom: 2px;
  color: var(--earth);
}

.mat-item p {
  font-family: sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.materials-note {
  margin-top: 28px;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  border-left: 3px solid var(--clay);
  font-family: sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* === INSTRUCTOR === */
.instructor { background: #fff; }

.instructor-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}

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

.instructor-details h2 { margin-bottom: 6px; }

.instructor-role {
  font-family: sans-serif;
  font-size: 0.9rem;
  color: var(--clay);
  font-weight: 600;
  margin-bottom: 24px;
}

.instructor-text {
  font-family: sans-serif;
  font-size: 0.96rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.75;
}

.instructor-stats {
  display: flex;
  gap: 36px;
  margin-bottom: 32px;
}

.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Georgia', serif;
  font-size: 2rem;
  color: var(--clay);
}
.stat-label {
  font-family: sans-serif;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* === FAQ === */
.faq { background: var(--cream); }

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

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-family: sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--earth);
  gap: 16px;
  user-select: none;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--clay-pale); }

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--clay-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--clay);
  font-weight: bold;
  transition: transform var(--transition);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

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

.faq-answer p {
  padding: 0 24px 20px;
  font-family: sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

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

/* === OFFER === */
.offer { background: var(--sage-pale); }

.offer-card {
  max-width: 740px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.offer-badge {
  display: inline-block;
  background: var(--clay-pale);
  color: var(--clay);
  border-radius: 30px;
  padding: 6px 18px;
  font-family: sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.offer-card h2 { margin-bottom: 16px; }

.offer-desc {
  font-family: sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.offer-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 40px;
  text-align: left;
}

.offer-include-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: sans-serif;
  font-size: 0.88rem;
  color: var(--text);
}

.offer-include-item::before {
  content: '→';
  color: var(--clay);
  font-weight: bold;
  flex-shrink: 0;
}

.offer-price-block {
  margin-bottom: 32px;
}

.offer-price-old {
  font-family: sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.offer-price {
  font-family: 'Georgia', serif;
  font-size: 2.8rem;
  color: var(--clay);
}

.offer-price-note {
  font-family: sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.offer-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.offer-guarantee {
  font-family: sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* === LEAD FORM === */
.lead-form-section { background: var(--earth); }

.lead-form-section .section-label { color: var(--clay-light); }

.lead-form-section h2 { color: #fff; }

.lead-form-section .section-subtitle { color: rgba(255,255,255,0.65); }

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

.form-wrapper {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  margin-top: 40px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-family: sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--earth);
}

.form-group input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--warm-white);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus { border-color: var(--clay); }
.form-group input::placeholder { color: #b5a89f; }

.form-consent {
  font-family: sans-serif;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

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

.form-submit { width: 100%; padding: 16px; font-size: 1.02rem; }

.lead-form-promise {
  padding-top: 40px;
}

.promise-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.promise-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.promise-item h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 4px;
}

.promise-item p {
  font-family: sans-serif;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* === FOOTER === */
.site-footer {
  background: #1e1410;
  color: rgba(255,255,255,0.55);
  padding: 56px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .logo { color: rgba(255,255,255,0.85); margin-bottom: 12px; }
.footer-brand .logo span { color: var(--clay-light); }

.footer-brand p {
  font-family: sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
  line-height: 1.6;
}

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

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul a {
  font-family: sans-serif;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

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

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}

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

.footer-company {
  font-family: sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.8;
}

.footer-legal {
  font-family: sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  border-top: 2px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  font-family: sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex: 1;
  min-width: 240px;
}

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

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

.cookie-decline {
  font-family: sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 4px;
}

.btn-cookie {
  padding: 10px 22px;
  font-size: 0.88rem;
}

/* === LEGAL PAGES === */
.legal-page { min-height: 100vh; }

.legal-header {
  background: var(--cream);
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border);
}

.legal-header h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 10px;
}

.legal-header p {
  font-family: sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.legal-header a {
  color: var(--clay);
  text-decoration: underline;
}

.legal-content {
  padding: 56px 0 80px;
  max-width: 780px;
}

.legal-content h2 {
  font-size: 1.2rem;
  margin: 36px 0 12px;
  color: var(--earth);
}

.legal-content p {
  font-family: sans-serif;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 20px;
  font-family: sans-serif;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

/* === SUCCESS PAGE === */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  padding: 40px 24px;
}

.success-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  max-width: 560px;
  box-shadow: var(--shadow-lg);
}

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

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

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

/* === MOBILE NAV OVERLAY === */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--warm-white);
  flex-direction: column;
  padding: 24px;
}

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

.mobile-nav-close {
  align-self: flex-end;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--earth);
  margin-bottom: 32px;
}

.mobile-nav a {
  font-family: sans-serif;
  font-size: 1.3rem;
  color: var(--earth);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.mobile-nav a:hover { color: var(--clay); }

.mobile-nav .btn { margin-top: 24px; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; }
  .hero-float { display: none; }
  .hero-trust { gap: 20px; }

  .process-inner,
  .results-inner,
  .materials-grid,
  .instructor-inner { grid-template-columns: 1fr; }

  .instructor-photo img { max-height: 380px; }

  .lead-form-inner { grid-template-columns: 1fr; }
  .lead-form-promise { padding-top: 0; }

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

  .offer-includes { grid-template-columns: 1fr; }

  .nav { display: none; }
  .header-cta { display: none; }
  .burger { display: flex; }
}

@media (max-width: 600px) {
  section { padding: 60px 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-trust { flex-wrap: wrap; gap: 14px; }
  .offer-card { padding: 36px 24px; }
  .instructor-stats { gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .form-wrapper { padding: 28px 20px; }
}

@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up { opacity: 0; }
.fade-up.animated { animation: fadeUp 0.6s ease forwards; }

.fade-up:nth-child(2).animated { animation-delay: 0.1s; }
.fade-up:nth-child(3).animated { animation-delay: 0.2s; }
.fade-up:nth-child(4).animated { animation-delay: 0.3s; }
