/* ============================================================
   LTX Solutions – Premium Static Website
   ============================================================ */

/* ── Reset & Tokens ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  /* Palette */
  --bg: #FFFFFF;
  --text: #2E2C2F;
  --brand: #455545;
  --accent: #F8C462;
  --beige: #F5F0EB;
  --gray-100: #F7F7F7;
  --gray-200: #ECECEC;
  --gray-400: #B0B0B0;
  --white: #FFFFFF;

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, .06);
  --shadow-hover: 0 8px 40px rgba(0, 0, 0, .10);

  /* Layout */
  --max-w: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

ul {
  list-style: none
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit
}

/* ── Utility ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.19, 1, .22, 1), transform .7s cubic-bezier(.19, 1, .22, 1);
}

.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Hero on-load animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInBottom {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__left {
  animation: fadeInLeft 1.4s cubic-bezier(.19, 1, .22, 1) both;
}

.hero__right {
  animation: fadeInLeft 1.4s cubic-bezier(.19, 1, .22, 1) .3s both;
}

.hero__headline {
  animation: fadeInBottom 1.4s cubic-bezier(.19, 1, .22, 1) .6s both;
}

/* stagger children */
.fcard.reveal:nth-child(2),
.port-card.reveal:nth-child(2) {
  transition-delay: .12s
}

.fcard.reveal:nth-child(3),
.port-card.reveal:nth-child(3) {
  transition-delay: .24s
}

/* ============================================================
   HEADER – Floating Pill
   ============================================================ */
.header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 48px);
  max-width: var(--max-w);
  border-radius: 999px;
  background: rgba(255, 255, 255, .25);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
  border: 1px solid rgba(255, 255, 255, .3);
  transition: background .35s, box-shadow .35s, width .35s;
}

.header--scrolled {
  background: rgba(255, 255, 255, .45);
  box-shadow: 0 6px 32px rgba(0, 0, 0, .08), 0 1px 3px rgba(0, 0, 0, .05);
}

.header__inner {
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo img {
  height: 30px;
  /* Bestimmt die feste "Dicke" der NavBar */
  width: auto;
  object-fit: contain;
  transform: scale(2.6);
  /* Vergrößert das Logo rein optisch! */
  transform-origin: left center;
  /* Damit es nicht nach links aus dem Rand rutscht */
}

.header__nav {
  display: flex;
  gap: var(--space-lg);
}

.header__link {
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .03em;
  text-transform: uppercase;
  position: relative;
  padding: var(--space-xs) 0;
  transition: color .25s;
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--brand);
  transition: width .3s cubic-bezier(.25, .8, .5, 1);
}

.header__link:hover::after {
  width: 100%;
}

/* Menu button */
.header__menu-btn {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--text);
  position: relative;
  flex-shrink: 0;
}

.header__menu-btn span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.header__menu-btn span:nth-child(1) {
  transform: translate(-50%, -4px)
}

.header__menu-btn span:nth-child(2) {
  transform: translate(-50%, 4px)
}

.header__menu-btn--open span:nth-child(1) {
  transform: translate(-50%, 0) rotate(45deg)
}

.header__menu-btn--open span:nth-child(2) {
  transform: translate(-50%, 0) rotate(-45deg)
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(80px + 20px) var(--gutter) var(--space-xl);
  position: relative;
  overflow: hidden;
}

.hero__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-xl);
  align-items: center;
}

/* Left */
.hero__left {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.hero__intro {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.4;
}

.hero__sub {
  font-size: .815rem;
  color: var(--gray-400);
  max-width: 260px;
}

.hero__cta {
  margin-top: var(--space-xs);
}

.hero__vertical {
  writing-mode: vertical-lr;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-top: var(--space-lg);
}

/* Center – 3D object */
.hero__center {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 800px;
}

.hero__3d {
  position: relative;
  width: clamp(220px, 28vw, 380px);
  height: clamp(220px, 28vw, 380px);
  transform-style: preserve-3d;
  transition: transform .15s ease-out;
}

.hero__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2.5px solid;
}

.hero__ring--1 {
  border-color: var(--brand);
  animation: ring-spin 12s linear infinite;
}

.hero__ring--2 {
  border-color: var(--accent);
  inset: 15%;
  animation: ring-spin 10s linear infinite reverse;
}

.hero__ring--3 {
  border-color: rgba(69, 85, 69, .3);
  inset: 30%;
  animation: ring-spin 8s linear infinite;
}

.hero__sphere {
  position: absolute;
  inset: 38%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 0 60px rgba(69, 85, 69, .25), inset 0 -8px 20px rgba(0, 0, 0, .15);
}

@keyframes ring-spin {
  0% {
    transform: rotate(0) rotateX(60deg)
  }

  100% {
    transform: rotate(360deg) rotateX(60deg)
  }
}

/* Right - Image */
.hero__right {
  display: flex;
  justify-content: flex-end;
  /* align-items: center; - optional */
}

.hero__image {
  width: 100%;
  height: auto;
  max-width: 600px;
  /* Reduced from 650px to prevent layout shift */
  /* === MANUAL POSITIONING ===
     Change these two values to move the image:
     - top:   negative = up,  positive = down   (e.g. -30px, 20px)
     - left:  negative = left, positive = right  (e.g. -20px, 40px)  */
  position: relative;
  top: 40px;
  left: 150px;
  animation: float-atom 6s ease-in-out infinite;
}

@keyframes float-atom {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Overlapping headline */
.hero__headline {
  max-width: var(--max-w);
  margin: var(--space-xl) auto 0;
  width: 100%;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-top: calc(-1 * clamp(2rem, 5vw, 4.5rem));
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.hero__headline span {
  display: block
}

/* ============================================================
   TRUSTED BY
   ============================================================ */
.trusted {
  padding: var(--space-xl) var(--gutter);
  background: var(--bg);
}

.trusted__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.trusted__label {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.trusted__line {
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

.trusted__text {
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .15em;
  color: var(--gray-400);
  white-space: nowrap;
}

.trusted__track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.trusted__track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: trusted-scroll 25s linear infinite;
}

.trusted__logo {
  height: 140px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(.45);
  transition: filter .3s ease;
  flex-shrink: 0;
}

.trusted__logo:hover {
  filter: grayscale(0%) opacity(1);
}

@keyframes trusted-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-25%);
  }
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  padding: calc(var(--space-3xl) * 1.5) var(--gutter) var(--space-3xl);
  background: var(--bg);
}

.features__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.features__headline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  line-height: 1.15;
  max-width: 640px;
  margin-bottom: var(--space-xl);
}

.features__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.features__cta {
  margin-top: var(--space-xl);
  text-align: center;
}

/* Feature card */
.fcard {
  background: var(--gray-100);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  position: relative;
  overflow: hidden;
  min-height: 340px;
  transition: box-shadow .3s, transform .3s;
}

.fcard:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.fcard--accent {
  background: var(--text);
  color: var(--white);
}

.fcard__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--white);
  display: grid;
  place-items: center;
  color: var(--brand);
}

.fcard__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
}

.fcard__desc {
  font-size: .9rem;
  color: var(--gray-400);
  line-height: 1.55;
}

.fcard--accent .fcard__desc {
  color: rgba(255, 255, 255, .65);
}

.fcard__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: auto;
}

.chip {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 500;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--text);
}

/* Blob graphic in card 2 */
.fcard__graphic {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  pointer-events: none;
}

.fcard__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.fcard__blob--1 {
  width: 100px;
  height: 100px;
  background: rgba(248, 196, 98, .45);
  bottom: 20px;
  right: 20px;
}

.fcard__blob--2 {
  width: 70px;
  height: 70px;
  background: rgba(69, 85, 69, .35);
  bottom: 60px;
  right: 80px;
}

.fcard__blob--3 {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, .2);
  bottom: 10px;
  right: 90px;
}

.fcard__plus {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: grid;
  place-items: center;
  color: var(--text);
  position: absolute;
  bottom: var(--space-lg);
  right: var(--space-lg);
  transition: background .25s, color .25s;
}

.fcard__plus:hover {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

/* ============================================================
   SHOWCASE
   ============================================================ */
.showcase {
  padding: var(--space-3xl) var(--gutter);
  background: var(--bg);
}

.showcase__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.showcase__headline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 500px;
  margin-bottom: var(--space-xl);
}

.showcase__slider {
  display: grid;
  grid-template-columns: .6fr 1.5fr .6fr;
  gap: var(--space-md);
  align-items: stretch;
}

.showcase__side {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  position: relative;
  background: var(--gray-100);
  display: flex;
  flex-direction: column;
}


.showcase__side-img {
  width: 100%;
  height: 180px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.showcase__side-content {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.showcase__side-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
}

.showcase__side-text {
  font-size: .8rem;
  color: var(--gray-400);
  line-height: 1.5;
}

/* Real imagery styling and mask effects */
.showcase__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  display: block;
}

.showcase__img--top-mask {
  mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
}

.showcase__img--left-mask {
  mask-image: linear-gradient(to right, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 60%, transparent 100%);
}

.showcase__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  min-height: 360px;
}

.showcase__main-img {
  position: relative;
  overflow: hidden;
}

.showcase__main-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-sm);
}

.showcase__label {
  font-size: .8rem;
  color: var(--gray-400);
  font-weight: 500;
}

.showcase__main-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.25;
}

.showcase__main-text {
  font-size: .875rem;
  color: var(--gray-400);
  line-height: 1.6;
}

.showcase__arrows {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--text);
  transition: background .25s, border-color .25s, color .25s;
}

.arrow-btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  padding: var(--space-3xl) var(--gutter);
  background: var(--beige);
}

.process__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.process__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  align-items: end;
}

.process__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: .8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-400);
  margin-bottom: var(--space-sm);
}

.process__label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.process__headline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  line-height: 1.1;
}

.process__text {
  font-size: .95rem;
  color: var(--gray-400);
  max-width: 460px;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

/* Gallery */
.process__gallery {
  display: grid;
  grid-template-columns: .5fr 1.6fr .5fr;
  gap: var(--space-md);
  align-items: stretch;
  margin-bottom: var(--space-lg);
}

.process__img-ph {
  width: 100%;
  flex: 1;
  min-height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.process__img-ph--large {
  min-height: 380px;
}

/* Real imagery */
.process__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.process__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
  pointer-events: none;
}

.process__img-caption {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white);
  text-shadow: 0 1px 6px rgba(0, 0, 0, .3);
}

.process__gallery-main {
  position: relative;
  display: flex;
  flex-direction: column;
}

.process__gallery-text {
  font-size: .85rem;
  color: var(--gray-400);
  margin-top: var(--space-sm);
  max-width: 500px;
}

.process__gallery-side {
  opacity: .7;
  display: flex;
  flex-direction: column;
}

.process__arrows {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 600;
  font-size: .9rem;
  padding: 14px 32px;
  border-radius: 999px;
  transition: background .3s, color .3s, transform .2s, box-shadow .3s;

  /* Glassmorphism */
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid var(--brand);
  color: var(--text);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04), inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.btn:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06), inset 0 1px 2px rgba(255, 255, 255, 0.5);
}



/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: var(--space-3xl) 0;
  background: var(--bg);
  color: var(--text);
  overflow: hidden;
}

.testimonials__inner {
  max-width: 100%;
  margin: 0 auto;
}

.testimonials__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  padding: 0 var(--gutter);
}

.testimonials__headline {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.testimonials__sub {
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto;
}

.testimonials__track-wrap {
  overflow: hidden;
  position: relative;
  /* Soft edge fading using mask */
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.testimonials__track {
  display: flex;
  gap: var(--space-md);
  width: max-content;
  animation: testimonial-scroll 40s linear infinite;
  padding: 0 var(--space-md);
}

.testimonials__track:hover {
  animation-play-state: paused;
}

.testimonials__card {
  width: 380px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex-shrink: 0;
  transition: transform .3s ease, box-shadow .3s ease;
}

.testimonials__card:hover {
  background: var(--white);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.testimonials__author {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
}

.testimonials__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--text);
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.testimonials__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonials__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
}

.testimonials__role {
  font-size: .85rem;
  color: var(--gray-400);
}

.testimonials__text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin-top: var(--space-sm);
}

@keyframes testimonial-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - (var(--space-md) / 2)));
  }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: var(--space-3xl) var(--gutter);
  background: var(--bg);
}

.faq__inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq__headline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.faq__list {
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-bottom: 1px solid var(--gray-200);
}

.faq__item:first-child {
  border-top: 1px solid var(--gray-200);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color .25s;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question:hover {
  color: var(--accent);
}

/* Plus / minus icon */
.faq__icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}

.faq__icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__item[open] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* Answer area */
.faq__answer {
  padding: 0 0 var(--space-md);
}

.faq__answer p {
  font-size: .9rem;
  color: var(--gray-400);
  line-height: 1.7;
  max-width: 640px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--brand);
  color: var(--white);
  padding: var(--space-3xl) var(--gutter) var(--space-lg);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer__cta-area {
  text-align: left;
  margin-bottom: var(--space-2xl);
}

.footer__headline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}

.footer__subline {
  font-size: 1rem;
  color: rgba(255, 255, 255, .65);
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer__social {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-shrink: 0;
}

.footer__linkedin {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, .7);
  transition: color .25s;
}

.footer__linkedin:hover {
  color: var(--white);
}

.footer__social .btn,
.footer__cta-area .btn {
  background: var(--white);
  color: var(--text);
  border-color: var(--white);
  margin-top: var(--space-md);
}

.footer__social .btn:hover,
.footer__cta-area .btn:hover {
  background: var(--gray-100);
  border-color: var(--gray-100);
}

.footer__columns {
  display: flex;
  gap: clamp(2rem, 8vw, 6rem);
}

.footer__col-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: var(--space-sm);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer__col a {
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
  transition: color .25s;
}

.footer__col a::before {
  content: '•';
  margin-right: 8px;
  color: rgba(255, 255, 255, .25);
}

.footer__col a:hover {
  color: var(--white);
}

/* Bottom */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  padding-top: var(--space-lg);
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  display: block;
}

.footer__brand-tagline {
  font-size: .8rem;
  color: rgba(255, 255, 255, .45);
}

.footer__legal-links {
  display: flex;
  gap: var(--space-md);
}

.footer__legal-links a {
  font-size: .8rem;
  color: rgba(255, 255, 255, .45);
  transition: color .25s;
}

.footer__legal-links a:hover {
  color: var(--white);
}

.footer__copy {
  font-size: .75rem;
  color: rgba(255, 255, 255, .35);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width:1024px) {

  /* Grid is already 2-col, but maybe adjust gap? */
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .hero__left {
    order: 1;
  }

  .hero__right {
    order: 2;
    /* align image? */
    justify-content: center;
  }

  .features__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .fcard:last-child {
    grid-column: 1/-1;
    max-width: 400px;
  }

  .showcase__slider {
    grid-template-columns: 1fr;
  }

  .showcase__side {
    display: none;
  }

  .process__top {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .process__gallery {
    grid-template-columns: 1fr;
  }

  .process__gallery-side {
    display: none;
  }

  .footer__content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* Mobile */
@media (max-width:640px) {
  .header__nav {
    position: fixed;
    top: -21px;
    /* Offset for header top: 20px and 1px border */
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    z-index: 99;
  }

  .header__nav--open {
    opacity: 1;
    pointer-events: auto;
  }

  .header__nav--open .header__link {
    font-size: 1.25rem;
  }

  .header__menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 101;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  /* Image first on mobile for visual impact */
  .hero__right {
    order: 1;
    justify-content: center;
    margin-bottom: var(--space-md);
    position: static;
    /* Reset absolute positioning for mobile flow */
  }

  .hero__image {
    position: static;
    transform: none;
    max-width: 80%;
    /* Ensure good size on mobile */
  }

  .hero__left {
    order: 2;
    text-align: left;
    align-items: flex-start;
  }

  .hero__vertical {
    align-self: center;
    margin-bottom: var(--space-md);
  }

  /* Remove center/stats stuff */


  .hero__headline {
    order: -1;
    margin-top: 0;
    margin-bottom: var(--space-lg);
    font-size: clamp(2rem, 9vw, 2rem);
    text-align: left;
  }

  .hero {
    padding-bottom: var(--space-lg);
  }

  .trusted {
    padding: var(--space-lg) var(--gutter);
  }

  .features {
    padding: var(--space-xl) var(--gutter);
  }

  .showcase {
    padding: var(--space-xl) var(--gutter);
  }

  .features__cards {
    grid-template-columns: 1fr;
  }

  .fcard:last-child {
    max-width: none;
  }

  .showcase__main {
    grid-template-columns: 1fr;
  }

  .showcase__main-img {
    min-height: 200px;
  }

  .footer__columns {
    grid-template-columns: 1fr 1fr;
  }

  .footer__form {
    flex-direction: column;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page {
  padding: calc(120px + var(--space-xl)) var(--gutter) var(--space-3xl);
  min-height: 100vh;
  background: var(--bg);
}

.contact-page__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-page__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.contact-page__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--space-sm);
  color: var(--text);
  letter-spacing: -0.02em;
}

.contact-page__subtitle {
  font-size: 1.1rem;
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto;
}

.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-2xl);
  align-items: flex-start;
}

.contact-page__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding-right: var(--space-md);
}

.contact-info__block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info__label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-info__text {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  transition: color 0.3s;
}

a.contact-info__text:hover {
  color: var(--brand);
}

.contact-info__socials {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-sm);
}

.contact-info__social {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--text);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

.contact-info__social:hover {
  color: var(--brand);
  border-color: var(--brand);
}

.contact-page__form-wrapper {
  background: var(--gray-100);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form__label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.contact-form__input {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.contact-form__input::placeholder {
  color: #c0c0c0;
}

.contact-form__input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(69, 85, 69, 0.1);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__submit {
  width: 100%;
  margin-top: var(--space-sm);
  justify-content: center;
}

@media (max-width: 1024px) {
  .contact-page__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .contact-page__info {
    padding-right: 0;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-xl);
  }
}

@media (max-width: 640px) {
  .contact-page__info {
    flex-direction: column;
    gap: var(--space-md);
  }

  .contact-page__form-wrapper {
    padding: var(--space-lg) var(--space-sm);
  }
}

/* ============================================================
   LEGAL PAGES (Impressum, Datenschutz)
   ============================================================ */
.legal-page {
  padding: calc(120px + var(--space-xl)) var(--gutter) var(--space-3xl);
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
}

.legal-page__inner {
  max-width: 800px;
  margin: 0 auto;
}

.legal-page__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: var(--space-xl);
  letter-spacing: -0.02em;
}

.legal-page__content {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-400);
}

.legal-page__content h2,
.legal-page__content h3 {
  font-family: var(--font-heading);
  color: var(--text);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.legal-page__content p {
  margin-bottom: var(--space-md);
}

.legal-page__content a {
  color: var(--brand);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color .3s;
}

.legal-page__content a:hover {
  text-decoration-color: var(--brand);
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */

/* PAGE OFFSET (to clear fixed header) */
.page-offset {
  padding-top: calc(80px + 20px);
}

/* Hero */
.portfolio-hero {
  padding: var(--space-2xl) var(--gutter) var(--space-xl);
  background: var(--bg);
  text-align: left;
}

.portfolio-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.portfolio-hero__headline {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  animation: fadeInBottom 1.4s cubic-bezier(.19, 1, .22, 1) 0.1s both;
}

.portfolio-hero__accent {
  font-style: italic;
  font-weight: 600;
  color: var(--text);
}

.portfolio-hero__sub {
  font-size: 1.125rem;
  color: var(--gray-400);
  line-height: 1.6;
  max-width: 800px;
  margin: 0;
  animation: fadeInBottom 1.4s cubic-bezier(.19, 1, .22, 1) 0.3s both;
}

.portfolio-hero__cta {
  margin-top: var(--space-lg);
  display: flex;
  animation: fadeInBottom 1.4s cubic-bezier(.19, 1, .22, 1) 0.5s both;
}

.portfolio-hero__atom {
  /* User requested relative position to allow easy adjustments */
  position: relative;
  width: 400px;
  max-width: 60vw;
  display: block;
  float: right;
  top: -120px;
  right: 5%;
  animation: float-atom 6s ease-in-out infinite;
  z-index: 2;
  /* Prevent interaction from blocking text clicks */
  pointer-events: none;
}

/* Grid Section */
.portfolio-grid-sec {
  /* Increased top padding as requested to add space between hero and grid */
  padding: calc(var(--space-3xl) * 1.1) var(--gutter) var(--space-3xl);
  background: var(--bg);
  clear: both;
  /* Ensure clear float from atom */
}

.portfolio-grid-sec__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.portfolio-grid-sec__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: var(--space-2xl);
  max-width: 700px;
  animation: fadeInBottom 1.4s cubic-bezier(.19, 1, .22, 1) 0.5s both;
}

.port-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.port-grid__col {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

/* Offset second column */
@media (min-width: 768px) {
  .port-grid__col--offset {
    margin-top: 80px;
  }
}

/* Card */
.port-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
  border-radius: 12px;
}

.port-card:hover {
  transform: translateY(-8px);
}

.port-card__media {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  /* Aspect ratios */
  aspect-ratio: 4/3;
}

.port-card__media--small {
  aspect-ratio: 1/1;
}

.port-card__media--large {
  aspect-ratio: 3/4;
}

.port-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.port-card:hover .port-card__img {
  transform: scale(1.05);
}

.port-card__link {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-hover);
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.port-card__link:hover {
  background: var(--brand);
  color: var(--white);
  transform: scale(1.1) rotate(-15deg);
}

.port-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  margin-top: var(--space-xs);
}

.port-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.port-chip {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--gray-100);
  color: var(--text);
}

/* CTA */
.portfolio-cta {
  padding: var(--space-3xl) var(--gutter);
  background: var(--beige);
  text-align: left;
  border-radius: var(--radius-xl);
  margin: 0 var(--gutter) var(--space-3xl);
}

.portfolio-cta__inner {
  max-width: 800px;
  margin: 0;
}

.portfolio-cta__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
}

.portfolio-cta__sub {
  font-size: 1rem;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.portfolio-cta__btn {
  display: inline-flex;
  padding: 14px 28px;
  background: var(--text);
  color: var(--white);
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.3s, background 0.3s;
}

.portfolio-cta__btn:hover {
  background: var(--brand);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .port-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .portfolio-cta {
    margin: 0 0 var(--space-xl);
    border-radius: 0;
  }
}

/* ============================================================
   ABOUT US PAGE
   ============================================================ */

/* Hero */
.about-hero {
  padding: var(--space-2xl) var(--gutter) var(--space-xl);
  background: var(--bg);
  text-align: left;
}

.about-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.about-hero__headline {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 3.7rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  animation: fadeInBottom 1.4s cubic-bezier(.19, 1, .22, 1) 0.1s both;
}

.about-hero__sub {
  font-size: 1.125rem;
  color: var(--gray-400);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 0 var(--space-sm);
  animation: fadeInBottom 1.4s cubic-bezier(.19, 1, .22, 1) 0.3s both;
}

.about-hero__cta {
  margin-top: var(--space-lg);
  display: flex;
  animation: fadeInBottom 1.4s cubic-bezier(.19, 1, .22, 1) 0.5s both;
}

/* Collage */
.about-collage {
  padding: var(--space-lg) var(--gutter);
  background: var(--bg);
}

.about-collage__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.about-collage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  align-items: stretch;
}

.about-collage__item {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  background: var(--gray-200);
}

.about-collage__item--large {
  height: 100%;
  min-height: 500px;
}

.about-collage__quote-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--beige);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
}

.about-collage__quote {
  max-width: 500px;
  border: none;
  margin: 0;
  padding: 0;
}

.about-collage__text {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
  line-height: 1.4;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-md);
  position: relative;
}

.about-collage__author {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brand);
  font-style: normal;
}

.about-collage__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-collage__item:hover .about-collage__img {
  transform: scale(1.05);
}

/* Stats Banner */
.about-stats-sec {
  padding: var(--space-xl) var(--gutter);
  background: var(--bg);
}

.about-stats-sec__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.about-stats {
  position: relative;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-2xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Add a colorful blurred background blob behind the stats */
.about-stats__bg-blur {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: linear-gradient(90deg, rgba(69, 85, 69, 0.2), rgba(181, 181, 181, 0.2));
  filter: blur(60px);
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

.about-stats__item {
  text-align: center;
  flex: 1;
  position: relative;
}

.about-stats__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: rgba(0, 0, 0, 0.1);
}

.about-stats__number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  color: var(--text);
  margin-bottom: 8px;
}

.about-stats__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* About Content */
.about-content-sec {
  padding: var(--space-xl) var(--gutter) var(--space-3xl);
  background: var(--bg);
}

.about-content-sec__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.about-content__main-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.5rem);
  text-align: left;
  margin-bottom: var(--space-md);
}

.about-content__lead {
  font-size: 1.25rem;
  line-height: 1.6;
  text-align: left;
  color: var(--gray-400);
  max-width: 800px;
  margin: 0 0 var(--space-2xl);
}

.about-content__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.about-content__block {
  background: var(--bg);
}

.about-content__h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--text);
  line-height: 1.3;
}

.about-content__block p,
.about-content__feature p,
.about-content__bottom p {
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.about-content__feature {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.about-content__h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--text);
}

.about-content__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-content__list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--gray-400);
  line-height: 1.6;
}

.about-content__list li strong {
  color: var(--text);
}

.about-content__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: bold;
}

.about-content__bottom {
  text-align: left;
  max-width: 800px;
  margin: 0;
}

@media (max-width: 900px) {

  .about-collage__grid,
  .about-content__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-stats {
    flex-wrap: wrap;
    gap: var(--space-md);
    padding: var(--space-lg);
  }

  .about-stats__item {
    flex: 1 1 40%;
  }

  .about-stats__item:not(:last-child)::after {
    display: none;
  }
}

/* ============================================================
   CTA BANNER (About us end)
   ============================================================ */
.cta-banner-sec {
  padding: var(--space-xl) var(--gutter) calc(var(--space-3xl) * 1.5);
  background: var(--bg);
}

.cta-banner-sec__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.cta-banner {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: calc(var(--space-2xl) * 1.2) var(--space-2xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  color: var(--text);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: linear-gradient(90deg, rgba(69, 85, 69, 0.2), rgba(181, 181, 181, 0.2));
  filter: blur(60px);
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.cta-banner__content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.cta-banner__headline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.cta-banner__action {
  position: relative;
  z-index: 2;
}

.btn--white {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--white);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  gap: 12px;
}

.btn--white:hover {
  background: var(--gray-100);
  border-color: var(--gray-100);
  transform: translateY(-4px);
  color: var(--text);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.btn--white .arrow {
  font-size: 1.1em;
  transition: transform .3s;
}

.btn--white:hover .arrow {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
  }
}