/* ===========================
   BASKETRA — Global Styles
   =========================== */

:root {
  --cream: #FAF6EE;
  --cream-dark: #F0E6D3;
  --border: #E2D0B8;
  --text: #2C1A0E;
  --text-muted: #7A6352;
  --brown: #6B3D1E;
  --brown-light: #9E6840;
  --terracotta: #C4622A;
  --terracotta-dark: #A84E1F;
  --green: #4A6741;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(44,26,14,0.08);
  --shadow-md: 0 4px 16px rgba(44,26,14,0.10);
  --shadow-lg: 0 8px 32px rgba(44,26,14,0.13);
  --radius: 10px;
  --radius-lg: 18px;
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --max-width: 1140px;
  --section-pad: 88px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

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); }

p { color: var(--text-muted); line-height: 1.7; }

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

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

.section--alt {
  background-color: var(--cream-dark);
}

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

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

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

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

.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s ease;
  border: 2px solid transparent;
  text-align: center;
}

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

.btn-primary:hover {
  background-color: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196,98,42,0.32);
}

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

.btn-outline:hover {
  border-color: var(--brown-light);
  color: var(--brown);
  background-color: var(--cream-dark);
}

/* ===========================
   HEADER / NAV
   =========================== */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background-color: rgba(250,246,238,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}

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

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

.header__logo {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: -0.01em;
}

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

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

.header__nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.header__nav a:hover {
  color: var(--brown);
}

.header__cta {
  font-size: 0.9rem !important;
  padding: 10px 24px !important;
}

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

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

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 20px 24px 28px;
}

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

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

.mobile-nav a:last-child {
  border: none;
  margin-top: 8px;
}

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

.hero {
  padding-top: 120px;
  padding-bottom: 72px;
  background-color: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background-color: var(--cream-dark);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(196,98,42,0.1);
  color: var(--terracotta);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 22px;
}

.hero__title {
  margin-bottom: 22px;
}

.hero__title em {
  font-style: normal;
  color: var(--terracotta);
}

.hero__desc {
  font-size: 1.08rem;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

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

.hero__meta-item strong {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  color: var(--brown);
  line-height: 1;
}

.hero__meta-item span {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 3px;
}

.hero__image-wrap {
  position: relative;
}

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

.hero__image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__image-badge-icon {
  width: 36px;
  height: 36px;
  background: rgba(196,98,42,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.hero__image-badge-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
}

.hero__image-badge-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

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

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

.audience__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.audience__icon {
  width: 48px;
  height: 48px;
  background: var(--cream-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.audience__card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

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

.format__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: center;
}

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

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

.format__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.format__item-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 2px;
}

.format__item-text h4 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.format__item-text p {
  font-size: 0.9rem;
}

/* ===========================
   OUTCOMES
   =========================== */

.outcomes__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 0;
}

.outcome__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 24px;
  border: 1px solid var(--border);
}

.outcome__check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  margin-top: 1px;
}

.outcome__item p {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

/* ===========================
   PROCESS
   =========================== */

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.process__step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.process__step-num {
  width: 64px;
  height: 64px;
  background: var(--white);
  border: 3px solid var(--terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--terracotta);
  margin: 0 auto 20px;
}

.process__step h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.process__step p {
  font-size: 0.88rem;
}

/* ===========================
   INSTRUCTOR
   =========================== */

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

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

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

.instructor__name {
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.instructor__title {
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.instructor__bio {
  margin-bottom: 28px;
  font-size: 1rem;
}

.instructor__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.instructor__fact {
  background: var(--cream-dark);
  border-radius: var(--radius);
  padding: 12px 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.instructor__fact strong {
  color: var(--brown);
  display: block;
  font-size: 1.1rem;
  margin-bottom: 2px;
}

/* ===========================
   MATERIALS
   =========================== */

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

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

.materials__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.97rem;
  color: var(--text);
}

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

.materials__note {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: var(--cream-dark);
  border-left: 3px solid var(--terracotta);
  padding: 14px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

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

/* ===========================
   RESULTS / EXAMPLES
   =========================== */

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

.results__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.results__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

.results__card-body {
  padding: 18px 20px;
}

.results__card-body h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.results__card-body p {
  font-size: 0.86rem;
}

/* ===========================
   TESTIMONIALS
   =========================== */

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

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

.testimonial__quote {
  font-size: 2.4rem;
  color: var(--border);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 12px;
}

.testimonial__text {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.65;
}

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

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

.testimonial__author-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
}

.testimonial__author-city {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq__item {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 28px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.15s;
}

.faq__question:hover {
  background: var(--cream);
}

.faq__question.open {
  color: var(--terracotta);
  background: var(--cream);
}

.faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.25s;
}

.faq__question.open .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  display: none;
  padding: 0 28px 22px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq__answer.open {
  display: block;
}

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

.leadform {
  background: var(--brown);
  color: var(--white);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.leadform::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(196,98,42,0.15);
  border-radius: 50%;
}

.leadform::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 380px; height: 380px;
  background: rgba(250,246,238,0.05);
  border-radius: 50%;
}

.leadform__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.leadform__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}

.leadform__title {
  color: var(--white);
  margin-bottom: 16px;
}

.leadform__desc {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  margin-bottom: 28px;
}

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

.leadform__perks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.94rem;
}

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

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

.form-card h3 {
  margin-bottom: 24px;
  font-size: 1.25rem;
  color: var(--text);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(196,98,42,0.12);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-privacy {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.5;
}

.form-privacy a {
  color: var(--text-muted);
  text-decoration: underline;
}

.btn-form {
  width: 100%;
  padding: 15px 24px;
  font-size: 1rem;
  margin-top: 4px;
}

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

.footer {
  background-color: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

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

.footer__tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer__company {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

.footer__col-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

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

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

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

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 0.82rem;
}

.footer__legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__legal-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

.footer__legal-links a:hover {
  color: rgba(255,255,255,0.75);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 2px solid var(--border);
  padding: 20px 24px;
  box-shadow: 0 -4px 20px rgba(44,26,14,0.10);
  display: none;
  animation: slideUp 0.3s ease;
}

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

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

.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
  min-width: 260px;
}

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

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-accept {
  padding: 10px 22px;
  font-size: 0.9rem;
}

.cookie-decline {
  padding: 10px 18px;
  font-size: 0.9rem;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--text-muted);
  font-family: var(--font-body);
  transition: border-color 0.2s;
}

.cookie-decline:hover {
  border-color: var(--brown-light);
  color: var(--brown);
}

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

.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: 88px;
  height: 88px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--white);
  margin: 0 auto 28px;
}

.success-title {
  margin-bottom: 16px;
}

.success-text {
  font-size: 1.08rem;
  max-width: 500px;
  margin: 0 auto 36px;
}

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

.legal-hero {
  padding: 100px 0 48px;
  background: var(--cream-dark);
  border-bottom: 1px solid var(--border);
}

.legal-content {
  padding: 60px 0 80px;
}

.legal-content .container {
  max-width: 780px;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 14px;
}

.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-content p {
  margin-bottom: 14px;
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--text);
}

.legal-content ul {
  margin: 12px 0 16px 24px;
}

.legal-content ul li {
  margin-bottom: 8px;
  font-size: 0.97rem;
  color: var(--text);
}

.legal-content .legal-meta {
  font-size: 0.84rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 40px;
}

/* ===========================
   UTILITY
   =========================== */

.text-center { text-align: center; }

.mt-0 { margin-top: 0; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

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

@media (max-width: 1024px) {
  :root { --section-pad: 68px; }

  .hero__inner { gap: 40px; }
  .instructor__grid { grid-template-columns: 300px 1fr; gap: 40px; }
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process__steps::before { display: none; }
  .results__grid { grid-template-columns: repeat(2, 1fr); }
  .audience__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 52px; }

  .header__nav { display: none; }
  .hamburger { display: flex; }

  .hero { padding-top: 100px; }
  .hero::before { display: none; }
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__image-badge { left: 10px; bottom: -16px; }

  .format__grid { grid-template-columns: 1fr; }
  .format__image { order: -1; }

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

  .instructor__grid { grid-template-columns: 1fr; }
  .instructor__image { max-width: 320px; margin: 0 auto; }

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

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

  .testimonials__grid { grid-template-columns: 1fr; }
  .results__grid { grid-template-columns: 1fr; }

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

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

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

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

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__meta { gap: 18px; }
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
  .results__grid { grid-template-columns: 1fr; }
}
