:root {
  --background: #fafafa; /* 0 0% 98% */
  --foreground: #1a1a1a; /* 0 0% 10% */
  --card: #ffffff;
  --card-foreground: #1a1a1a;
  --popover: #ffffff;
  --popover-foreground: #1a1a1a;
  --primary: #1a1a1a;
  --primary-foreground: #ffffff;
  --primary-hover: #333333;
  --secondary: #f4f4f5;
  --secondary-foreground: #1a1a1a;
  --muted: #f4f4f5;
  --muted-foreground: #737373;
  --accent: #f4f4f5;
  --accent-foreground: #1a1a1a;
  --border: #e5e5e5;
  --input: #e5e5e5;
  --radius: 1rem;
    
  /* Highlights */
  --highlight-yellow: #fde047; /* 51 100% 65% mapped to Tailwind hex */
  --highlight-green: #86efac; /* 145 65% 72% mapped to Tailwind hex */
  --highlight-blue: #7dd3fc;
  --highlight-pink: #f9a8d4;
  
  --site-width: 1280px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--foreground);
  background-color: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

.container {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 0 2rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 3rem;
  }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: var(--radius);
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  border: 1px solid transparent;
}

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

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

.btn-outline {
  background-color: transparent;
  border-color: var(--border);
  color: var(--foreground);
}

.btn-pill {
  border-radius: 9999px;
  font-weight: 500;
}

.btn-outline:hover {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background-color: rgba(250, 250, 250, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-container {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
}

.logo-box {
  background-color: var(--primary);
  color: white;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 0.875rem;
}

.main-nav ul {
  display: flex;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.main-nav a {
  color: var(--foreground);
  opacity: 0.6;
  transition: opacity 0.2s, color 0.2s;
}

.main-nav a:hover {
  opacity: 1;
  color: var(--primary);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--foreground);
  cursor: pointer;
}

.mobile-nav {
  display: none;
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1.5rem;
}

@media (max-width: 768px) {
  .main-nav, .d-none-mobile {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 2rem 0 1.5rem;
  background-color: var(--background);
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
  }
}

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

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.25rem;
  }
}

.highlight-yellow {
  display: inline;
  background: linear-gradient(180deg, transparent 60%, var(--highlight-yellow) 60%);
  color: inherit;
}

.highlight-green {
  display: inline;
  background: linear-gradient(180deg, transparent 60%, var(--highlight-green) 60%);
  color: inherit;
}

.highlight-blue {
  display: inline;
  background: linear-gradient(180deg, transparent 60%, var(--highlight-blue) 60%);
  color: inherit;
}

.highlight-pink {
  display: inline;
  background: linear-gradient(180deg, transparent 60%, var(--highlight-pink) 60%);
  color: inherit;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

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

/* --- Hero Showcase Scroll Animation --- */
.hero-showcase {
  position: relative;
  height: 700px;
  overflow: hidden;
  border-radius: 1.5rem;
}

@media (min-width: 1024px) {
  .hero-showcase {
    height: 600px;
  }
}

.showcase-fade-mask {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  height: 100%;
  /* Fade out top & bottom */
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
}

.showcase-column {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.showcase-track {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.showcase-track img {
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  display: block;
  flex-shrink: 0;
}

/* Scroll UP animation */
.scroll-up .showcase-track {
  animation: scrollUp 23s linear infinite;
}

/* Scroll DOWN animation */
.scroll-down .showcase-track {
  animation: scrollDown 25s linear infinite;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes scrollDown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

.scroll-down-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin: 1.5rem auto 0;
  border-radius: 50%;
  border: 2px solid var(--foreground);
  color: var(--foreground);
  transition: all 0.3s;
  animation: bounce 1s infinite;
  background: transparent;
}

.scroll-down-btn:hover {
  background-color: var(--foreground);
  color: var(--background);
}

@keyframes bounce {
  0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8,0,1,1); }
  50% { transform: none; animation-timing-function: cubic-bezier(0,0,0.2,1); }
}

/* ==========================================================================
   GENERIC SECTIONS
   ========================================================================== */
.section {
  padding: 4rem 0;
}

#problems,
#ki-tools {
  padding: 5.5rem 0;
}

.bg-section-light {
  background-color: #ffffff;
}

.bg-section-gray {
  background-color: #f7f7f7;
}

.section-header {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-subtitle {
  color: var(--muted-foreground);
  font-size: 1rem;
  max-width: 42rem;
  margin: 0 auto;
}

/* ==========================================================================
   PROJECTS
   ========================================================================== */
.projects-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .projects-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.project-card {
  background-color: var(--card);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
  display: block;
}

.project-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.project-image-box {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 1rem 1rem 0;
  border-radius: 1rem;
}

.project-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e5e7eb, #d1d5db);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--muted-foreground);
  font-size: 1.125rem;
}

.project-placeholder-cta {
  flex-direction: column;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary, #1e3a8a), var(--primary-hover, #2563eb));
  color: #fff;
}

.project-placeholder-cta i {
  font-size: 2rem;
}

.project-card-cta {
  border: 2px dashed rgba(30, 58, 138, 0.25);
}

.project-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.project-card:hover .project-image-box img {
  transform: scale(1.05);
}

.project-content {
  padding: 1.5rem;
}

.project-title {
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-category {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-foreground);
  display: block;
  margin-bottom: 0.5rem;
}

.project-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ==========================================================================
   CAROUSEL & BADGES
   ========================================================================== */
.carousel-container {
  position: relative;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 4rem;
}

@media (max-width: 640px) {
  .carousel-container {
    padding: 0 1rem;
  }
}

.carousel-track-wrap {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  flex: 0 0 100%;
}

.carousel-control {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: background 0.2s;
  color: var(--foreground);
}

.carousel-control:hover {
  background: var(--muted);
}

.carousel-control.prev {
  left: 0;
}

.carousel-control.next {
  right: 0;
}

.badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.badge-muted {
  background-color: var(--muted);
  color: var(--foreground);
}

.badge-green {
  background-color: rgba(134, 239, 172, 0.2);
  color: var(--foreground);
}

.image-box {
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
}

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

.grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

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

.font-semibold {
  font-weight: 600;
}

.text-lg {
  font-size: 1.125rem;
}

.p-4 { padding: 1rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-4 { margin-top: 1rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-4xl { max-width: 56rem; }

/* ==========================================================================
   KI TOOLS CAROUSEL
   ========================================================================== */
.ki-carousel {
  position: relative;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0;
}

.ki-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.ki-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #c4c4c4;
  border: 2px solid #999;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.ki-dot.active {
  background-color: var(--primary);
  border-color: var(--primary);
  transform: scale(1.3);
}

/* KI Carousel Arrows */
.ki-arrow {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background-color: var(--card);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--foreground);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
  z-index: 2;
}

.ki-arrow:hover {
  background-color: var(--muted);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.ki-arrow-prev {
  left: -1.25rem;
}

.ki-arrow-next {
  right: -1.25rem;
}

@media (max-width: 640px) {
  .ki-arrow {
    display: none;
  }
}

.ki-carousel-track-wrap {
  overflow: hidden;
  border-radius: 1.5rem;
}

.ki-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.ki-slide {
  min-width: 100%;
  flex: 0 0 100%;
}

.ki-slide-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background-color: var(--card);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .ki-slide-inner {
    grid-template-columns: 1fr 1fr;
    padding: 2.5rem;
  }
}

.ki-slide-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ki-slide-number {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.ki-slide-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.ki-slide-title i {
  color: var(--primary);
  margin-right: 0.5rem;
}

.ki-slide-desc {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.ki-slide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ki-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--muted);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--foreground);
}

/* KI Slide Visual - Before/After */
.ki-slide-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ki-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
}

.ki-ba-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* KI Slide Visual - Flow Card */
.ki-visual-card {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 1rem;
  padding: 2rem;
  width: 100%;
  text-align: center;
}

.ki-visual-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.ki-visual-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.ki-flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--foreground);
  background-color: var(--card);
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  min-width: 5rem;
}

.ki-flow-step i {
  font-size: 1.25rem;
  color: var(--primary);
}

.ki-flow-arrow {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   PROBLEMS
   ========================================================================== */
.problems-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.problem-card {
  background-color: var(--card);
  padding: 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}

.problem-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.problem-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background-color: rgba(234, 179, 8, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.problem-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.problem-desc {
  color: var(--muted-foreground);
}

/* ==========================================================================
   PROBLEMS – 2x2 Grid with Icons (final version)
   ========================================================================== */
.problems-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .problems-grid-2x2 {
    grid-template-columns: 1fr 1fr;
  }
}

.problems-grid-2x2 .problem-list-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background-color: var(--card);
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border-bottom: none;
  align-items: flex-start;
}

.problem-list-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: rgba(234, 179, 8, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.125rem;
  color: var(--primary);
}

/* ==========================================================================
   PROBLEMS VARIANTE C – Nummerierte Liste
   ========================================================================== */
.problems-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.problem-list-item {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.problem-list-item:last-child {
  border-bottom: none;
}

.problem-list-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 4rem;
  opacity: 0.3;
}

.problem-list-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.problem-list-content p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ==========================================================================
   PROBLEMS VARIANTE D – Split-Screen Checkliste
   ========================================================================== */
.problems-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .problems-split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.problems-split-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.problems-split-cta-text {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.6;
}

.problems-split-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.problems-check-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background-color: var(--card);
  padding: 1.25rem;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.problems-check-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #fee2e2;
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 700;
}

.problems-check-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.problems-check-item p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }
}

.pricing-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.75rem;
  padding: 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
  background-color: #141414;
  color: #ffffff;
  border-color: #141414;
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.35);
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background-color: var(--highlight-yellow);
  color: #111;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.3);
}

.pricing-head {
  margin-bottom: 1.75rem;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.pricing-lead {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.5;
}

.pricing-card.popular .pricing-lead {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-price-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.pricing-card.popular .pricing-price-row {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.pricing-price-meta {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

.pricing-card.popular .pricing-price-meta {
  color: rgba(255, 255, 255, 0.6);
}

.pricing-features {
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.pricing-check {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 9999px;
  background-color: rgba(134, 239, 172, 0.28);
  color: #16a34a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
}

.pricing-card.popular .pricing-check {
  background-color: rgba(134, 239, 172, 0.18);
  color: #86efac;
}

.pricing-card.popular .btn-primary {
  background-color: #ffffff;
  color: #141414;
}

.pricing-card.popular .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.text-green {
  color: #22c55e;
}

.btn-block {
  width: 100%;
}
/* ==========================================================================
   CONTACT FORM – Split Layout
   ========================================================================== */
.contact-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .contact-split {
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
  }
}

/* Left: Info Panel */
.contact-info-panel {
  display: flex;
  flex-direction: column;
}

.contact-info-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.contact-info-subtitle {
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 2.5rem;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
}

.contact-info-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 0.15rem;
}

.contact-info-item a {
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.2s;
}

.contact-info-item a:hover {
  color: var(--primary);
  opacity: 0.8;
}

/* Right: Form Panel */
.contact-form-panel {
  background-color: var(--card);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .contact-form-panel {
    padding: 3rem;
  }
}

.contact-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-form-promise {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2rem;
}

.contact-form-promise i {
  margin-right: 0.25rem;
  color: var(--highlight-yellow);
}

.contact-form-v2 {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #374151;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 0.875rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  background-color: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--primary);
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.4;
}

.link-primary {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}

.link-primary:hover {
  opacity: 0.8;
}

.form-error {
  background-color: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  margin: 0;
}

.contact-form-success[hidden] {
  display: none;
}

.contact-form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0;
  gap: 1rem;
}

.contact-form-success-icon {
  font-size: 3.5rem;
  color: var(--primary);
  line-height: 1;
}

.contact-form-success-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.contact-form-success-text {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin: 0;
  max-width: 32rem;
}

.contact-form-success-hint {
  font-size: 0.95rem;
  color: var(--foreground);
  margin: 0.5rem 0 0;
  max-width: 32rem;
}

.contact-form-success .btn {
  margin-top: 0.5rem;
  gap: 0.5rem;
}

/* ==========================================================================
   SECTION OVERLINE
   ========================================================================== */
.section-overline {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   PROCESS — Timeline
   ========================================================================== */
.process-timeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 2rem;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--border) 6%,
    var(--border) 94%,
    transparent 100%
  );
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 8px #f7f7f7;
  flex-shrink: 0;
}

.timeline-visual {
  order: 3;
  margin-top: 1.25rem;
  grid-column: 1 / -1;
  min-width: 0;
}

.timeline-content {
  display: flex;
  flex-direction: column;
  padding-top: 0.75rem;
}

.timeline-title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.timeline-optional {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted-foreground);
  letter-spacing: 0;
}

.timeline-desc {
  color: var(--muted-foreground);
  line-height: 1.65;
  font-size: 0.975rem;
}

/* Visual card inside timeline */
.timeline-visual-card {
  position: relative;
  border-radius: 1.25rem;
  padding: 2rem;
  min-height: 9rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  overflow: hidden;
  isolation: isolate;
}

.timeline-visual-card i {
  font-size: 2.25rem;
  color: var(--foreground);
  opacity: 0.9;
}

.timeline-visual-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.6) 2px, transparent 3px),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.4) 2px, transparent 3px),
    radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.5) 2px, transparent 3px);
  opacity: 0.7;
  z-index: -1;
}

.tl-tone-blue  { background-color: rgba(125, 211, 252, 0.28); }
.tl-tone-yellow{ background-color: rgba(253, 224, 71, 0.35); }
.tl-tone-green { background-color: rgba(134, 239, 172, 0.35); }
.tl-tone-pink  { background-color: rgba(249, 168, 212, 0.35); }

.timeline-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: rgba(255, 255, 255, 0.85);
  color: var(--foreground);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  backdrop-filter: blur(4px);
}

.timeline-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.timeline-chip {
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--foreground);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 9999px;
}

@media (min-width: 900px) {
  .process-timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline-step {
    grid-template-columns: 1fr 5rem 1fr;
    gap: 2.5rem;
    align-items: center;
    padding-bottom: 3.5rem;
  }

  .timeline-marker {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    box-shadow: 0 0 0 10px #f7f7f7;
  }

  .timeline-content {
    grid-column: 3;
    grid-row: 1;
    padding-top: 0;
  }

  .timeline-visual {
    grid-column: 1;
    grid-row: 1;
    order: initial;
    margin-top: 0;
  }

  /* Alternate: even steps flip content/visual */
  .timeline-step:nth-child(even) .timeline-visual {
    grid-column: 3;
  }

  .timeline-step:nth-child(even) .timeline-content {
    grid-column: 1;
    text-align: right;
    align-items: flex-end;
  }
}

/* ==========================================================================
   DELIVERABLES — Upgraded Card Grid
   ========================================================================== */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .deliverables-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .deliverables-grid {
    grid-template-columns: 1fr;
  }
}

.deliverable-card {
  position: relative;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.deliverable-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 35px -20px rgba(0, 0, 0, 0.18);
  border-color: transparent;
}

.deliverable-card.is-optional {
  background-color: #fafafa;
}

.deliverable-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  background-color: rgba(0, 0, 0, 0.05);
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
}

.deliverable-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.deliverable-icon.tone-blue   { background-color: rgba(125, 211, 252, 0.28); color: #0369a1; }
.deliverable-icon.tone-yellow { background-color: rgba(253, 224, 71, 0.4);  color: #92400e; }
.deliverable-icon.tone-green  { background-color: rgba(134, 239, 172, 0.4); color: #166534; }
.deliverable-icon.tone-pink   { background-color: rgba(249, 168, 212, 0.4); color: #9d174d; }

.deliverable-title {
  font-size: 1.075rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.deliverable-desc {
  color: var(--muted-foreground);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ==========================================================================
   MONEY-BACK BOX (under Pricing)
   ========================================================================== */
.money-back-box {
  background-color: #141414;
  color: #ffffff;
  border-radius: 1.75rem;
  padding: 2.25rem 2.5rem;
  max-width: 56rem;
  margin: 3.5rem auto 0;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.35);
}

@media (max-width: 640px) {
  .money-back-box {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
}

.money-back-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background-color: rgba(249, 168, 212, 0.2);
  color: var(--highlight-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.money-back-content {
  flex: 1;
}

.money-back-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #ffffff;
}

.money-back-text {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ==========================================================================
   SOCIAL PROOF — Big Stats + Testimonial
   ========================================================================== */
.stats-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem 0 2rem;
}

@media (max-width: 900px) {
  .stats-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .stats-showcase {
    grid-template-columns: 1fr;
  }
}

.stat-big {
  text-align: center;
  padding: 1rem 0.5rem;
  position: relative;
}

@media (min-width: 901px) {
  .stat-big + .stat-big::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background-color: var(--border);
  }
}

.stat-big-value {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.stat-big-value span {
  color: var(--muted-foreground);
  font-weight: 700;
}

.stat-big-label {
  color: var(--muted-foreground);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

/* Testimonial */
.testimonial-card {
  position: relative;
  background-color: #fafafa;
  border: 1px solid var(--border);
  border-radius: 1.75rem;
  padding: 2.5rem;
  max-width: 52rem;
  margin: 0 auto;
  overflow: hidden;
  height: 100%;
}

/* Testimonials Slider — shows 2 at a time on desktop, 1 on mobile */
.testimonials-slider {
  position: relative;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 3rem;
}

@media (max-width: 640px) {
  .testimonials-slider {
    padding: 0;
  }
}

.testimonials-track-wrap {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  min-width: 100%;
  flex: 0 0 100%;
  padding: 0.5rem;
  box-sizing: border-box;
  display: flex;
}

@media (min-width: 768px) {
  .testimonial-slide {
    min-width: 50%;
    flex: 0 0 50%;
  }
}

.testimonial-slide .testimonial-card {
  margin: 0;
  padding: 2rem;
  width: 100%;
  flex: 1;
  max-width: none;
}

.testimonial-slide .testimonial-text {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .testimonial-slide .testimonial-text {
    font-size: 1.1rem;
  }
}

.testimonials-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background-color: var(--card);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--foreground);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
  z-index: 2;
}

.testimonials-arrow:hover {
  background-color: var(--muted);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.testimonials-arrow-prev { left: 0; }
.testimonials-arrow-next { right: 0; }

@media (max-width: 640px) {
  .testimonials-arrow { display: none; }
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}

.testimonials-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #c4c4c4;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.testimonials-dot.active {
  background-color: var(--primary);
  transform: scale(1.3);
}

/* Stats section (placed below hero) — tighten spacing */
.section-stats {
  padding: 2.5rem 0 3rem;
}

.section-stats .stats-showcase {
  padding: 0;
}

.testimonial-quote-mark {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 5rem;
  color: rgba(125, 211, 252, 0.35);
  line-height: 1;
  pointer-events: none;
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
  color: #f59e0b;
  font-size: 1rem;
}

.testimonial-text {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--foreground);
  line-height: 1.55;
  letter-spacing: -0.005em;
  margin-bottom: 1.75rem;
}

@media (min-width: 768px) {
  .testimonial-text {
    font-size: 1.4rem;
  }
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.testimonial-author-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--highlight-yellow), var(--highlight-green));
  color: var(--foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.testimonial-author-name {
  font-weight: 700;
  color: var(--foreground);
}

.testimonial-author-role {
  font-size: 0.85rem;
  color: var(--muted-foreground);
}

/* ==========================================================================
   ABOUT — Split Layout
   ========================================================================== */
.about-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .about-split {
    grid-template-columns: 1fr 1.15fr;
    gap: 4rem;
  }
}

/* Visual */
.about-visual {
  position: relative;
  background: linear-gradient(150deg, rgba(125, 211, 252, 0.32) 0%, rgba(134, 239, 172, 0.3) 100%);
  border-radius: 1.75rem;
  aspect-ratio: 1 / 1;
  max-width: 26rem;
  width: 100%;
  margin: 0 auto;
  overflow: visible;
}

.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.7) 3px, transparent 4px),
    radial-gradient(circle at 75% 20%, rgba(255, 255, 255, 0.5) 2px, transparent 3px),
    radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.6) 2px, transparent 3px),
    radial-gradient(circle at 30% 85%, rgba(255, 255, 255, 0.55) 2px, transparent 3px);
  opacity: 0.8;
}

.about-visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-avatar {
  width: 10rem;
  height: 10rem;
  border-radius: 9999px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  color: var(--muted-foreground);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.25);
}

.about-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.75rem;
  z-index: 1;
}

.about-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  z-index: 3;
}

.about-badge-primary {
  top: 22%;
  left: -1.5rem;
  background: #141414;
  color: #ffffff;
  padding: 0.65rem 1.1rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  border-radius: 1rem;
}

.about-badge-title {
  font-size: 0.95rem;
  font-weight: 700;
}

.about-badge-role {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.about-badge-accent {
  bottom: 10%;
  right: -1rem;
  background: var(--highlight-yellow);
  color: #111;
  white-space: normal;
  max-width: 15rem;
  line-height: 1.25;
  border-radius: 1rem;
  align-items: flex-start;
}

.about-badge-accent i {
  font-size: 0.85rem;
}

@media (max-width: 480px) {
  .about-badge-primary {
    left: 0;
  }
  .about-badge-accent {
    right: 0;
  }
}

/* Combined mobile card — replaces both floating badges on small screens */
.about-badge-combined {
  display: none;
}

@media (max-width: 767px) {
  .about-badge-primary,
  .about-badge-accent {
    display: none;
  }

  .about-badge-combined {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: 22rem;
    padding: 0.85rem 1rem;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.3);
    z-index: 3;
  }

  .about-combined-name {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
  }

  .about-combined-title {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.005em;
  }

  .about-combined-role {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
  }

  .about-combined-study {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding-top: 0.55rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.78rem;
    line-height: 1.35;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
  }

  .about-combined-study i {
    color: var(--highlight-yellow);
    font-size: 0.85rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
  }
}

/* Content */
.about-content {
  display: flex;
  flex-direction: column;
}

.about-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0.25rem 0 1.25rem;
}

@media (min-width: 1024px) {
  .about-title {
    font-size: 2.5rem;
  }
}

.about-text {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about-text:last-of-type {
  margin-bottom: 1.75rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.25rem;
  margin-bottom: 2rem;
}

@media (max-width: 540px) {
  .about-highlights {
    grid-template-columns: 1fr;
  }
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--foreground);
}

.about-highlight i {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 9999px;
  background-color: rgba(134, 239, 172, 0.4);
  color: #16a34a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.about-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-card {
  background-color: var(--card);
  border-radius: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--foreground);
}

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

.faq-chevron {
  transition: transform 0.3s;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-content {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq-content p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ==========================================================================
   LEGAL PAGES (Impressum, Datenschutz)
   ========================================================================== */
.legal-content {
  color: var(--foreground);
}

.legal-title {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .legal-title {
    font-size: 2.75rem;
  }
}

.legal-section-heading {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 3rem 0 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.legal-section-heading:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 1.5rem;
}

.legal-heading {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 1.75rem 0 0.5rem;
  color: var(--foreground);
}

.legal-subheading {
  font-size: 1rem;
  font-weight: 700;
  margin: 1.25rem 0 0.5rem;
  color: var(--foreground);
}

.legal-block {
  color: var(--muted-foreground);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 0.85rem;
}

.legal-block a {
  color: var(--primary);
  font-weight: 600;
}

.legal-uppercase {
  text-transform: uppercase;
  font-size: 0.85rem;
  line-height: 1.65;
  letter-spacing: 0.01em;
  background-color: #f7f7f7;
  border-left: 3px solid var(--border);
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.legal-list {
  color: var(--muted-foreground);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0 0 0.85rem 1.5rem;
  list-style: disc;
}

.legal-list li {
  margin-bottom: 0.5rem;
}

.legal-placeholder {
  background-color: rgba(253, 224, 71, 0.18);
  border-left: 3px solid var(--highlight-yellow);
  padding: 0.7rem 1rem;
  border-radius: 0;
  margin-bottom: 0;
  font-style: italic;
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.6;
}

.legal-placeholder:first-of-type,
*:not(.legal-placeholder) + .legal-placeholder {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  padding-top: 0.9rem;
}

.legal-placeholder:last-of-type,
.legal-placeholder:has(+ *:not(.legal-placeholder)) {
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  padding-bottom: 0.9rem;
  margin-bottom: 0.85rem;
}

.legal-placeholder strong {
  font-style: normal;
  font-weight: 700;
  color: var(--foreground);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  background-color: var(--background);
}

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

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copy {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.footer-links a {
  color: var(--muted-foreground);
  transition: color 0.2s;
}

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