/* ============================================
   RundTisch Akademie — wise-sky-192.css
   Main stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Open+Sans:wght@300;400;600;700&display=swap');

*, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #111;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: #c4161c;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover { color: #e02020; }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(196,22,28,0.3);
}

.header-top {
  background-color: rgba(0,0,0,0.6);
  padding: 6px 0;
  font-size: 13px;
}

.header-top .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.header-top a {
  color: #fff;
  font-size: 13px;
}
.header-top a:hover { color: #c4161c; }

.header-top i { font-size: 12px; margin-right: 5px; color: #c4161c; }

.header-main {
  padding: 14px 0;
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo svg { width: 48px; height: 48px; flex-shrink: 0; }

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}

.logo-text .brand-sub {
  font-size: 11px;
  color: #c4161c;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  line-height: 1.2;
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  align-items: center;
}

nav.main-nav ul li a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  padding: 6px 12px;
  letter-spacing: 0.05em;
  position: relative;
}

nav.main-nav ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  background: #c4161c;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}

nav.main-nav ul li a:hover,
nav.main-nav ul li.active a {
  color: #c4161c;
}

nav.main-nav ul li a:hover:after,
nav.main-nav ul li.active a:after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.nav-cta-btn {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  font-size: 17px !important;
  background: #c4161c !important;
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 3px;
}
.nav-cta-btn:hover { background: #781115 !important; color: #fff !important; }
.nav-cta-btn:after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   HERO
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 90px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #111;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px;
}

.hero-content h1 {
  font-size: clamp(52px, 8vw, 110px);
  color: #fff;
  margin-bottom: 18px;
  line-height: 0.95;
}

.hero-content h1 span { color: #c4161c; }

.hero-content p {
  font-size: clamp(16px, 2.2vw, 22px);
  color: rgba(255,255,255,0.88);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.6;
  font-weight: 300;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-block;
  background: #c4161c;
  color: #fff !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 13px 36px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.btn-primary:hover { background: #781115; color: #fff !important; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 34px;
  border-radius: 3px;
  border: 2px solid #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-outline:hover { background: #fff; color: #111 !important; }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: #1a1a1a;
  padding: 32px 0;
  text-align: center;
  border-top: 3px solid #c4161c;
}

.cta-band p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section-dark {
  background: #111;
  padding: 90px 0;
}

.section-dark-alt {
  background: #1a1a1a;
  padding: 90px 0;
}

.section-light {
  background: #fff;
  padding: 90px 0;
  color: #111;
}

.section-light h2,
.section-light h3,
.section-light h4 { color: #111; }

.section-light p { color: #333; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 14px;
}

.section-header p {
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
  line-height: 1.65;
}

/* ============================================
   INTRO PARAGRAPH SECTION
   ============================================ */
.intro-section {
  background: #111;
  padding: 80px 0;
  text-align: center;
}

.intro-section p {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
  color: rgba(255,255,255,0.9);
  max-width: 780px;
  margin: 0 auto 20px;
}

.intro-section p:last-child { margin-bottom: 0; }

/* ============================================
   COURSES / PRICE CARDS
   ============================================ */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 16px;
}

.course-card {
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid #333;
  padding: 36px 28px;
  -webkit-transition: border-top-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: border-top-color 0.3s ease, transform 0.3s ease;
}

.course-card:hover {
  border-top-color: #c4161c;
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}

.course-card.featured {
  border-top-color: #c4161c;
  background: #1e1e1e;
  position: relative;
}

.course-card .badge {
  display: inline-block;
  background: #c4161c;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.course-card h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #fff;
}

.course-card .price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: #c4161c;
  line-height: 1;
  margin-bottom: 6px;
}

.course-card .price span {
  font-size: 20px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

.course-card .duration {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.course-card ul {
  list-style: none;
  margin-bottom: 28px;
}

.course-card ul li {
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
  color: rgba(255,255,255,0.78);
}

.course-card ul li i {
  color: #c4161c;
  margin-right: 8px;
  font-size: 12px;
}

/* ============================================
   PROCESS STEPS (3 circles)
   ============================================ */
.process-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.process-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.circle-disc {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #4d4d4d;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.circle-disc:hover { background: #c4161c; }

.circle-disc i {
  font-size: 52px;
  color: #fff;
}

.process-circle:first-child .circle-disc { background: #c4161c; }

.process-circle h3 {
  font-size: 26px;
  color: #111;
  margin-bottom: 10px;
}

.process-circle p {
  font-size: 15px;
  color: #444;
  line-height: 1.65;
}

/* ============================================
   IMAGE + TEXT SPLIT
   ============================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.split-section .split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-section .split-text {
  background: #1a1a1a;
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-section .split-text h2 {
  font-size: clamp(32px, 4vw, 52px);
  color: #fff;
  margin-bottom: 20px;
}

.split-section .split-text p {
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: #f8f8f8;
  padding: 32px 28px;
  border-left: 4px solid #c4161c;
  position: relative;
}

.testimonial-card .stars {
  color: #c4161c;
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card .author {
  font-weight: 700;
  font-size: 14px;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.testimonial-card .author-role {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   OPTIN / CONTACT FORM SECTION
   ============================================ */
.optin-section {
  background: #1a1a1a;
  background-image: url('../gallery/training-room.webp');
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  padding: 90px 0;
}

.optin-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.optin-title {
  font-size: clamp(42px, 7vw, 100px);
  color: #c4161c !important;
  line-height: 0.95;
  margin-bottom: 10px;
}

.optin-subtitle {
  font-size: clamp(26px, 4vw, 44px);
  color: #fff;
  text-transform: uppercase;
  line-height: 1.1;
}

.optin-form {
  background: rgba(0,0,0,0.5);
  padding: 40px;
  border-radius: 2px;
}

.optin-form h3 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 3px;
  color: #fff;
  padding: 11px 14px;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #c4161c;
}

.form-group textarea { min-height: 100px; resize: vertical; }

.form-group input::-webkit-input-placeholder { color: rgba(255,255,255,0.4); }
.form-group input::-moz-placeholder { color: rgba(255,255,255,0.4); }
.form-group input:-ms-input-placeholder { color: rgba(255,255,255,0.4); }

.form-note {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
  line-height: 1.5;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #0a0a0a;
  padding: 60px 0 0;
  border-top: 3px solid #c4161c;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-col h4 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col p,
.footer-col address {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  font-style: normal;
}

.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
}

.footer-col a:hover { color: #c4161c; }

.footer-col a i {
  color: #c4161c;
  margin-right: 8px;
  font-size: 13px;
  width: 16px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: #1e1e1e;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6) !important;
  font-size: 15px;
  margin-bottom: 0;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.footer-social a:hover { background: #c4161c; color: #fff !important; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a:hover { color: #c4161c; }

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ============================================
   GDPR COOKIE BAR
   ============================================ */
#cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0d0d0d;
  border-top: 2px solid #c4161c;
  padding: 18px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  -webkit-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
}

#cookie-bar.visible {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

#cookie-bar p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  flex: 1;
  margin: 0;
}

#cookie-bar p a {
  color: #c4161c;
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-accept {
  background: #c4161c;
  color: #fff;
  border: none;
  padding: 9px 22px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border-radius: 2px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.cookie-accept:hover { background: #781115; }

.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 9px 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cookie-decline:hover { border-color: #fff; color: #fff; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: #1a1a1a;
  padding: 140px 0 70px;
  text-align: center;
  border-bottom: 2px solid rgba(196,22,28,0.4);
}

.page-hero h1 {
  font-size: clamp(42px, 6vw, 80px);
  color: #fff;
  margin-bottom: 14px;
}

.page-hero h1 span { color: #c4161c; }

.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ============================================
   SERVICE PAGE CONTENT
   ============================================ */
.content-section {
  padding: 80px 0;
}

.content-section.light { background: #fff; color: #111; }
.content-section.dark { background: #111; color: #fff; }
.content-section.dark-alt { background: #1a1a1a; color: #fff; }

.prose h2 {
  font-size: clamp(28px, 4vw, 46px);
  margin-bottom: 16px;
  margin-top: 40px;
}

.prose h2:first-child { margin-top: 0; }

.prose p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.prose ul {
  margin: 16px 0 20px 20px;
}

.prose ul li {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 8px;
}

.prose ul li::marker { color: #c4161c; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 16px;
}

.team-card {
  text-align: center;
}

.team-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  margin-bottom: 18px;
  filter: grayscale(20%);
}

.team-card h3 {
  font-size: 24px;
  margin-bottom: 4px;
  color: #fff;
}

.team-card p {
  font-size: 13px;
  color: #c4161c;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-info-item .icon-wrap {
  width: 42px;
  height: 42px;
  background: rgba(196,22,28,0.15);
  border: 1px solid rgba(196,22,28,0.4);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item .icon-wrap i {
  color: #c4161c;
  font-size: 16px;
}

.contact-info-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin: 0;
}

.contact-info-item strong {
  display: block;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.contact-form-wrap {
  background: #1a1a1a;
  padding: 44px;
  border-top: 3px solid #c4161c;
}

.contact-form-wrap h3 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 26px;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}

.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }

.faq-question {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0;
}

.faq-question i {
  color: #c4161c;
  font-size: 14px;
  flex-shrink: 0;
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}

.faq-item.open .faq-question i {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding-top: 14px;
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
}

.faq-item.open .faq-answer { display: block; }

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.text-red { color: #c4161c !important; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

.divider {
  width: 60px;
  height: 3px;
  background: #c4161c;
  margin: 0 auto 28px;
}

.divider-left {
  width: 60px;
  height: 3px;
  background: #c4161c;
  margin: 0 0 28px;
}

/* ============================================
   ALERT / SUCCESS
   ============================================ */
.alert-success {
  background: rgba(196,22,28,0.1);
  border: 1px solid #c4161c;
  color: #fff;
  padding: 16px 20px;
  font-size: 15px;
  border-radius: 2px;
  margin-top: 16px;
  display: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media screen and (max-width: 980px) {
  .process-row { grid-template-columns: 1fr 1fr; }
  .split-section { grid-template-columns: 1fr; }
  .split-section .split-image { min-height: 300px; }
  .optin-grid { grid-template-columns: 1fr; gap: 36px; }
  .optin-title { font-size: 60px !important; }
  .optin-subtitle { font-size: 30px !important; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media screen and (max-width: 768px) {
  .hamburger { display: flex; }
  nav.main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.97);
    padding: 20px 0;
    border-top: 1px solid rgba(196,22,28,0.3);
  }
  nav.main-nav.open { display: block; }
  nav.main-nav ul {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
  nav.main-nav ul li a {
    display: block;
    padding: 12px 24px;
    font-size: 22px;
  }
  nav.main-nav ul li a:after { display: none; }
  .courses-grid { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form-wrap { padding: 28px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .split-section .split-text { padding: 40px 28px; }
  #cookie-bar { flex-direction: column; gap: 14px; }
}

@media screen and (max-width: 480px) {
  .hero-content h1 { font-size: 48px; }
  .page-hero { padding: 120px 0 50px; }
}
