/* montserrat-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/montserrat-v31-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/montserrat-v31-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/montserrat-v31-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
:root {
  --color-primary: #2c3e50;
  --color-accent: #6b8d6d;
  --color-accent-dark: #4a634c;
  --text-dark: #333333;
  --text-light: #ffffff;
  --font-main: 'Helvetica Neue', Arial, sans-serif;
  --font-headline: 'Montserrat', sans-serif;
  --font-tagline: 'Montserrat', Georgia, serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}
body {
  font-family: var(--font-main);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: #ffffff;
  width: 100%;
  overflow-x: hidden;
}
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 25px 20px;
}
.site-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: -0.5px;
}
.site-title a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}
.site-title .domain {
  color: var(--color-accent);
}
.nav-toggle {
  display: none;
}
.nav-toggle-label {
  display: none;
  cursor: pointer;
  padding: 10px;
}
.main-nav ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 50px;
}
.main-nav a {
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.main-nav a:hover {
  color: var(--color-accent-dark);
}
.main-nav a.nav-cta {
  background: var(--color-accent);
  color: var(--text-light);
  padding: 8px 18px;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease;
}
.main-nav a.nav-cta:hover {
  background: var(--color-accent-dark);
  color: var(--text-light);
}
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: url('images/vortrag_founder-summit.jpg') no-repeat left top/cover;
  padding: 110px 15% 20px 20px;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 62, 80, 0.40);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  color: var(--text-light);
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.hero-badge-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.hero-badge {
  display: inline-block;
  padding: 8px 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.hero-badge:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.7);
}
.hero-headline-eyebrow {
  font-family: var(--font-tagline);
  font-size: 1.45rem;
  line-height: 1.5;
  margin-bottom: 25px;
  color: #e2ebd5;
}
.hero-headline {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: -1px;
  margin-bottom: 45px;
  line-height: 1.25;
  color: var(--text-light);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}
.hero-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: var(--text-light);
  text-decoration: none;
  text-align: center;
  padding: 18px 44px;
  font-family: var(--font-headline);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 4px;
  border: 1px solid transparent;
  box-shadow: 0 8px 20px rgba(74, 99, 76, 0.3);
  transition: all 0.35s ease;
}
.hero-btn:hover {
  background: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent));
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(74, 99, 76, 0.45), 0 0 0 3px rgba(107, 141, 109, 0.15);
}
.hero-btn-secondary {
  background: var(--color-primary);
  box-shadow: 0 8px 20px rgba(44, 62, 80, 0.3);
}
.hero-btn-secondary:hover {
  background: #1c2833;
  box-shadow: 0 12px 28px rgba(44, 62, 80, 0.45), 0 0 0 3px rgba(44, 62, 80, 0.15);
}
.philosophy-section {
  position: relative;
  padding: 40px 20px 20px 20px;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  scroll-margin-top: 70px;	
  z-index: 1;
}
.philosophy-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: #ffffff;
  z-index: -1;
}
.story-section {
  background: linear-gradient(180deg, #f5f3f0 0%, #ffffff 100%);
  padding: 60px 20px;
  scroll-margin-top: 50px;		
}
.story-section .container {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-title {
  font-family: var(--font-headline);
  font-size: 2.2rem;
  color: var(--color-primary);
  margin-bottom: 15px;
  text-align: left;
  line-height: 1.2;
}
.story-subtitle {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  margin-bottom: 60px;
  text-align: left;
  font-weight: 700;
}
.story-lead {
  max-width: 850px;
  margin: -30px auto 40px auto;
  padding: 0px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-primary);
  text-align: left;
  font-weight: 400;
}
.story-text-only {
  max-width: 850px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
  line-height: 1.8;
  color: var(--text-dark);
}
.story-text-only p {
  margin-bottom: 25px;
  font-size: 1.1rem;
}
.story-text-only h3 {
  margin-top: 45px;
  margin-bottom: 20px;
  font-family: var(--font-headline);
  color: var(--color-primary);
  font-size: 1.4rem;
}
.story-text-only a {
  color: var(--color-accent-dark);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
}
.story-text-only a:hover {
  opacity: 0.8;
}
.story-facts-box, .why-me-box, .certificates-section {
  background: #ffffff;
  background: radial-gradient(circle at top left, #eef4f0 0%, #ffffff 90%);
  padding: 45px;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.story-facts-box:hover, .why-me-box:hover, .certificates-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.story-facts-box h3, .why-me-box h3, .certificates-section h3 {
  font-family: var(--font-headline);
  color: var(--color-primary);
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
  line-height: 1.2;
}
.story-check-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.story-check-list li {
  list-style: none !important;
  position: relative;
  padding-left: 35px;
  margin-bottom: 18px;
  line-height: 1.6;
}
.story-check-list li::before {
  content: "✔";
  color: var(--color-accent);
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 1px;
  line-height: 1;
}
.story-outro {
  text-align: center;
  padding: 60px 40px;
  background: var(--color-primary);
  color: var(--text-light);
  border-radius: 8px;
  scroll-margin-top: 130px;	
}
.story-outro h3 {
  color: #ffffff;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 90px;
  }
  .story-facts-box, .why-me-box, .certificates-section {
    padding: 30px 25px;
  }
}
@media screen and (max-width: 576px) {
  .transformation-images-grid {
    flex-direction: column;
    gap: 20px;
  }
}
.transformation-img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}
.transformation-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-family: var(--font-headline);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.story-mission {
  max-width: 850px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}
.story-mission > p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: var(--text-dark);
}
.story-mission > p:first-of-type {
  font-weight: 400;
  font-size: 1.25rem;
}
.cert-download {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}
.cert-pdf-link {
  display: inline-block;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.cert-pdf-link:hover {
  color: var(--color-accent-dark);
}
.story-outro {
  text-align: center;
  margin-top: 80px;
  padding: 50px 40px;
  background: var(--color-primary);
  color: var(--text-light);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(44, 62, 80, 0.15);
}
.story-outro h3 {
  color: var(--text-light) !important;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.story-outro p {
  max-width: 700px;
  margin: 0 auto 20px auto;
  opacity: 0.9;
  font-size: 1.1rem;
}
.story-outro .cta-question {
  font-weight: 700;
  margin-bottom: 35px;
  opacity: 1;
  color: #e2ebd5;
}
.guarantee-section {
  padding: 80px 20px;
  background: #f7f9f7;
  text-align: center;
}
.guarantee-container {
  max-width: 850px;
  margin: 0 auto;
}
.guarantee-section .story-intro, .guarantee-section .section-title, .guarantee-section .story-subtitle {
  max-width: 850px;
  margin: 0 auto 20px auto;
}
.guarantee-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
  text-align: left;
}
.guarantee-list {
  flex: 1 1 350px;
  list-style: none;
  padding: 0;
}
.guarantee-list li {
  margin-bottom: 15px;
  line-height: 1.5;
  padding-left: 30px;
  position: relative;
  min-height: 4.5rem;
}
.guarantee-list li::before {
  content: "✔";
  color: #6b8d6d;
  position: absolute;
  left: 0;
  font-weight: bold;
}
@media (max-width: 768px) {
  .guarantee-grid {
    flex-direction: column;
    gap: 15px;
  }
}
.speaking-section {
  max-width: 850px;
  margin: 0 auto;
  padding: 0px 20px 60px;
  text-align: left;
  scroll-margin-top: 110px;		
}
.cta-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
}
@media (max-width: 600px) {
  .cta-container {
    flex-direction: column;
    gap: 15px;
  }
}
.speaking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 850px;
  margin: 40px auto;
  align-items: stretch;
}
.speaking-lead {
  max-width: 850px;
  margin: 0px auto 40px auto;
  padding: 0px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  text-align: left;
  font-weight: 400;
}
.speaking-card {
  padding: 30px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}
.speaking-card:hover {
  border-color: #6b8d6d;
  box-shadow: 0 8px 25px rgba(107, 141, 109, 0.15);
  transform: translateY(-5px);
}
.speaking-card h3 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  color: #6b8d6d;
  min-height: 1.5em;
}
.speaking-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}
.speaking-card li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #555;
  padding-left: 28px;
  position: relative;
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
  min-height: 3.2rem;
}
.speaking-card li::before {
  content: "✔";
  color: #6b8d6d;
  position: absolute;
  left: 0;
  font-weight: bold;
}
.card-subtitle {
  font-size: 0.85rem;
  color: #777;
  margin-top: -10px;
  margin-bottom: 20px;
  line-height: 1.4;
  min-height: 2.4em;
}
@media (max-width: 768px) {
  .speaking-grid {
    grid-template-columns: 1fr;
  }
}
.ref-section {
  background-color: #ffffff;
  padding: 0px 20px 80px;
  width: 100%;
}
.ref-container {
  max-width: 850px;
  margin: 0 auto;
}
.ref-section .section-title {
  font-family: var(--font-headline);
  color: var(--color-primary);
  text-align: left;
  margin-bottom: 20px;
}
.ref-section .story-subtitle {
  color: var(--color-accent);
  text-align: left;
  margin-bottom: 30px;
}
.ref-section .story-text-only {
  color: #333333;
  font-size: 1.1rem;
  text-align: left;
  margin-bottom: 30px;
}
.ref-section a {
  text-decoration: none;
  transition: 0.3s;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  align-items: start;
  margin: 40px auto;
  max-width: 850px;
  padding: 0 20px;
}
.grid-item-img {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 8px;
}
.grid-item-img img {
  width: 100%;
  height: 100%;
  object-position: 80% 10%;
  object-fit: cover;
  display: block;
}
.grid-item-video {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.grid-item-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 600px) {
  .media-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .grid-item-img {
    aspect-ratio: 9 / 16;
  }
  .grid-item-video {
    max-width: 320px;
    margin: 0 auto;
  }
}
.ref-box {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}
.ref-box img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.ref-text {
  font-style: italic;
  line-height: 1.6;
}
.ref-text strong {
  display: block;
  margin-top: 15px;
  font-style: normal;
  color: #6b8d6d;
  font-weight: 600;
}
.ref-box.reversed {
  grid-template-columns: 0.6fr 0.4fr;
}
.ref-box.reversed img {
  grid-column: 2;
  grid-row: 1;
}
.ref-box.reversed .ref-text {
  grid-column: 1;
  grid-row: 1;
}
.ref-download {
  text-align: center;
  margin-top: 30px;
}
.text-link {
  color: #6b8d6d;
  text-decoration: underline;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .ref-box, .ref-box.reversed {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .ref-box img {
    aspect-ratio: 16 / 9;
  }
}
.contact-section {
  background-color: #ffffff;
  padding: 0px 20px 40px;
  text-align: center;		
}
.compact-container {
  max-width: 1000px;
  margin: 0 auto;
}
.contact-pretitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-title {
  font-size: 2.2rem;
  color: #2d3a31;
  margin-bottom: 40px;
}
.contact-lead {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
  opacity: 0.9;
  margin-top: -20px;
  margin-bottom: 40px;
}
.contact-channels {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.contact-card {
  flex: 1;
  min-width: 280px;
  max-width: 320px;
  background: #ffffff;
  padding: 25px;
  border-radius: 8px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  border: 1px solid rgba(45, 58, 49, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
}
.contact-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent);
  box-shadow: 0 15px 30px rgba(107, 141, 109, 0.15);
}
.contact-icon {
  font-size: 1.6rem;
  background: #f0f4f0;
  color: #2d3a31;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.contact-card:hover .contact-icon {
  background: var(--color-accent);
  color: #ffffff;
}
.contact-card strong {
  display: block;
  color: #2d3a31;
  font-size: 1rem;
}
.contact-card span {
  font-size: 0.85rem;
  color: #666;
}
.cert-logos-container {
  margin-top: 60px;
  text-align: center;
}
.cert-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #888;
  margin-bottom: 25px;
}
.cert-logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0.7;
}
.cert-logos-grid img {
  max-height: 40px;
  width: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.cert-logos-grid img:hover {
  filter: grayscale(0%);
}
/* Mobil-Anpassung */
@media screen and (max-width: 600px) {
  .cert-logos-grid {
    gap: 25px;
    flex-direction: column;
  }
}
.site-footer {
  background-color: #6B8D6D;
  color: #dddddd;
  padding: 20px 0;
  font-size: 0.9rem;
  text-align: center;
}
.site-footer p {
  margin-bottom: 15px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
}
.footer-links a {
  color: #dddddd;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #dddddd;
}
.footer-bottom-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}
.footer-bottom-layout .page-container {
  flex: 1;
}
.footer-bottom-layout footer {
  flex-shrink: 0;
}
.page-container {
  max-width: 850px;
  width: 100%;
  margin: 40px auto;
  padding: 80px 20px;
  min-height: 70vh;
  display: block;
  box-sizing: border-box;
}
.content-section {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  display: block;
  text-align: left;
}
.content-section h1 {
  width: 100%;
  margin-bottom: 40px;
  font-size: 2rem;
  color: #333;
  text-align: left;
}
.accordion {
  width: 100% !important;
  display: block;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  text-align: left;
  background: #ffffff;
  box-sizing: border-box;
  overflow: hidden;
}
.accordion summary {
  display: flex !important;
  width: 100% !important;
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  color: #6b8d6d;
  outline: none;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  box-sizing: border-box;
}
details.accordion {
  display: block;
  width: 100%;
  box-sizing: border-box;
}
.accordion-content {
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
  color: #555;
  line-height: 1.6;
}
.accordion-content p {
  margin-top: 0;
  margin-bottom: 20px;
}
.accordion-content p:last-child {
  margin-bottom: 0;
}
.accordion-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.accordion-content li {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .speaking-grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 992px) {
  .story-deep-dive {
    flex-direction: column;
    gap: 40px;
  }
  .story-text, .story-visuals {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .story-section {
    padding: 60px 15px;
  }
  .story-facts-box, .why-me-box, .certificates-section, .story-outro {
    padding: 30px 20px;
  }
  .section-title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1024px) {
  .nav-toggle-label {
    display: block;
  }
  .nav-toggle-label span, .nav-toggle-label span::before, .nav-toggle-label span::after {
    display: block;
    background: var(--color-primary);
    height: 2px;
    width: 25px;
    position: relative;
    transition: all 0.3s ease;
  }
  .nav-toggle-label span::before, .nav-toggle-label span::after {
    content: '';
    position: absolute;
  }
  .nav-toggle-label span::before {
    top: -8px;
  }
  .nav-toggle-label span::after {
    bottom: -8px;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
  }
  .main-nav li {
    width: 100%;
    text-align: center;
  }
  .main-nav a {
    display: block;
    padding: 15px 0;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }
  .main-nav a.nav-cta {
    border-radius: 0;
    background: transparent;
    color: var(--color-accent);
  }
  .nav-toggle:checked ~ .main-nav {
    max-height: 300px;
  }
  .nav-toggle:checked ~ .nav-toggle-label span {
    background: var(--color-primary);
  }
  .nav-toggle:checked ~ .nav-toggle-label span::before {
    transform: none;
    top: -8px;
  }
  .nav-toggle:checked ~ .nav-toggle-label span::after {
    transform: none;
    bottom: -8px;
  }
  .hero-section {
    background-position: left 20%;
    padding-right: 6%;
  }
  .hero-headline {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .hero-section {
    padding: 100px 20px 20px 20px;
    background-position: 0% 15%;
    justify-content: center;
  }
  .hero-content {
    background: transparent;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
    text-align: center;
    align-items: center;
  }
  .hero-headline-eyebrow {
    font-size: 1.15rem;
    line-height: 1.4;
    margin-bottom: 15px;
  }
  .hero-headline {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }
  .hero-btn {
    padding: 14px 28px;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
  }
}
@media (max-width: 480px) {
  .hero-badge {
    font-size: 0.65rem;
    padding: 6px 15px;
    letter-spacing: 0.8px;
    white-space: nowrap;
  }
}