/* VerhandlungsKraft — style-assets/vile-sky-346.css */

/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-primary: #ffffff;
  --bg-dark: #0f0f0f;
  --bg-alt: #111318;
  --text-primary: #1a1a1a;
  --text-white: #ffffff;
  --text-muted: rgba(255,255,255,0.7);
  --text-muted-dark: rgba(26,26,26,0.65);
  --accent: #4d65ff;
  --accent-hover: #3a50e0;
  --footer-bg: #0a0a0c;
  --border: rgba(255,255,255,0.1);
  --border-dark: rgba(26,26,26,0.12);
  --radius: 12px;
  --radius-sm: 6px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===================== TYPOGRAPHY ===================== */
.head-hero {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.head-main {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.head-medium {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 600;
  line-height: 1.25;
}

.head-small {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
}

.text-large  { font-size: 1.2rem; line-height: 1.7; }
.text-medium { font-size: 1.05rem; line-height: 1.7; }
.text-regular { font-size: 0.95rem; line-height: 1.65; }
.text-small  { font-size: 0.85rem; line-height: 1.6; }

.white-text  { color: var(--text-white); }
.muted-text  { color: var(--text-muted); }
.muted-dark  { color: var(--text-muted-dark); }
.accent-text { color: var(--accent); }

/* ===================== LAYOUT ===================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container-wide { max-width: 1380px; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.gap-6 { gap: 3rem; }

.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* ===================== SPACERS ===================== */
.spacer-xs  { height: 1rem; }
.spacer-sm  { height: 2rem; }
.spacer-md  { height: 3rem; }
.spacer-lg  { height: 5rem; }
.spacer-xl  { height: 7rem; }
.spacer-xxl { height: 10rem; }

/* ===================== NAVIGATION ===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(10,10,12,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo svg { width: 140px; height: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}
.nav-link:hover, .nav-link.active { color: #fff; }

.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.nav-mobile {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg-dark);
  z-index: 99;
  padding: 6rem 2rem 2rem;
  gap: 2rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
}

/* ===================== HERO ===================== */
.section-hero {
  min-height: 100vh;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../gallery/hero-main.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  transition: opacity 0.5s;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,15,15,0.85) 0%, rgba(77,101,255,0.12) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(77,101,255,0.15);
  border: 1px solid rgba(77,101,255,0.35);
  color: #a0adff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.8rem;
}
.hero-title { color: #fff; margin-bottom: 1.5rem; }
.hero-title span { color: var(--accent); }
.hero-desc {
  color: rgba(255,255,255,0.72);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-primary i { font-size: 0.9rem; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 500;
  transition: border-color var(--transition), background var(--transition);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.06); }

.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
}
.hero-stat-num span { color: var(--accent); }
.hero-stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-top: 0.2rem; }

/* ===================== SECTION BASE ===================== */
.section { padding: 6rem 0; }
.section-dark { background: var(--bg-dark); }
.section-alt  { background: #f7f8fc; }
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
  display: block;
}

/* ===================== INTRO / ABOUT TEASER ===================== */
.intro-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.intro-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.intro-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: var(--accent);
  color: #fff;
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
}
.intro-text .head-main { margin-bottom: 1.2rem; }
.intro-text p { color: var(--text-muted-dark); margin-bottom: 1rem; }

/* ===================== COURSES ===================== */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.course-card {
  background: var(--bg-dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition);
}
.course-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.course-icon {
  width: 48px; height: 48px;
  background: rgba(77,101,255,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--accent);
  font-size: 1.3rem;
}
.course-card h3 { color: #fff; margin-bottom: 0.7rem; font-size: 1.1rem; font-weight: 600; }
.course-card p  { color: rgba(255,255,255,0.6); font-size: 0.93rem; line-height: 1.65; margin-bottom: 1.2rem; }
.course-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.course-meta i { color: var(--accent); }

/* ===================== STATS SECTION ===================== */
.stats-section {
  background: var(--accent);
  padding: 5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.5rem;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.testimonial-card {
  background: #f7f8fc;
  border-radius: var(--radius);
  padding: 2rem;
}
.testimonial-stars { color: #f5a623; margin-bottom: 1rem; font-size: 0.9rem; }
.testimonial-quote {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.92rem; }
.testimonial-role { font-size: 0.82rem; color: var(--text-muted-dark); }

/* ===================== FAQ ===================== */
.faq-list { margin-top: 3rem; max-width: 780px; }
.faq-item {
  border-bottom: 1px solid var(--border-dark);
  padding: 1.5rem 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text-primary);
}
.faq-q i { color: var(--accent); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted-dark);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-top 0.3s ease;
}
.faq-item.open .faq-a { max-height: 300px; padding-top: 1rem; }

/* ===================== CTA BAND ===================== */
.cta-band {
  background: var(--bg-dark);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(77,101,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p  { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 540px; margin: 0 auto 2.5rem; }

/* ===================== FOOTER ===================== */
.footer {
  background: var(--footer-bg);
  padding: 5rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand svg { width: 130px; margin-bottom: 1.2rem; }
.footer-desc {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.7rem;
}
.footer-contact-item i { color: var(--accent); margin-top: 2px; flex-shrink: 0; }
.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.2rem;
}
.footer-link {
  display: block;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.7rem;
  transition: color var(--transition);
}
.footer-link:hover { color: #fff; }
.footer-socials { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.footer-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: border-color var(--transition), color var(--transition);
}
.footer-social:hover { border-color: var(--accent); color: var(--accent); }
.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.85rem; color: rgba(255,255,255,0.35); }
.footer-policy { display: flex; gap: 1.5rem; }
.footer-policy a { font-size: 0.85rem; color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-policy a:hover { color: rgba(255,255,255,0.7); }

/* ===================== CONTACT FORM ===================== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-info { padding-top: 0.5rem; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--text-muted-dark); line-height: 1.7; margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.contact-detail-icon {
  width: 42px; height: 42px;
  background: rgba(77,101,255,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-detail-text .label { font-size: 0.8rem; color: var(--text-muted-dark); margin-bottom: 0.2rem; }
.contact-detail-text .value { font-weight: 600; font-size: 0.95rem; }

.form-wrap {
  background: #f7f8fc;
  border-radius: var(--radius);
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(26,26,26,0.14);
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: #fff;
  transition: border-color var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.form-submit:hover { background: var(--accent-hover); transform: translateY(-1px); }
.form-note { font-size: 0.8rem; color: var(--text-muted-dark); margin-top: 0.8rem; text-align: center; }

/* ===================== ABOUT PAGE ===================== */
.about-hero {
  background: var(--bg-dark);
  padding: 10rem 0 6rem;
  text-align: center;
}
.about-hero .head-hero { color: #fff; margin-bottom: 1rem; }
.about-hero p { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 620px; margin: 0 auto; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.value-card {
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color var(--transition);
}
.value-card:hover { border-color: var(--accent); }
.value-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.8rem;
}
.value-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.6rem; }
.value-card p  { font-size: 0.92rem; color: var(--text-muted-dark); line-height: 1.65; }

/* ===================== TEAM ===================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.team-card { text-align: center; }
.team-photo {
  width: 100%; aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #e8ebff 0%, #c5ccff 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  color: var(--accent);
}
.team-name { font-weight: 600; margin-bottom: 0.3rem; }
.team-role { font-size: 0.88rem; color: var(--text-muted-dark); }

/* ===================== SERVICE / POLICY PAGES ===================== */
.page-hero {
  background: var(--bg-dark);
  padding: 9rem 0 5rem;
}
.page-hero h1 { color: #fff; margin-bottom: 0.8rem; }
.page-hero p  { color: rgba(255,255,255,0.6); font-size: 1.05rem; }

.policy-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 0 6rem;
}
.policy-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 2.5rem 0 0.8rem;
  color: var(--text-primary);
}
.policy-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
}
.policy-content p  { font-size: 0.97rem; line-height: 1.75; color: var(--text-muted-dark); margin-bottom: 0.9rem; }
.policy-content ul { padding-left: 1.2rem; margin-bottom: 1rem; }
.policy-content ul li { font-size: 0.97rem; color: var(--text-muted-dark); line-height: 1.7; list-style: disc; margin-bottom: 0.4rem; }
.policy-content a  { color: var(--accent); }
.policy-date { font-size: 0.85rem; color: var(--text-muted-dark); margin-bottom: 2rem; }

/* ===================== COOKIES BANNER ===================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(10,10,12,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 9999;
  padding: 1.4rem 0;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  flex: 1;
  min-width: 220px;
}
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.cookie-btn-accept {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-btn-accept:hover { background: var(--accent-hover); }
.cookie-btn-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}
.cookie-btn-decline:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

/* ===================== SEND.PHP PAGE ===================== */
.send-page { min-height: 100vh; display: flex; align-items: center; background: #f7f8fc; }
.send-box {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2rem;
}
.send-icon { font-size: 3.5rem; color: var(--accent); margin-bottom: 1.5rem; }
.send-box h1 { margin-bottom: 1rem; }
.send-box p  { color: var(--text-muted-dark); margin-bottom: 2rem; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
  .grid-2, .grid-3, .grid-4,
  .intro-wrap, .contact-wrap, .footer-top,
  .courses-grid, .testimonials-grid, .values-grid, .team-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .hero-stats { gap: 2rem; flex-wrap: wrap; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .section { padding: 4rem 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .cookie-inner { flex-direction: column; }
}

@media (max-width: 479px) {
  .container { padding: 0 1.2rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { justify-content: center; }
}
