﻿:root {
  /* Professional Dark Theme */
  --primary-color: #1d4ed8;
  --secondary-color: #3b82f6;
  --accent-color: #1d4ed8;

  --text-color: #f3f4f6;
  --text-light: #9ca3af;
  --text-muted: #6b7280;

  --bg-color: #181a1b;
  --bg-light: #23272f;
  --border-color: #24292f;

  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --h-font-family: 'Montserrat', sans-serif;
  --container-width: 1200px;
  --border-radius: 12px;
  --box-shadow: 0 18px 32px rgba(8, 15, 35, 0.55);
  --box-shadow-hover: 0 24px 48px rgba(8, 15, 35, 0.65);
  --transition-speed: 0.3s;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  /* Verhindert Wortumbrüche mitten in Wörtern */
  word-break: normal !important;
  word-wrap: normal !important;
  overflow-wrap: break-word !important;
  hyphens: none !important;
}

:focus-visible {
  outline: 3px solid #3b82f6;
  outline-offset: 2px;
  box-shadow: none;
}

:focus:not(:focus-visible) {
  outline: none;
}

.icon {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.icon-fill {
  fill: currentColor;
  stroke: none;
}

.icon-sm {
  width: 1.1rem;
  height: 1.1rem;
}

.icon-lg {
  width: 2.5rem;
  height: 2.5rem;
}

.skip-link {
  position: absolute;
  top: 0;
  left: -9999px;
  padding: 0.5rem 1rem;
  background: var(--bg-secondary);
  color: var(--text-primary);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: transform var(--transition-speed) ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(0);
}

/* Page Transition Overlay */

/* Globale Typografie-Regeln - Verhindert Wortumbrüche mitten in Wörtern */
h1, h2, h3, h4, h5, h6, p, div, span, a, li, td, th, label, input, textarea, select {
  word-break: normal !important;
  word-wrap: normal !important;
  overflow-wrap: break-word !important;
  hyphens: none !important;
}

/* Spezielle Regeln für sehr lange URLs - nur bei Bedarf umbrechen */
a[href^="http"], a[href^="https"], a[href^="mailto:"] {
  word-break: break-all !important;
  overflow-wrap: anywhere !important;
}

/* Verhindert Umbruch in wichtigen Text-Elementen */
.section-title, h1, h2, h3, h4, h5, h6 {
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}

h1, h2, h3 {
  font-family: var(--h-font-family);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--text-color);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 800;
  position: relative;
  padding-bottom: 1rem;
  color: var(--text-color);
  will-change: transform, opacity;
}

.hero h2 {
  color: white;
}

.hero p {
  margin: 1rem auto;
  opacity: 0.9;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(60px, 15vw, 80px);
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

p {
  margin-bottom: 1rem;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: var(--text-light);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

a:hover {
  color: var(--secondary-color);
}

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

ul {
  list-style-position: inside;
  padding-left: 0;
}

.container {
  max-width: min(var(--container-width), 100vw);
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
}

section {
  padding: 2rem 0;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  background: transparent;
}

section:nth-of-type(odd) { background-color: var(--bg-light); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-family: var(--h-font-family);
  font-weight: 600;
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  text-align: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  min-height: 44px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.btn:focus {
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.btn:focus-visible {
  outline: 3px solid #3b82f6;
  outline-offset: 3px;
}

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

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

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

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
}

.btn-secondary:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-link:hover {
  transform: none;
  box-shadow: inherit;
  color: inherit;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
  opacity: 0;
}



.service-card, .feature-card {
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: all var(--transition-speed) ease;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.service-card .service-icon, .feature-card i, .feature-card svg {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 1rem;
  color: var(--primary-color);
  height: clamp(40px, 10vw, 48px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(40px, 10vw, 48px);
  border-radius: 12px;
  background: var(--bg-light);
  margin-left: auto;
  margin-right: auto;
}

.service-card .service-icon img {
  max-height: 100%;
  width: auto;
  max-width: clamp(48px, 12vw, 64px);
  object-fit: contain;
  border-radius: 10px;
}

.service-card h3, .feature-card h3 {
  font-size: clamp(1.1rem, 3vw, 1.25rem);
  margin-bottom: 0.5rem;
}

header {
  background-color: var(--bg-color);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: all var(--transition-speed) ease;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

header h1 {
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  margin: 0;
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

header h1 a {
  color: var(--text-color);
  font-weight: 800;
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  text-decoration: none;
}

.main-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-color);
  z-index: 999;
  transition: left 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-nav.active {
  left: 0;
}

.main-nav ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  list-style: none;
  margin: 0;
  text-align: center;
}

.main-nav a {
  font-weight: 600;
  padding: 1rem;
  position: relative;
  color: var(--text-light);
  font-size: 1.25rem;
  display: block;
}

.main-nav a.active, .main-nav a:hover {
  color: var(--primary-color);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-speed) ease;
}

.main-nav a:hover::after, .main-nav a.active::after {
  width: 80%;
}

/* Mobile-first centering defaults */

.menu-toggle {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  padding: 0;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--text-color);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== FOOTER STYLES ===== */
footer {
  background-color: var(--bg-light);
  color: var(--text-light);
  padding: 2rem 0;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

/* Mobile Footer - Zentriert */
.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

/* Mobile Logo */
.footer-logo {
  width: 50px;
  height: auto;
  margin-bottom: 0.5rem;
}

/* Footer Sections */
.footer-company {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-company h3 {
  font-size: 1.3rem;
  color: var(--text-color);
  margin-bottom: 0.25rem;
}

.footer-company p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.9rem;
}

.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.footer-nav h4, .footer-legal h4 {
  color: var(--text-color);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-nav ul, .footer-legal ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav a, .footer-legal a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover, .footer-legal a:hover {
  color: var(--primary-color);
}

.footer-contact-social {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.footer-contact-social h4 {
  color: var(--text-color);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.footer-contact a {
  color: var(--text-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

.footer-socials {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.footer-socials a {
  font-size: 1.2rem;
  color: var(--text-light);
  transition: color 0.3s ease;
}

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

/* Footer Bottom */
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.footer-bottom .copyright {
  color: var(--text-light);
  font-size: 0.85rem;
}

/* Desktop Footer - Strukturiert */
@media (min-width: 1024px) {
  .footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: 
      "contact services legal"
      "company company company";
    gap: 3rem 2rem;
    align-items: start;
  }
  
  .footer-contact-social {
    grid-area: contact;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-nav {
    grid-area: services;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-legal {
    grid-area: legal;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-company {
    grid-area: company;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
  }
  
  .footer-company h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .footer-logo {
    width: 70px;
    margin-bottom: 1rem;
  }
  
  .footer-nav h4, .footer-legal h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    text-align: center;
  }
  
  .footer-nav ul, .footer-legal ul {
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
  }
  
  .footer-contact-social h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    text-align: center;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .footer-contact a {
    justify-content: center;
  }
  
  .footer-socials {
    justify-content: center;
  }
}

/* Site logo sizing - Clean and consistent across all pages */
.site-logo { 
  height: 48px; 
  width: auto; 
  display: block; 
  filter: none !important;
  opacity: 1 !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

@media (min-width: 768px) { 
  .site-logo { 
    height: 56px; 
  } 
}

/* Mobile: remove vertical spacing around logo in header */
@media (max-width: 768px) { 
  header { 
    padding: 0 !important; 
  } 
}

/* Custom Scrollbar (WebKit) */
*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-track { background: rgba(15, 23, 42, 0.25); border-radius: 8px; }
*::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--primary-color), var(--secondary-color)); border-radius: 8px; border: 2px solid rgba(0,0,0,0); background-clip: padding-box; }
*::-webkit-scrollbar-thumb:hover { filter: brightness(1.05); }

/* Firefox scrollbar */
html { scrollbar-width: thin; scrollbar-color: var(--primary-color) rgba(15,23,42,0.25); }

.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
  position: relative;
}

.hero-with-background {
  min-height: 70vh;
  position: relative;
  overflow: hidden;
}

.hero-with-background .hero-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 70vh; /* Limit to hero section height */
  z-index: 0;
  pointer-events: none;
  display: block;
  background: linear-gradient(135deg, #0b1120 0%, #1a1f3a 50%, #0f1729 100%);
}

.hero-with-background .hero-media img {
  width: 100%;
  height: 100%;
  max-height: 70vh; /* Limit to hero section height */
  object-fit: cover;
  object-position: center center;
  display: block;
  pointer-events: none;
  opacity: 0.8;
}

/* Ensure hero-media has proper background even without image */
.hero .hero-media {
  background: linear-gradient(135deg, #181a1b 0%, #23272f 50%, #24292f 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 70vh; /* Limit to hero section height */
  overflow: hidden;
  z-index: 0;
}

/* Prevent hero-media from extending beyond hero container */
.hero-media:not(.hero .hero-media) {
  max-height: 0 !important;
  display: none !important;
}

.hero .hero-media::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(29, 78, 216, 0.15) 0%, transparent 55%),
              radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.12) 0%, transparent 55%);
  z-index: 1;
}

/* Fallback for picture element - make it background */
.hero .hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 70vh; /* Limit to hero section height */
  z-index: 0;
}

.hero-media picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.8;
  z-index: 0;
}

/* If image fails to load, show background */
.hero-media picture:not(:has(img[src])) {
  background: linear-gradient(135deg, #181a1b 0%, #23272f 50%, #24292f 100%);
}

.hero-media picture img[src=""] {
  opacity: 0;
}

/* Ensure hero content is above background */
.hero-content {
  position: relative;
  z-index: 10;
}

.hero .hero-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 70vh; /* Limit to hero section height */
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.15) 0%, rgba(59, 130, 246, 0.12) 50%, rgba(37, 99, 235, 0.08) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Remove all hero effects */
.hero {
  transform: none !important;
  transition: none !important;
  animation: none !important;
}

.hero-content {
  transform: none !important;
  transition: none !important;
  animation: none !important;
}

.hero-text-container {
  transform: none !important;
  transition: none !important;
  animation: none !important;
}

.hero h1, .hero h2 {
  transform: none !important;
  transition: none !important;
  animation: none !important;
}

.hero p {
  transform: none !important;
  transition: none !important;
  animation: none !important;
}

.hero-cta-group {
  transform: none !important;
  transition: none !important;
  animation: none !important;
}

.hero .btn {
  transform: none !important;
  transition: none !important;
  animation: none !important;
}

.hero-background-overlay {
  transform: none !important;
  transition: none !important;
  animation: none !important;
}

/* Hero media always visible */
.hero .hero-media {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-text-container {
  background: rgba(35, 39, 47, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(36, 41, 47, 0.3);
  border-radius: 20px;
  padding: 3.5rem 2.5rem;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero h2, .hero h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.95), rgba(37, 99, 235, 0.9), rgba(29, 78, 216, 0.85));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.hero p {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* Fallback: Ensure service cards are visible even if AOS fails */
.service-card {
  opacity: 1 !important;
  transform: translate(0px, 0px) !important;
}

/* Only apply AOS animation if AOS is properly loaded */
.aos-animate .service-card {
  opacity: 1;
  transform: translate(0px, 0px);
}

/* Fallback: Ensure SEO outline section is visible even if AOS fails */
.seo-outline {
  opacity: 1 !important;
  transform: translate(0px, 0px) !important;
}

/* Only apply AOS animation if AOS is properly loaded */
.aos-animate .seo-outline {
  opacity: 1;
  transform: translate(0px, 0px);
}

/* Global fallback: All AOS elements should be visible by default */
[data-aos] {
  opacity: 1 !important;
  transform: translate(0px, 0px) !important;
}

/* Only apply AOS animation if AOS is properly loaded and element has aos-animate class */
[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0px, 0px);
}

.services-grid, .features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
  justify-items: center;
}

/* Features: zentriere letzte Reihe bei unvollständiger Spalte */
.features-grid { justify-content: center; }
.features-grid:after {
  content: '';
  flex: 0 0 240px;
}
@media (min-width: 992px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Responsive columns for features grid */
@media (min-width: 576px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .features-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
}

.services .service-card-link:focus {
  box-shadow: none;
}

.services .service-card-link:focus-visible {
  outline: 3px solid #3b82f6;
  outline-offset: 4px;
}

.services .service-card {
  border: 1px solid var(--border-color) !important;
  box-shadow: var(--box-shadow);
}

.btn-link {
  color: var(--primary-color);
  font-weight: 600;
  margin-top: auto;
  padding-top: 1rem;
  transition: color var(--transition-speed) ease;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-text p { line-height: 1.8; color: var(--text-light); margin: 0 0 1rem 0; }
.about-text p + p { margin-top: 0.25rem; }
.about-text a {
  color: var(--primary-color); text-decoration: underline; text-underline-offset: 3px; }

.about-features { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
.about-features .feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.75rem 1rem;
}

/* Show <br class="mobile-only"> only on small screens */

.about-features i, .about-features svg {
  color: var(--primary-color);
  font-size: 0.9rem;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Fix oversized icons in feature divs */
.feature .icon-sm {
  width: 0.9rem !important;
  height: 0.9rem !important;
  font-size: 0.9rem !important;
}

/* Fix list items with duplicate icons */
li svg.icon-sm {
  width: 0.9rem !important;
  height: 0.9rem !important;
  font-size: 0.9rem !important;
  margin-right: 0.5rem;
}

/* Remove duplicate list styling */
li {
  list-style: none !important;
  padding-left: 0 !important;
}



.faq-section {
  padding: 4rem 0;
}

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

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

.faq-items {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.faq-item {
  margin-bottom: 1rem;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
}


.faq-item:hover { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: var(--text-color);
  border-radius: inherit;
}

.faq-question span { flex: 1; }

.faq-question:hover { background-color: rgba(0, 0, 0, 0.03); }
/** Accessible FAQ focus styles */
.faq-question:focus {
  box-shadow: none;
}

.faq-question:focus-visible {
  outline: 3px solid #3b82f6;
  outline-offset: 3px;
}
.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.25s ease;
  color: var(--primary-color);
  stroke-width: 1.8;
}







