/* ============================================
   BASE STYLES
   ============================================ */

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

:root {
  --dark: #06111c;
  --blue: #071b2c;
  --orange: #f25a13;
  --white: #ffffff;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f3f6f8;
  color: #0a1420;
  padding-top: 76px; /* Höhe der Desktop-Nav */
}

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

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  margin-top: 0;
  background:
    linear-gradient(
      90deg,
      rgba(3, 11, 20, 0.96) 0%,
      rgba(7, 20, 32, 0.90) 45%,
      rgba(7, 27, 44, 0.84) 100%
    );
  background-color: #071b2c;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/Gesamter Hintergrund2.jpg') center bottom/cover no-repeat;
  opacity: 0.16;
  mix-blend-mode: screen;
  filter: grayscale(100%) brightness(0.68) contrast(1.22) saturate(0);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 28%, rgba(70, 130, 190, 0.13), transparent 42%),
    linear-gradient(180deg, rgba(7, 27, 44, 0.10), rgba(3, 11, 20, 0.55));
  pointer-events: none;
}

/* Bilder in FAQ anpassen */
.hero-product img,
.bag-lying-only {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

#early-adopter-button,
#verkaufsstart-button {
  padding: clamp(12px, 1.5vw, 18px) clamp(16px, 2vw, 28px) !important;
  font-size: clamp(12px, 1.1vw, 14px) !important; /* Falls Font-Sizes differieren */
}

/* ============================================
   NAVIGATION – DESKTOP (NORMAL)
   ============================================ */
.nav,
.hero-inner {
  position: relative;
  z-index: 2;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  min-height: 76px;
  padding: 0 36px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.brand img {
  width: 50px;
  height: auto;
}

/* Navigationslinks – Desktop */
.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
  flex: 1;
  min-width: fit-content;
  white-space: nowrap;
}

.nav-links a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: bold;
  transition: color 0.3s ease;
  white-space: nowrap;
}

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

.nav-links a.active {
  color: var(--orange);
}

/* Buttons in der Navigationsleiste – Desktop */
.nav-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: nowrap;
}

.nav-cta,
.btn-primary {
  background: var(--orange);
  color: white;
  padding: clamp(12px, 1.5vw, 18px) clamp(16px, 2vw, 28px);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}

.hero-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 30px;
  padding: 64px 56px;
}

.hero-copy img {
  width: 520px;
}

.hero h1 {
  font-size: 84px;
  line-height: 0.95;
  margin-bottom: 24px;
  color: var(--orange);
  text-align: center;
  width: 450px;
  font-weight: 400;
  letter-spacing: 4px;
}

.lead {
  font-size: 21px;
  line-height: 1.45;
  max-width: 560px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.btn {
  padding: 18px 28px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
}

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

.hero-product {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}

.bag-lying-only {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain; /* Verhindert Verzerrungen */
}
/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits {
  background: linear-gradient(90deg, #06111c, #071b2c);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: white;
  padding: 22px 60px;
}

.benefits article {
  min-height: 126px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.benefits article:last-child {
  border-right: none;
}

.benefit-icon {
  color: var(--orange);
  font-size: 58px;
}

.benefits h3 {
  text-transform: uppercase;
}

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

.process {
  background: #f4f6f8;
  padding: 40px 56px;
}

.process h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 36px;
  text-transform: uppercase;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  align-items: center;
  gap: 16px;
}

.process-step {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  align-items: center;
}

.circle {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #e3e7eb;
  display: grid;
  place-items: center;
  color: var(--orange);
  font-size: 42px;
}

.image-circle img {
  width: 68px;
}

.process-step h3 {
  color: var(--orange);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.process-step p {
  line-height: 1.5;
}

.arrow {
  font-size: 58px;
}

/* ============================================
   STORY SECTION
   ============================================ */

.story {
  display: flex;
  align-items: center;
  gap: 60px;
  background: #06111c;
  color: white;
  padding: 58px 72px;
}

.story-content {
  flex: 1;
  max-width: 600px;
}

.story-content h2 {
  font-size: 42px;
  line-height: 1.05;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.story-content h2 span {
  display: block;
  color: var(--orange);
  font-size: 48px;
}

.story-content p {
  line-height: 1.7;
  margin-bottom: 24px;
}

.story-content ul {
  list-style: none;
  margin-bottom: 30px;
}

.story-content li {
  margin-bottom: 12px;
}

.story-content li::before {
  content: "✓ ";
  color: var(--orange);
}

.story-product {
  flex: 1;
  display: flex;
  justify-content: center;
}

.story-product img {
  width: 100%;
  max-width: 500px;
  object-fit: contain;
}

/* ============================================
   DETAIL SECTION
   ============================================ */

.detail {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 60px;
  align-items: center;
  padding: 80px 72px;
  background: white;
}

.detail h2 {
  font-size: 60px;
  line-height: 1;
  margin-bottom: 22px;
}

.detail p {
  font-size: 19px;
  line-height: 1.65;
}

.detail img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
}

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

.footer {
  background: #06111c;
  color: white;
  padding: 30px 56px 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.footer-brand {
  flex: 1;
  text-align: left;
}

.akobia-logo {
  height: 100px;
}

.footer-partners {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.partner-logo {
  height: 40px;
  opacity: 0.8;
}

.footer-tagline {
  flex: 1;
  text-align: right;
}

.footer-tagline p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  text-align: center;
  font-size: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--orange);
}

.btn-early-adopter {
  background-color: var(--orange);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-hero {
  min-height: auto; /* Entferne die feste Mindesthöhe */
  padding: 20px 0; /* Reduziere die Polsterung */
}

.centered-about-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.about-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-hero-copy img {
  max-width: 100%; /* Skaliert nicht über den Container hinaus */
  height: auto;    /* Erhält die Proportionen */
  width: auto;    /* Lässt die natürliche Breite zu */
  margin-bottom: 26px;
}

.about-hero h1 {
  font-size: 72px;
  margin-bottom: 22px;
  color: var(--orange);
  width: auto;
}

.about-hero-copy .lead {
  max-width: 760px;
  text-align: center;
  font-size: 22px;
  line-height: 1.5;
}

.team-section {
  padding: 90px 70px;
  background: #f4f6f8;
}

.team-header {
  text-align: center;
  max-width: 950px;
  margin: 0 auto 70px;
}

.team-header h2 {
  font-size: 84px;
  line-height: 1.05;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.team-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.member-card {
  background: white;
  padding: 50px 40px;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.member-card img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid var(--orange);
  margin-bottom: 28px;
}

.member-content h3 {
  font-size: 34px;
  margin-bottom: 10px;
}

.member-role {
  color: var(--orange);
  font-weight: 900;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.member-link {
  display: block;
  margin-bottom: 24px;
  color: #071b2c;
  text-decoration: none;
  font-weight: bold;
}

.linkedin-logo {
  display: block;
  margin-top: 20px;
}

.linkedin-logo svg {
  width: 80px;
  height: 80px;
  fill: #0077B5;
}

.member-contact {
  margin: 12px 0 20px;
}

.member-phone {
  margin: 0;
  font-size: 16px;
  color: #0a1420;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-section {
  display: block;
  background: #06111c;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.contact-section .story-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.contact-section .story-content h2 {
  text-align: center;
  width: 100%;
  font-size: 48px;
  line-height: 1.05;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.contact-section .story-content h2 span {
  display: inline;
  color: var(--orange);
}

.contact-form {
  width: 100%;
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  margin: 0 auto;
}

.contact-form .form-group {
  margin-bottom: 20px;
  text-align: left;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: white;
  font-weight: 600;
  font-size: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.contact-form textarea {
  min-height: 400px;
  padding: 16px;
  resize: vertical;
  line-height: 1.6;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form button {
  width: 100%;
  padding: 14px;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.contact-form button:hover {
  background: #d94a0f;
}

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

.faq-section {
  padding: 40px 20px;
  max-width: 100%;
  margin: 0 auto;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 16px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #f25a13;
  font-size: 18px;
  font-weight: normal;
  text-transform: none;
  padding: 8px 0;
}

.faq-question:hover {
  opacity: 0.8;
}

.faq-arrow {
  transition: transform 0.3s ease;
  font-size: 14px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: black;
  line-height: 1.6;
  padding-left: 0;
}

.faq-answer p {
  margin: 0;
  padding-top: 8px;
}

.faq-answer.active {
  max-height: 500px;
  padding-bottom: 16px;
}

.faq-question.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-contact-text {
  text-align: center;
  margin: 2rem auto 3rem;
  max-width: 800px;
}

/* ============================================
   SONDEN-TECHNOLOGIE
   ============================================ */

.sonden-technologie {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.sonden-text {
  flex: 1;
  max-width: 60%;
}

.sonden-gif {
  flex: 1;
  max-width: 40%;
  display: flex;
  justify-content: center;
}

.technologie-gif {
  max-width: 100%;
  height: auto;
  max-height: 400px;
}

.contact-button {
  background: var(--orange);
  color: white;
  padding: 15px 24px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin: 20px 0;
}

#kontaktformular {
  scroll-margin-top: 40px;
}

/* ============================================
   YEAR SECTIONS
   ============================================ */

.year-section,
.year-contact-section {
  padding: 60px 20px;
  text-align: center;
  clear: both;
}

.year-title {
  font-size: 84px;
  line-height: 1.05;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-block;
}

.year-section {
  background: #f4f6f8;
  color: #0a1420;
}

.year-contact-section {
  background: #06111c;
  color: white;
}

.year-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.year-text {
  flex: 1;
  max-width: 600px;
  text-align: justify;
}

.year-text p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

.year-image {
  flex: 1;
  display: flex;
  justify-content: center;
  max-width: 500px;
}

.year-image img {
  max-width: 100%;
  max-height: 400px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.year-img {
  cursor: pointer;
  transition: transform 0.3s;
}

.year-img:hover {
  transform: scale(1.02);
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  text-align: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* ============================================
   HAMBURGER MENÜ (MOBILE)
   ============================================ */

.hamburger {
  display: none; /* Standardmäßig ausgeblendet (Desktop) */
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none; /* Standardmäßig ausgeblendet */
  position: fixed;
  top: 76px; /* Höhe der Desktop-Nav */
  left: 0;
  width: 100%;
  background: var(--blue);
  flex-direction: column;
  padding: 20px;
  gap: 15px;
  z-index: 1000;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 0;
}

.mobile-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.mobile-buttons .nav-cta {
  width: 100%;
  text-align: center;
}

.mobile-menu #early-adopter-button {
  display: block !important;
}

/* Animation für Hamburger-Icon (X-Form) */
.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

  .mobile-menu.active {
    display: flex !important;
  }


/* ============================================
   MEDIA QUERIES FÜR MOBILE
   ============================================ */
@media (max-width: 768px) {
  /* ============================================
     GLOBAL & BASE
     ============================================ */
  body {
    padding-top: 60px; /* Reduzierte Höhe der Mobile-Nav */
  }

  /* ============================================
     HAMBURGER MENÜ & NAVIGATION
     ============================================ */
  .hamburger {
    display: block !important;
    margin-left: auto;
    z-index: 1001;
  }

  .hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-links {
    display: none !important;
  }

  .nav {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 60px;
    padding: 0 20px;
  }

  .brand {
    justify-self: start;
  }

  .nav-buttons {
    display: flex !important;
    justify-self: center;
    grid-column: 2;
    grid-row: 1;
  }

  .nav-buttons #early-adopter-button {
    display: none !important;
  }

  .nav-buttons #verkaufsstart-button {
    display: inline-block !important;
    padding: 10px 14px !important;
    font-size: 12px !important;
  }

  .hamburger {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    margin-left: 0;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: var(--blue);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    z-index: 1000;
  }

  .mobile-menu.active {
    display: flex !important;
  }

  /* ============================================
     HERO SECTION (ALLGEMEIN)
     ============================================ */
  .hero {
    min-height: auto;
    padding: 20px 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px;
    gap: 20px;
  }

  .hero-copy img {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.2;
    width: 100%;
    margin-bottom: 16px;
  }

  .lead {
    font-size: 16px;
    max-width: 100%;
    margin-bottom: 20px;
    text-align: left;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .hero-product {
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }

  .bag-lying-only {
    width: 80%;
    max-width: 300px;
  }

  /* ============================================
     ABOUT HERO (FAQs.html - Sondentechnologie & Verschüttungssensor)
     ============================================ */
  .about-hero {
    min-height: auto !important;
    padding: 0 !important;
  }

  .about-hero-inner {
    grid-template-columns: 1fr !important;
    text-align: left !important;
    padding: 20px !important;
    gap: 20px !important;
    align-items: flex-start !important;
    min-height: auto !important;
    overflow: visible !important;
  }

  .about-hero-copy {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .about-hero-copy img {
    width: 100% !important;
    max-width: 200px !important;
    margin: 0 0 16px 0 !important;
  }

  #Verschüttungs-ueberschrift,
  .about-hero-copy h1 {
    font-size: 28px !important;
    line-height: 1.2 !important;
    width: 100% !important;
    margin-bottom: 12px !important;
    text-align: left !important;
  }

  .about-hero-copy .lead {
    font-size: 15px !important;
    line-height: 1.5 !important;
    margin-bottom: 16px !important;
    width: 100% !important;
    text-align: left !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

  .hero-product {
    margin-top: 16px !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  .bag-lying-only {
    width: 90% !important;
    max-width: 280px !important;
    height: auto !important;
  }

  /* ============================================
     BENEFITS SECTION
     ============================================ */
  .benefits {
    grid-template-columns: repeat(2, 1fr);
    padding: 22px 20px;
  }

  .benefits article {
    min-height: auto;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 16px 0;
  }

  .benefits article:nth-child(odd) {
    border-right: none;
  }

  .benefit-icon {
    font-size: 40px !important;
  }

  /* ============================================
     PROCESS SECTION
     ============================================ */
  .process {
    padding: 20px;
  }

  .process h2 {
    font-size: 28px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-step {
    grid-template-columns: 60px 1fr;
    gap: 16px;
  }

  .circle {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .image-circle img {
    width: 40px !important;
  }

  .arrow {
    display: none;
  }

  /* ============================================
     STORY SECTION
     ============================================ */
  .story {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .story-content {
    max-width: 100%;
  }

  .story-content h2 {
    font-size: 28px;
  }

  .story-content h2 span {
    font-size: 32px;
  }

  .story-content p {
    font-size: 16px;
  }

  .story-content ul {
    padding-left: 0;
    list-style: none;
  }

  .story-content li::before {
    content: "✓ ";
    color: var(--orange);
  }

  .story-product {
    margin-top: 30px;
  }

  .story-product img {
    width: 100%;
    max-width: 300px;
  }

  /* ============================================
     DETAIL SECTION
     ============================================ */
  .detail {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    text-align: center;
  }

  .detail h2 {
    font-size: 32px;
  }

  .detail p {
    font-size: 16px;
  }

  .detail img {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
  }

  /* ============================================
     FOOTER
     ============================================ */
  .footer {
    padding: 20px;
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .akobia-logo {
    height: 80px !important;
  }

  .footer-partners {
    justify-content: center;
    gap: 20px;
  }

  .partner-logo {
    height: 30px !important;
  }

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

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

  .footer-links {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  /* ============================================
     FAQ SECTION
     ============================================ */
  .faq-section {
    padding: 20px 10px;
  }

  .faq-container {
    max-width: 80%;
    padding: 0 16px;
  }

  .faq-item {
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
  }

  .faq-question {
    font-size: 16px;
    padding: 8px 0;
  }

  .faq-question span:first-child {
    font-size: 16px;
  }

  .faq-arrow {
    font-size: 14px;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #0a1420;
    line-height: 1.5;
    padding: 0 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    margin-top: 8px;
  }

  .faq-answer p {
    padding: 10px 0;
    margin: 0;
    font-size: 15px;
  }

  .faq-answer.active {
    max-height: 1000px;
    padding-bottom: 12px;
  }

  .faq-contact-text {
    font-size: 16px;
    padding: 20px;
    text-align: center;
  }

  /* ============================================
     CONTACT SECTION
     ============================================ */
  .contact-section {
    padding: 40px 20px;
  }

  .contact-section .story-content {
    max-width: 100%;
    padding: 0;
  }

  .contact-section .story-content h2 {
    font-size: 28px;
  }

  .contact-section .story-content h2 span {
    color: var(--orange);
    display: inline;
  }

  .contact-form {
    width: 100%;
    max-width: 100%;
    padding: 20px;
    border-radius: 8px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 10px 12px;
    font-size: 15px;
  }

  .contact-form textarea {
    min-height: 250px;
  }

  /* ============================================
     TEAM SECTION
     ============================================ */
  .team-section {
    padding: 40px 20px;
  }

  .team-header h2 {
    font-size: 40px;
  }

  .team-grid-new {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .member-card {
    padding: 30px 20px;
  }

  .member-card img {
    width: 180px;
    height: 180px;
  }

  /* ============================================
     YEAR SECTIONS
     ============================================ */
  .year-section,
  .year-contact-section {
    padding: 40px 20px;
  }

  .year-title {
    font-size: 40px !important;
  }

  .year-content {
    flex-direction: column;
    gap: 20px;
  }

  .year-text {
    text-align: left;
  }

  .year-text p {
    font-size: 16px;
  }

  .year-image {
    max-width: 100%;
  }

  .year-image img {
    max-width: 100%;
    max-height: 300px;
  }

  /* ============================================
     LIGHTBOX
     ============================================ */
  .lightbox {
    padding: 10px;
  }

  .lightbox img {
    max-width: 95%;
    max-height: 70vh;
  }

  .close-btn {
    top: 10px;
    right: 20px;
    font-size: 30px;
  }

  /* ============================================
     MODALS
     ============================================ */
  #verkaufsstart-modal,
  #early-adopter-modal {
    padding: 10px;
  }

  #verkaufsstart-modal div,
  #early-adopter-modal div {
    width: 95%;
    padding: 20px;
    max-width: 400px;
  }

  #verkaufsstart-modal h2,
  #early-adopter-modal h2 {
    font-size: 24px;
  }

  #verkaufsstart-modal p,
  #early-adopter-modal p {
    font-size: 15px;
  }

  #verkaufsstart-form input,
  #early-adopter-form input {
    padding: 10px 12px;
    font-size: 15px;
  }

  #verkaufsstart-form button,
  #early-adopter-form button {
    padding: 12px;
    font-size: 15px;
  }
}