/* ============================================================
   CSS VARIABLES
   ============================================================ */

:root {
  --color-bg: #ffffff;
  --color-bg-secondary: #f7f8fa;
  --color-bg-tertiary: #eef1f5;
  --color-accent: #EA580C;
  --color-accent-hover: #C2410C;
  --color-accent-light: #FFF7ED;
  --color-text-primary: #111827;
  --color-text-secondary: #4b5563;
  --color-text-muted: #9ca3af;
  --color-border: #e5e7eb;
  --color-success: #059669;
  --color-warning: #d97706;

  --font-display: 'DM Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --max-width: 1140px;
  --section-padding: 80px 0;
  --section-padding-mobile: 48px 0;

  --radius-card: 8px;
  --radius-btn: 6px;
  --radius-small: 4px;

  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
  --shadow-nav: 0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* ============================================================
   RESET & BASE
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-primary);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul {
  list-style: none;
}

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

button {
  font-family: inherit;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
}

h1 {
  font-size: 48px;
  letter-spacing: -0.025em;
}

h2 {
  font-size: 36px;
  letter-spacing: -0.015em;
}

h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p {
  color: var(--color-text-secondary);
}

/* ============================================================
   LAYOUT
   ============================================================ */

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

.section {
  padding: var(--section-padding);
}

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

/* ============================================================
   SECTION HEADINGS
   ============================================================ */

.section-heading {
  font-size: 36px;
  margin-bottom: 16px;
}

.section-lead {
  font-size: 18px;
  color: var(--color-text-secondary);
  margin-bottom: 48px;
  max-width: 680px;
  line-height: 1.6;
}

.section-lead.text-center {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease,
    box-shadow 0.15s ease;
  border: 1.5px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  gap: 8px;
}

.btn-primary {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn-secondary:hover {
  background: var(--color-accent-light);
}

.btn-secondary:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

.btn-full {
  width: 100%;
}

/* ============================================================
   CARDS
   ============================================================ */

.card {
  background: var(--color-bg);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}

/* ============================================================
   BADGES
   ============================================================ */

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.badge-success {
  background: #d1fae5;
  color: var(--color-success);
}

.badge-info {
  background: var(--color-accent-light);
  color: var(--color-accent);
}

.badge-neutral {
  background: var(--color-bg-tertiary);
  color: var(--color-text-muted);
}

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-nav);
  border-bottom-color: var(--color-border);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar-logo img {
  height: 32px;
  width: auto;
}

.navbar-nav {
  display: flex;
  align-items: center;
}

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

.navbar-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color 0.15s ease;
  white-space: nowrap;
}

.navbar-links a.btn-primary {
  color: white;
}

.navbar-links a:hover {
  color: var(--color-text-primary);
}

.navbar-links a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Hamburger */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-small);
}

.hamburger:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* Mobile menu */

.mobile-menu {
  display: none;
  padding: 12px 0 16px;
  border-top: 1px solid var(--color-border);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-menu a {
  display: block;
  padding: 11px 4px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border);
  transition: color 0.15s ease;
}

.mobile-menu a:hover {
  color: var(--color-text-primary);
}

.mobile-menu li:last-child a {
  border-bottom: none;
}

.mobile-menu .btn {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
}

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

.section-hero {
  padding: 80px 0 72px;
  background: var(--color-bg);
}

.hero-layout {
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 48px;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 22px;
}

.hero-lead {
  font-size: 20px;
  color: var(--color-text-secondary);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 16px;
}

.hero-body {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.screenshot-img {
  border-radius: var(--radius-card);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.06);
  width: 100%;
}

.screenshot-hero {
  transform: rotate(2deg);
  transform-origin: center top;
}

.hero-screenshot {
  display: flex;
  align-items: flex-start;
}

/* ============================================================
   TRIGGER SECTION
   ============================================================ */

.trigger-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 44px;
}

.trigger-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trigger-card h3 {
  color: var(--color-text-primary);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--color-accent-light);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trigger-conclusion {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.trigger-conclusion > p {
  font-size: 17px;
  line-height: 1.6;
}

/* ============================================================
   VISION SECTION
   ============================================================ */

.vision-lead {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-text-primary);
  font-family: var(--font-display);
  line-height: 1.35;
  margin-bottom: 16px;
  max-width: 700px;
}

.vision-lead.text-center {
  margin-left: auto;
  margin-right: auto;
}

.vision-body {
  max-width: 700px;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 52px;
}

.vision-body.text-center {
  margin-left: auto;
  margin-right: auto;
}

.vision-principles {
  display: flex;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--color-bg);
}

.principle {
  flex: 1;
  padding: 32px 28px;
}

.principle-divider {
  width: 1px;
  background: var(--color-border);
  flex-shrink: 0;
}

.principle-icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent-light);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.principle h3 {
  margin-bottom: 8px;
}

.principle p {
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================================
   PRODUKT SECTION
   ============================================================ */

.produkt-layout {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 52px;
  align-items: start;
}

.benefit-block {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.benefit-number {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-accent);
  background: var(--color-accent-light);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
  letter-spacing: 0.03em;
}

.benefit-content h3 {
  margin-bottom: 6px;
}

.benefit-content p {
  font-size: 15px;
  line-height: 1.65;
}

.produkt-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  padding-top: 4px;
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
}

.produkt-details li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.produkt-screenshots {
  position: relative;
  padding-top: 8px;
}

.screenshot-top {
  position: relative;
  z-index: 2;
  margin-bottom: -28px;
  margin-right: 20px;
  border-radius: var(--radius-card);
}

.screenshot-bottom {
  position: relative;
  z-index: 1;
  margin-left: 20px;
  border-radius: var(--radius-card);
}

/* ============================================================
   ROADMAP SECTION
   ============================================================ */

.roadmap-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.roadmap-card h3 {
  margin-bottom: 10px;
}

.roadmap-card p {
  font-size: 15px;
  line-height: 1.65;
}

.infobox {
  border-radius: var(--radius-card);
  padding: 28px 32px;
  margin-bottom: 24px;
}

.infobox-accent {
  background: var(--color-accent-light);
  border: 1px solid rgba(26, 86, 219, 0.15);
}

.infobox-accent h3 {
  color: var(--color-accent);
  margin-bottom: 8px;
}

.infobox-accent p {
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 1.65;
}

.ki-block {
  border-left: 3px solid var(--color-accent);
  padding: 20px 24px;
  margin-bottom: 32px;
  background: var(--color-bg-secondary);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
}

.ki-block h3 {
  margin-bottom: 8px;
}

.ki-block p {
  font-size: 15px;
  line-height: 1.65;
}

.roadmap-outlook {
  text-align: center;
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  margin-top: -8px;
}

.roadmap-conclusion {
  text-align: center;
  font-size: 17px;
  color: var(--color-text-secondary);
  margin-bottom: 28px;
}

/* ============================================================
   VERTRAUEN SECTION
   ============================================================ */

.trust-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-card h3 {
  margin-bottom: 10px;
}

.trust-card p {
  font-size: 15px;
  line-height: 1.65;
}

.link-accent {
  display: inline-block;
  margin-top: 14px;
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s ease;
}

.link-accent:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.link-accent:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ============================================================
   PREISE SECTION
   ============================================================ */

.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
  align-items: start;
}

.price-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.price-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 10px;
}

.price-card-featured {
  border-color: var(--color-accent);
  box-shadow: 0 2px 8px rgba(26, 86, 219, 0.12), 0 8px 28px rgba(26, 86, 219, 0.08);
}

.price-card-highlight {
  background: var(--color-bg-secondary);
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-value {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
}

.price-period {
  font-size: 15px;
  color: var(--color-text-muted);
}

.price-explanation {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 32px;
  font-size: 16px;
  line-height: 1.65;
}

/* ============================================================
   KONTAKT SECTION
   ============================================================ */

.section-kontakt {
  background: var(--color-accent);
  padding: var(--section-padding);
}

.section-heading-white {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  text-align: center;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.section-lead-white {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.kontakt-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-card);
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

/* Form */

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-group:last-of-type {
  margin-bottom: 24px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-primary);
}

.form-group input,
.form-group textarea {
  padding: 10px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-small);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-primary);
  background: var(--color-bg);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

.form-error {
  font-size: 13px;
  color: #dc2626;
  min-height: 18px;
  line-height: 1.4;
}

.required-marker {
  color: #dc2626;
  margin-left: 2px;
}

.optional-marker {
  color: var(--color-text-muted);
  font-weight: 400;
  font-size: 13px;
  margin-left: 4px;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Form success state */

.form-success {
  text-align: center;
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.form-success h3 {
  color: var(--color-success);
  font-size: 20px;
  line-height: 1.35;
}

.form-privacy-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

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

.form-privacy-note a:hover {
  color: var(--color-text-secondary);
}

.kontakt-trust {
  text-align: center;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

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

.footer {
  background: #111827;
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer-links a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for sibling elements */
.trigger-cards .trigger-card:nth-child(1),
.roadmap-cards .roadmap-card:nth-child(1),
.trust-cards .trust-card:nth-child(1),
.price-cards .price-card:nth-child(1),
.vision-principles .principle:nth-child(1) {
  transition-delay: 0s;
}

.trigger-cards .trigger-card:nth-child(2),
.roadmap-cards .roadmap-card:nth-child(2),
.trust-cards .trust-card:nth-child(2),
.price-cards .price-card:nth-child(2),
.vision-principles .principle:nth-child(3) {
  transition-delay: 0.08s;
}

.trigger-cards .trigger-card:nth-child(3),
.roadmap-cards .roadmap-card:nth-child(3),
.trust-cards .trust-card:nth-child(3),
.price-cards .price-card:nth-child(3),
.vision-principles .principle:nth-child(5) {
  transition-delay: 0.16s;
}

/* ============================================================
   RESPONSIVE — TABLET  (max-width: 1024px)
   ============================================================ */

@media (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }

  h2,
  .section-heading,
  .section-heading-white {
    font-size: 30px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .screenshot-hero {
    transform: none;
    max-width: 75%;
    margin: 0 auto;
  }

  .hero-text h1 {
    max-width: 100%;
  }

  .trigger-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .vision-principles {
    flex-direction: column;
  }

  .principle-divider {
    width: 100%;
    height: 1px;
  }

  .produkt-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .produkt-screenshots {
    max-width: 70%;
    margin: 0 auto;
  }

  .roadmap-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-cards .price-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
    width: 100%;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE  (max-width: 768px)
   ============================================================ */

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  h2,
  .section-heading {
    font-size: 26px;
  }

  .section-heading-white {
    font-size: 26px;
  }

  .section {
    padding: var(--section-padding-mobile);
  }

  .section-hero {
    padding: 48px 0 40px;
  }

  .section-kontakt {
    padding: var(--section-padding-mobile);
  }

  /* Navbar */
  .navbar-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero-lead {
    font-size: 17px;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .screenshot-hero {
    max-width: 100%;
  }

  /* Trigger */
  .trigger-cards {
    grid-template-columns: 1fr;
  }

  /* Vision */
  .vision-lead {
    font-size: 18px;
  }

  /* Roadmap */
  .roadmap-cards {
    grid-template-columns: 1fr;
  }

  /* Vertrauen */
  .trust-cards {
    grid-template-columns: 1fr;
  }

  /* Preise */
  .price-cards {
    grid-template-columns: 1fr;
  }

  .price-cards .price-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  /* Produkt */
  .produkt-screenshots {
    max-width: 100%;
  }

  /* Kontakt form */
  .kontakt-form-wrap {
    padding: 24px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Infobox */
  .infobox {
    padding: 22px 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  .container {
    padding: 0 16px;
  }

  .card {
    padding: 22px 18px;
  }
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */

.faq-accordion {
  max-width: 640px;
  margin: 0 auto 40px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-card);
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  gap: 16px;
  transition: background 0.15s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.07);
}

.faq-question:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.55);
  outline-offset: -2px;
}

.faq-arrow {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.65);
  transition: transform 0.25s ease;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

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

.faq-item.open .faq-answer {
  max-height: 240px;
}

.faq-answer-inner {
  padding: 0 20px 18px;
}

.faq-answer-inner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .faq-question {
    font-size: 15px;
    padding: 14px 16px;
  }

  .faq-answer-inner {
    padding: 0 16px 14px;
  }
}
