/* ============================================================
   FARBSYSTEM – Abel & Knechtl Trockenbau GmbH
   Logo-Grün: #76B900
   ============================================================ */
:root {
  /* Akzentfarbe – Logo-Grün (CTAs, Icons, Highlights) */
  --color-accent:        #76B900;
  --color-accent-dark:   #5C9000;
  --color-accent-light:  #8FD400;

  /* Primärfarbe – dunkles Grün/Charcoal (Navbar, Footer, dunkle Sektionen) */
  --color-primary:       #1E2A1A;
  --color-primary-dark:  #141C11;
  --color-primary-light: #2E3D29;

  /* Texte & Hintergründe */
  --color-text:          #1A1A1A;
  --color-muted:         #6B7280;
  --color-border:        #E5E7EB;
  --color-bg:            #FFFFFF;
  --color-bg-alt:        #F8FAF5;

  /* Typographie */
  --font-heading:  'Montserrat', sans-serif;
  --font-body:     'Inter', sans-serif;

  /* Sonstiges */
  --radius-card:   0.75rem;
  --shadow-card:   0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-hover:  0 10px 40px rgba(0, 0, 0, 0.14);
  --transition:    0.25s ease;
}

/* ============================================================
   BASE STYLES
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

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

/* ============================================================
   UTILITY KLASSEN
   ============================================================ */
.bg-primary       { background-color: var(--color-primary); }
.bg-primary-dark  { background-color: var(--color-primary-dark); }
.bg-accent        { background-color: var(--color-accent); }
.bg-alt           { background-color: var(--color-bg-alt); }

.text-primary     { color: var(--color-primary); }
.text-accent      { color: var(--color-accent); }
.text-muted       { color: var(--color-muted); }

.border-accent    { border-color: var(--color-accent); }

.font-heading     { font-family: var(--font-heading); }

/* Section Padding */
.section-padding  { padding-top: 5rem; padding-bottom: 5rem; }

/* Container */
.container-custom {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Section Label */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

/* Section Heading */
.section-heading {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-heading { font-size: 2.75rem; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-accent {
  background-color: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.btn-accent:hover {
  background-color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(118, 185, 0, 0.35);
}

.btn-outline-white {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-outline-white:hover {
  background-color: #fff;
  color: var(--color-primary);
  border-color: #fff;
}

.btn-outline-accent {
  background-color: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.btn-outline-accent:hover {
  background-color: var(--color-accent);
  color: #fff;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--color-bg);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  overflow: hidden;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  background: radial-gradient(
    500px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(118, 185, 0, 0.18),
    transparent 70%
  );
  z-index: 0;
}

.card:hover::before {
  opacity: 1;
}

.card > * {
  position: relative;
  z-index: 1;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

/* Service Card */
.service-card {
  padding: 2rem;
  border-top: 3px solid var(--color-accent);
}

.service-card .icon-wrap {
  width: 3rem;
  height: 3rem;
  background: rgba(118, 185, 0, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-card .icon-wrap svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-accent);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
  background-color: transparent;
}

.navbar.scrolled,
.navbar.navbar--solid {
  background-color: var(--color-primary-dark);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-logo img {
  height: 5.5rem;
  width: auto;
}

.navbar-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.navbar-logo-text .name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.01em;
}

.navbar-logo-text .sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Desktop Nav Links */
.navbar-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .navbar-links { display: flex; }
}

.navbar-links a {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.navbar-links a:hover,
.navbar-links a.active {
  color: #fff;
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

@media (min-width: 768px) {
  .hamburger { display: none; }
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.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;
  background-color: var(--color-primary-dark);
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

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

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--color-accent); }
.mobile-menu .btn-accent { margin-top: 1rem; width: 100%; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--color-primary-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20, 28, 17, 0.50) 0%,
    rgba(30, 42, 26, 0.25) 60%,
    rgba(20, 28, 17, 0.40) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 8rem 1.5rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}

.hero-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--color-accent);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero h1 span {
  color: var(--color-accent);
}

.hero-sub {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================================
   SEKTION: STATS / ZAHLEN
   ============================================================ */
.stats-section {
  background-color: var(--color-primary);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item {}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
}

/* ============================================================
   SEKTION: LEISTUNGEN
   ============================================================ */
.leistungen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .leistungen-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .leistungen-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   SEKTION: ÜBER UNS TEASER
   ============================================================ */
.ueber-uns-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .ueber-uns-grid { grid-template-columns: 1fr 1fr; }
}

.ueber-uns-image {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.ueber-uns-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ueber-uns-image::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 8rem;
  height: 8rem;
  background: var(--color-accent);
  border-radius: 0.5rem;
  z-index: -1;
}

/* ============================================================
   SEKTION: CTA BANNER
   ============================================================ */
.cta-banner {
  background-color: var(--color-accent);
  padding: 4rem 0;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.cta-banner .btn-outline-white:hover {
  color: var(--color-accent);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: var(--color-primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1.5fr 1fr; }
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
  display: block;
  margin-bottom: 0.5rem;
}

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

.footer-logo img { height: 7.5rem; margin-bottom: 1rem; }

.footer-logo .company-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}

.footer-logo .tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
  margin-bottom: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.footer-contact-item svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  display: inline;
  color: rgba(255,255,255,0.45);
  margin: 0 0.5rem;
  margin-bottom: 0;
}

.footer-bottom a:hover { color: var(--color-accent); }

/* ============================================================
   PAGE HERO (Unterseiten)
   ============================================================ */
.page-hero {
  background-color: var(--color-primary);
  padding: 7rem 1.5rem 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  right: -5rem;
  top: -5rem;
  width: 25rem;
  height: 25rem;
  background: rgba(118, 185, 0, 0.06);
  border-radius: 50%;
}

.page-hero::after {
  content: '';
  position: absolute;
  left: -3rem;
  bottom: -3rem;
  width: 15rem;
  height: 15rem;
  background: rgba(118, 185, 0, 0.04);
  border-radius: 50%;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}

.page-hero .breadcrumb a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--transition);
}

.page-hero .breadcrumb a:hover { color: var(--color-accent); }
.page-hero .breadcrumb .sep { color: rgba(255,255,255,0.25); }

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  max-width: 540px;
}

/* ============================================================
   KONTAKTFORMULAR
   ============================================================ */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: 0.375rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(118, 185, 0, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 8rem;
}

/* ============================================================
   KONTAKT INFO
   ============================================================ */
.kontakt-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.kontakt-info-item .icon-circle {
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(118, 185, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kontakt-info-item .icon-circle svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-accent);
}

.kontakt-info-item .info-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  margin-bottom: 0.2rem;
}

.kontakt-info-item .info-value {
  font-size: 0.975rem;
  color: var(--color-text);
  font-weight: 500;
}

.kontakt-info-item a.info-value {
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition);
}
.kontakt-info-item a.info-value:hover { color: var(--color-accent); }

/* ============================================================
   WERTE (Über uns Seite)
   ============================================================ */
.werte-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .werte-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .werte-grid { grid-template-columns: repeat(4, 1fr); }
}

.wert-item {
  padding: 1.75rem;
  background: var(--color-bg);
  border-radius: var(--radius-card);
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-card);
}

.wert-item h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.wert-item p {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.65;
}

/* ============================================================
   TIMELINE (Über uns)
   ============================================================ */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent), rgba(118,185,0,0.1));
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.625rem;
  top: 0.25rem;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  background: var(--color-accent);
  border: 2px solid var(--color-bg);
  box-shadow: 0 0 0 2px var(--color-accent);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.timeline-text {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.65;
}

/* ============================================================
   TEAM CARDS
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.team-avatar {
  width: 160px;
  height: 180px;
  border-radius: 0.75rem;
  margin: 0 auto 1.25rem;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--color-accent);
  display: block;
}

.team-avatar-placeholder {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.8rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   IMPRESSUM / DATENSCHUTZ (Text-Seiten)
   ============================================================ */
.text-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.text-page h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-bg-alt);
}

.text-page h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.text-page p {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.text-page a {
  color: var(--color-accent);
  text-decoration: none;
}

.text-page a:hover { text-decoration: underline; }

.text-page ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.text-page ul li {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: 0.25rem;
}

/* ============================================================
   AOS OVERRIDES
   ============================================================ */
[data-aos] {
  pointer-events: none;
}
[data-aos].aos-animate {
  pointer-events: auto;
}

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 640px) {
  .section-padding { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .stat-number { font-size: 2.25rem; }
}

/* ============================================================
   FAQ ACCORDION
============================================================ */
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--color-accent); }
.faq-question.open { color: var(--color-accent); }
.faq-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  stroke: var(--color-accent);
}
.faq-question.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer.open {
  max-height: 300px;
  padding-bottom: 1.25rem;
}
.faq-answer p {
  color: var(--color-muted);
  line-height: 1.8;
  font-size: 0.95rem;
  margin: 0;
}

/* ============================================================
   COOKIE INFO BAR
============================================================ */
#cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-primary);
  border-top: 2px solid var(--color-accent);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
#cookie-bar p {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  min-width: 200px;
}
#cookie-bar a {
  color: var(--color-accent);
  text-decoration: underline;
}
#cookie-bar button {
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
#cookie-bar button:hover {
  background: var(--color-accent-dark);
}
