:root {
  --plum:        #3C1A34;
  --plum-mid:    #6A2F5B;
  --rose:        #9B4A82;
  --gold:        #C49A3C;
  --gold-light:  #E0BA6A;
  --cream:       #FAF4EE;
  --ivory:       #F2EBE0;
  --blush:       #F0E4EC;
  --charcoal:    #2A2420;
  --text:        #3A2E28;
  --muted:       #7A6860;
  --border:      #E4D8CE;
  --white:       #FFFFFF;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;
  --radius:      8px;
  --radius-lg:   16px;
  --transition:  0.25s ease;
  --max-w:       1200px;
  --section-pad: 80px 20px;
}

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

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

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

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--plum);
  font-weight: 700;
}

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

p {
  color: var(--gold);
  font-size: 1rem;
  line-height: 1.7;
}

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

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

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--plum);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196, 154, 60, 0.35);
}

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

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-1px);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 18px 0;
}

.nav.scrolled {
  background: var(--plum);
  box-shadow: 0 2px 20px rgba(60, 26, 52, 0.3);
  padding: 12px 0;
}

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

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

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

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

.nav-cta {
  background: var(--gold);
  color: var(--plum);
  padding: 9px 22px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  transition: background var(--transition);
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--plum) !important;
}

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

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--plum);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.png');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.25;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(60,26,52,0.92) 40%, rgba(60,26,52,0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px 20px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,154,60,0.15);
  border: 1px solid rgba(196,154,60,0.4);
  padding: 6px 16px;
  border-radius: 40px;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}

.hero h1 {
  color: var(--white);
  max-width: 680px;
  margin-bottom: 20px;
}

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

.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.65;
}

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

.hero-note {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  margin-top: 18px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

.problems {
  background: var(--ivory);
  padding: var(--section-pad);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.problem-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border-left: 3px solid var(--rose);
  box-shadow: 0 2px 12px rgba(60,26,52,0.06);
}

.problem-card h3 {
  font-size: 1rem;
  color: var(--plum);
  margin-bottom: 8px;
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

.solution-banner {
  margin-top: 48px;
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.solution-banner-text h3 {
  color: var(--white);
  margin-bottom: 10px;
}

.solution-banner-text p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}

.solution-banner .btn-primary {
  white-space: nowrap;
  flex-shrink: 0;
}

.course-details {
  padding: var(--section-pad);
  background: var(--cream);
}

.course-details-header {
  max-width: 640px;
  margin-bottom: 56px;
}

.learn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.learn-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.learn-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.learn-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.learn-item h4 {
  font-size: 0.95rem;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 4px;
}

.learn-item p {
  font-size: 0.88rem;
  color: var(--muted);
}

.course-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(60,26,52,0.18);
  position: relative;
}

.course-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.image-badge p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

.image-badge strong {
  display: block;
  font-size: 0.9rem;
  color: var(--plum);
  font-weight: 600;
  margin-bottom: 2px;
}

.who-for {
  background: var(--plum);
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}

.who-for::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(196,154,60,0.08);
}

.who-for .section-label {
  color: var(--gold-light);
}

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

.who-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.who-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: background var(--transition), transform var(--transition);
}

.who-card:hover {
  background: rgba(255,255,255,0.11);
  transform: translateY(-3px);
}

.who-card-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.who-card h3 {
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 8px;
}

.who-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
}

.process {
  padding: var(--section-pad);
  background: var(--cream);
}

.process-header {
  max-width: 580px;
  margin: 0 auto 60px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--blush), var(--gold), var(--blush));
  z-index: 0;
}

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

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--plum);
  box-shadow: 0 4px 16px rgba(196,154,60,0.2);
}

.step h3 {
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--plum);
}

.step p {
  font-size: 0.87rem;
  color: var(--muted);
}

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

.process-visual img {
  border-radius: var(--radius-lg);
  height: 340px;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(60,26,52,0.14);
}

.process-text h3 {
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.process-text p {
  color: var(--muted);
  margin-bottom: 16px;
}

.process-text ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.process-text ul li {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}

.process-text ul li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.65rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.results {
  background: var(--ivory);
  padding: var(--section-pad);
}

.results-header {
  max-width: 560px;
  margin-bottom: 48px;
}

.results-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(60,26,52,0.16);
  position: relative;
}

.gallery-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.gallery-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-small {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(60,26,52,0.10);
}

.gallery-small img {
  width: 100%;
  height: 192px;
  object-fit: cover;
  display: block;
}

.gallery-caption {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border-left: 3px solid var(--gold);
}

.gallery-caption p {
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.5;
}

.gallery-caption strong {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-size: 0.82rem;
  color: var(--plum);
  font-weight: 600;
}

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

.faq-header {
  max-width: 520px;
  margin: 0 auto 48px;
}

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

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

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

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

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--plum);
  transition: transform var(--transition), background var(--transition);
  line-height: 1;
}

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

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

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.lead-form-section {
  background: linear-gradient(135deg, var(--plum) 0%, #5A2350 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.lead-form-section::before {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(196,154,60,0.1);
}

.lead-form-section::after {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

.lead-form-wrap {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.lead-form-text h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.lead-form-text p {
  color: rgba(255,255,255,0.68);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.lead-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lead-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
}

.lead-benefit::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--plum);
  flex-shrink: 0;
}

.lead-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.lead-form-box h3 {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: var(--plum);
}

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(155,74,130,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #B0A09A;
}

.form-submit {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 700;
}

.form-note {
  text-align: center;
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

.form-note a {
  color: var(--rose);
  text-decoration: underline;
}

.form-error {
  display: none;
  font-size: 0.78rem;
  color: #C0392B;
  margin-top: 4px;
}

.form-group.has-error input,
.form-group.has-error select {
  border-color: #C0392B;
}

.form-group.has-error .form-error {
  display: block;
}

footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.5);
  padding: 60px 20px 30px;
}

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

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

.footer-brand .nav-logo {
  margin-bottom: 12px;
  display: block;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
}

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

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

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

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

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

.footer-legal {
  font-size: 0.78rem;
  line-height: 1.6;
  max-width: 560px;
}

.footer-copy {
  font-size: 0.78rem;
  text-align: right;
  flex-shrink: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--charcoal);
  border-top: 2px solid var(--gold);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.cookie-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 0.87rem;
  flex: 1;
  min-width: 200px;
}

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

.cookie-banner .btn {
  padding: 9px 20px;
  font-size: 0.87rem;
}

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  padding: 40px 20px;
}

.success-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(60,26,52,0.12);
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--plum), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
}

.success-card h1 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.success-card p {
  color: var(--muted);
  margin-bottom: 12px;
}

.success-card .btn-primary {
  margin-top: 24px;
}

.legal-page {
  padding-top: 80px;
}

.legal-hero {
  background: var(--plum);
  padding: 60px 20px;
}

.legal-hero h1 {
  color: var(--white);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
}

.legal-hero p {
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
  font-size: 0.9rem;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 20px;
}

.legal-content h2 {
  font-size: 1.2rem;
  margin: 32px 0 12px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--text);
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 12px;
}

.legal-content a {
  color: var(--rose);
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--plum);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 99;
  }

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

  .nav-links a {
    font-size: 1.3rem;
  }

  .nav-cta-wrap {
    display: none;
  }

  .burger {
    display: flex;
    z-index: 101;
    position: relative;
  }

  .burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.open span:nth-child(2) {
    opacity: 0;
  }

  .burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

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

  .course-image-wrap {
    order: -1;
  }

  .course-image-wrap img {
    height: 280px;
  }

  .process-steps::before {
    display: none;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .process-visual {
    grid-template-columns: 1fr;
  }

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

  .gallery-main img {
    height: 280px;
  }

  .gallery-side {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .gallery-small {
    flex: 1;
    min-width: 140px;
  }

  .gallery-small img {
    height: 160px;
  }

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

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

  .solution-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .hero-content {
    padding: 110px 16px 60px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

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

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

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

  .lead-form-box {
    padding: 28px 20px;
  }

  .success-card {
    padding: 40px 24px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
