/* ═══════════════════════════════════════════════
   A2Z-SOFT · style.css
   Design: Dark luxury · Teal accent · Editorial
   Fonts: Playfair Display + Outfit (Google Fonts)
═══════════════════════════════════════════════ */

/* ── CSS Custom Properties ── */
:root {
  /* --- Hintergrund & Flächen --- */
  --bg: #FFFFFF;
  /* Weiß */
  --surface: #F3F4F6;
  /* Grau (z. B. für Karten oder kleine Flächen) */
  --surface2: #E5E7EB;
  --surface3: #D1D5DB;
  --border: rgba(30, 58, 138, 0.15);
  /* Halbdurchsichtiges Dunkelblau */
  --border2: rgba(30, 58, 138, 0.25);

  /* --- Akzente --- */
  --teal: #2563EB;
  /* Primärblau (Buttons, aktive Nav-Links) */
  --teal2: #93C5FD;
  /* Hellblau (für Verläufe z.B. bei Buttons) */
  --teal-glow: rgba(37, 99, 235, 0.2);
  --blue: #1E3A8A;
  /* Dunkelblau (zusätzliche Akzente/Schattierungen) */
  --blue-glow: rgba(30, 58, 138, 0.15);

  /* --- Typografie und Textfarben --- */
  --text: #1E3A8A;
  /* Dunkelblau für höchste Lesbarkeit bei Titeln */
  --text2: #374151;
  /* Neutrale Textfarbe für normale Absätze */
  --muted: #6B7280;
  /* Sanftes Grau für unauffällige Texte */
  --white: #FFFFFF;
  /* Weiß */
  
  --error: #E11D48;
  /* Premium-Rot für Fehlerzustände (Rose-600) */
  --error-glow: rgba(225, 29, 72, 0.12);
  --error-bg: rgba(225, 29, 72, 0.04);
  --error-border: rgba(225, 29, 72, 0.22);

  --display: 'Plus Jakarta Sans', sans-serif;
  --body: 'Inter', sans-serif;

  --radius-sm: 2px;
  --radius: 4px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);

  --nav-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}

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

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

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: none;
  font-family: var(--body);
}


/* ═══════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════ */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--teal);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-out),
    height 0.25s var(--ease-out),
    background 0.25s;
  mix-blend-mode: normal;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(99, 102, 241, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-out),
    height 0.35s var(--ease-out),
    border-color 0.3s;
}

.cursor.hover {
  width: 16px;
  height: 16px;
}

.cursor-ring.hover {
  width: 58px;
  height: 58px;
  border-color: rgba(99, 102, 241, 0.7);
}
/* ═══════════════════════════════════
   CUSTOM SHIMMER SCROLLBAR
   Natives Scrollbar ausblenden,
   Custom-Overlay drüber legen
═══════════════════════════════════ */

/* Native Scrollbar global verstecken */
html {
  scrollbar-width: none;
}
html::-webkit-scrollbar {
  display: none;
}

/* Track (die Schiene) */
.c-scrollbar {
  position: fixed;
  top: 0;
  right: 6px;
  bottom: 0;
  width: 10px;
  z-index: 9000;
  pointer-events: none;
}

.c-scrollbar__track {
  position: absolute;
  inset: 8px 0;
  border-radius: 100px;
  background: var(--surface2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Sichtbar beim Scrollen */
.c-scrollbar.is-active .c-scrollbar__track {
  opacity: 1;
}

/* Thumb */
.c-scrollbar__thumb {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 48px;
  border-radius: 100px;
  background: var(--teal);
  cursor: grab;
  pointer-events: all;
  overflow: hidden;
  transition: background 0.3s;
}

.c-scrollbar__thumb:hover {
  background: var(--blue);
}

.c-scrollbar__thumb:active {
  cursor: grabbing;
}

/* Shimmer-Streifen */
.c-scrollbar__shimmer {
  position: absolute;
  top: -80%;
  left: -100%;
  width: 100%;
  height: 260%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0)    0%,
    rgba(255, 255, 255, 0.25) 25%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(255, 255, 255, 0.25) 75%,
    rgba(255, 255, 255, 0)    100%
  );
  transform: skewX(-15deg);
  animation: scrollbarShimmer 1.4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes scrollbarShimmer {
  0%   { left: -100%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 150%; opacity: 0; }
}

/* ═══════════════════════════════════
   PAGE LOADER
═══════════════════════════════════ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: opacity 0.7s ease, visibility 0.7s;
}

#loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ld-logo {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
}

.ld-logo em {
  font-style: italic;
  color: var(--teal);
}

.ld-progress {
  width: 200px;
  height: 1px;
  background: var(--border2);
  overflow: hidden;
}

.ld-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--teal), var(--teal2));
  animation: ldLoad 1.4s var(--ease-out) forwards;
}

@keyframes ldLoad {
  to {
    width: 100%;
  }
}

.ld-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}


/* ═══════════════════════════════════
   NAVIGATION
═══════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: var(--nav-h);
  padding: 0 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, border-color 0.4s ease, height 0.4s ease;
}

.nav.scrolled {
  height: 64px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

/* Logo */
.nav__logo {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.nav__logo em {
  font-style: italic;
  color: var(--teal);
}

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__link {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color 0.3s;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--teal);
  transition: width 0.35s var(--ease-out);
}

.nav__link:hover,
.nav__link.active {
  color: var(--teal);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

/* CTA button */
.nav__cta {
  padding: 0.55rem 1.4rem;
  border: 1px solid rgba(99, 102, 241, 0.5);
  color: var(--teal);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.nav__cta:hover {
  background: var(--teal);
  color: #ffffff;
  border-color: var(--teal);
}

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 10;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.35s var(--ease-out);
}

.nav__burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}

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

.nav__burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* Mobile drawer */
.nav__drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  z-index: 400;
}

.nav__drawer.open {
  display: flex;
}

.nav__drawer .nav__link {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}

.nav__drawer .nav__cta {
  font-size: 0.88rem;
  padding: 0.75rem 2rem;
}


/* ═══════════════════════════════════
   SHARED / UTILITIES
═══════════════════════════════════ */
section {
  position: relative;
  overflow: hidden;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.2rem;
}

.section-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--teal);
}

.section-title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-title em {
  font-style: italic;
  color: var(--teal);
}

.section-sub {
  color: var(--muted);
  margin-top: 0.9rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.section-divider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

/* Buttons */
.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  background: var(--teal);
  color: #ffffff;
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-main__inner {
  position: relative;
  z-index: 1;
}

.btn-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--teal2);
  transform: translateX(-101%);
  transition: transform 0.5s var(--ease-out);
}

.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(99, 102, 241, 0.3);
}

.btn-main:hover::before {
  transform: translateX(0);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--text);
  font-family: var(--body);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

/* Chip tags */
.chip {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.72rem;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: border-color 0.3s, color 0.3s;
}


/* ═══════════════════════════════════
   SECTION: HOME / HERO
═══════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 3rem) 5rem 5rem;
}

/* Background layers */
.hero__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('../assets/hero-image-home@2x.jpg') center/cover no-repeat;
  opacity: 0.12;
}

.hero__dots {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 20%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

/* Availability badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.42rem 1rem 0.42rem 0.65rem;
  border: 1px solid rgba(99, 102, 241, 0.22);
  background: rgba(99, 102, 241, 0.05);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 2.2rem;
  opacity: 0;
  /* animated by GSAP */
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.55);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(99, 102, 241, 0);
  }
}

/* Hero headline */
.hero__title {
  font-family: var(--display);
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.hero__title-line {
  display: block;
  overflow: hidden;
}

.hero__title-line span {
  display: block;
  transform: translateY(105%);
  /* GSAP will animate this */
}

.hero__title em {
  font-style: italic;
  color: var(--teal);
}

.hero__desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.9;
  margin-bottom: 3rem;
  opacity: 0;
  /* GSAP */
}

.hero__cta {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  opacity: 0;
  /* GSAP */
}

/* Hero stats (bottom-right) */
.hero__stats {
  position: absolute;
  right: 5rem;
  bottom: 4rem;
  z-index: 1;
  display: flex;
  gap: 2.5rem;
  opacity: 0;
  /* GSAP */
}

.stat__num {
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}

.stat__label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 0.3rem;
  text-align: right;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  /* GSAP */
}

.hero__scroll-label {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__scroll-line {
  width: 3px;
  height: 72px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }

  50% {
    transform: scaleY(0.35);
    opacity: 0.3;
  }
}


/* ═══════════════════════════════════
   SECTION: DIENSTLEISTUNGEN
═══════════════════════════════════ */
.services {
  padding: 7rem 5rem;
  background: var(--surface);
}

.services__header {
  text-align: center;
  margin-bottom: 4.5rem;
}

/* 3-column service grid */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 3.5rem;
  background: transparent;
  border: none;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.8rem 2.4rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.08);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card:hover .chip {
  border-color: rgba(99, 102, 241, 0.3);
  color: var(--teal);
}

.service-card:hover .service-card__icon {
  transform: scale(1.1) rotate(-5deg) translateY(-3px);
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.3);
}

.service-card__num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  user-select: none;
}

.service-card__icon {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.8rem;
  height: 3.8rem;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(37, 99, 235, 0.15);
  color: var(--teal);
  transition: transform 0.4s var(--ease-out), background 0.4s, border-color 0.4s;
}

.service-card h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.8;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.4rem;
}

/* Regions bar */
.regions-bar {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.3) 100%);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.regions-bar__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
}

.regions-bar__list {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.region-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1.2rem;
  border-radius: 100px;
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.15);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.region-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(37, 99, 235, 0.1);
  border-color: var(--teal);
}

.region-pill::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 6px var(--teal);
}

@media (max-width: 768px) {
  .regions-bar {
    border-radius: 24px;
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .regions-bar__list {
    justify-content: center;
  }
}


/* ═══════════════════════════════════
   SECTION: ÜBER MICH
═══════════════════════════════════ */
.about {
  padding: 7rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  min-height: auto;
}

/* Left: visual card */
.about__visual {
  position: relative;
}

.about__card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
  overflow: visible;
}

.about__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--teal), var(--blue));
}

.about__photo {
  width: 100%;
  padding-bottom: 80%;
  position: relative;
  overflow: hidden;
  background: var(--surface2);
  margin-bottom: 2rem;
}

.about__photo-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 30%, rgba(99, 102, 241, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 70% 80%, rgba(14, 165, 233, 0.08) 0%, transparent 60%);
}

.about__monogram {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.monogram__ring {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid rgba(99, 102, 241, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.monogram__ring::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(99, 102, 241, 0.15);
  animation: ringRotate 12s linear infinite;
}

@keyframes ringRotate {
  to {
    transform: rotate(360deg);
  }
}

.monogram__letters {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--teal);
}

.monogram__title {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Stats row below photo */
.about__stats-row {
  display: flex;
  gap: 1rem;
}

.about__stat {
  flex: 1;
  background: linear-gradient(145deg, #ffffff, var(--surface));
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: 16px;
  padding: 1.2rem 1rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
  position: relative;
  overflow: hidden;
}

.about__stat::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal2));
  opacity: 0;
  transition: opacity 0.4s;
}

.about__stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.2);
}

.about__stat:hover::after {
  opacity: 1;
}

.about__stat-num {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.about__stat-lbl {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text2);
  line-height: 1.4;
}

/* Floating availability badge */
.about__float {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--bg);
  border: 1px solid rgba(99, 102, 241, 0.25);
  padding: 0.9rem 1.3rem;
  animation: floatUp 4s ease-in-out infinite;
}

@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

.about__float-lbl {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.about__float-val {
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--teal);
  margin-top: 0.15rem;
}

/* Right: text content */
.about__content .section-title {
  text-align: left;
}

.about__bio {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.95;
  margin: 1.4rem 0 2rem;
}

.about__bio strong {
  color: var(--text);
  font-weight: 500;
}

/* Values 2-col grid */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.value-item {
  padding: 1.4rem;
  background: linear-gradient(145deg, #ffffff, var(--surface));
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}

.value-item:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.06);
}

.value-item__icon {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 8px;
  color: var(--teal);
  transition: transform 0.4s var(--ease-out);
}

.value-item:hover .value-item__icon {
  transform: scale(1.1) rotate(5deg);
}

.value-item__title {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--teal);
}

.value-item__text {
  font-size: 0.78rem;
  color: var(--text2);
  line-height: 1.6;
}

/* Skill bars */
.skill-bars {
  margin-bottom: 2.2rem;
}

.skill-bar {
  margin-bottom: 1.1rem;
}

.skill-bar__meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.skill-bar__track {
  height: 2px;
  background: var(--border2);
}

.skill-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.4s var(--ease-out);
}

.skill-bar__fill.animated {
  transform: scaleX(1);
}

.about__cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}


/* ═══════════════════════════════════
   SECTION: REFERENZEN
═══════════════════════════════════ */
.reviews {
  padding: 7rem 5rem;
  background: var(--surface);
}

.reviews__header {
  text-align: center;
  margin-bottom: 4rem;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  background: var(--surface);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s;
  /* Flexbox-Layout hinzufügen, um Inhalte auszurichten */
  display: flex;
  flex-direction: column;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out);
}

.review-card:hover {
  border-color: rgba(99, 102, 241, 0.22);
  transform: translateY(-5px);
}

.review-card:hover::before {
  transform: scaleX(1);
}

.review-card__quote {
  font-family: var(--display);
  font-size: 4.5rem;
  line-height: 0.7;
  color: rgba(99, 102, 241, 0.14);
  margin-bottom: 1.2rem;
  user-select: none;
}

.review-card__text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1.8rem;
  font-style: italic;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  /* Schiebt den Autor automatisch ganz nach unten für gleichen Abstand in Kunden-Karten */
  margin-top: auto;
}

.review-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 1rem;
  color: var(--bg);
  font-weight: 700;
  flex-shrink: 0;
}

.review-card__name {
  font-size: 0.9rem;
  font-weight: 500;
}

.review-card__stars {
  color: var(--teal);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  margin-top: 0.15rem;
}


/* ═══════════════════════════════════
   SECTION: KONTAKT
═══════════════════════════════════ */
.contact {
  padding: 7rem 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__inner {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

/* Left */
.contact__left .section-title {
  text-align: left;
  margin-bottom: 1.2rem;
}

.contact__left p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--border);
}

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

.contact-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--teal);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item:hover .contact-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--teal);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item__lbl {
  font-size: 0.63rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-item__val {
  font-size: 0.93rem;
  color: var(--text);
  margin-top: 0.2rem;
}

.contact-item__val a {
  color: var(--text);
  transition: color 0.3s;
}

.contact-item__val a:hover {
  color: var(--teal);
}

/* Form */
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form__group {
  margin-bottom: 1rem;
}

.form__group label {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.form__group input,
.form__group textarea,
.form__group select {
  width: 100%;
  padding: 0.82rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--body);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none;
  border-radius: 0;
}

.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form__group textarea {
  min-height: 115px;
  resize: vertical;
}

.form__group select option {
  background: var(--surface2);
}

/* Form Validation States */
.form__group.is-invalid input,
.form__group.is-invalid textarea,
.form__group.is-invalid select {
  border-color: var(--error);
  box-shadow: 0 0 0 3px var(--error-glow);
}

.form__error-message {
  display: block;
  font-size: 0.7rem;
  color: var(--error);
  margin-top: 0.35rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.form__alert-error {
  display: none;
  padding: 1rem 1.2rem;
  background: var(--error-bg);
  border: 1px solid var(--error-border);
  color: var(--error);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  align-items: center;
  gap: 0.8rem;
}

.form__alert-error.show {
  display: flex;
}

.form__success {
  display: none;
  text-align: center;
  padding: 2.5rem;
  border: 1px solid rgba(99, 102, 241, 0.3);
  background: rgba(99, 102, 241, 0.05);
}

.form__success.show {
  display: block;
}

.form__success-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}


/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.footer {
  padding: 2.5rem 5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__logo {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
}

.footer__logo em {
  font-style: italic;
  color: var(--teal);
}

.footer__links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__links a {
  font-size: 0.76rem;
  color: var(--muted);
  transition: color 0.3s;
}

.footer__links a:hover {
  color: var(--teal);
}

.footer__copy {
  font-size: 0.7rem;
  color: var(--muted);
}


/* ══════════════════════════
   PROCESS SECTION (TIMELINE)
══════════════════════════ */
.process {
  position: relative;
  padding: 8rem 5rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.process__header {
  margin-bottom: 5rem;
  text-align: center;
}

.timeline-container {
  position: relative;
  width: 100%;
  margin-top: 4rem;
}

.timeline__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(-50%);
  border-radius: 2px;
  overflow: hidden;
}

.timeline__line-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--blue), var(--teal));
  box-shadow: 0 0 15px var(--teal), 0 0 30px var(--blue);
}

.timeline__step {
  position: relative;
  width: 50%;
  padding: 2rem 4rem;
  box-sizing: border-box;
}

.timeline__step:nth-child(even) {
  left: 0;
  text-align: right;
}

.timeline__step:nth-child(odd) {
  left: 50%;
  text-align: left;
}

.timeline__dot {
  position: absolute;
  top: 3rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.2);
}

.timeline__step:nth-child(even) .timeline__dot {
  right: -1.75rem;
}

.timeline__step:nth-child(odd) .timeline__dot {
  left: -1.75rem;
}

.timeline__step.is-active .timeline__dot {
  border-color: var(--teal);
  color: var(--teal);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.5);
  transform: scale(1.1);
}

.timeline__content {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline__content:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.timeline__icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--teal);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline__step:nth-child(even) .timeline__icon {
  margin-left: auto;
}

.timeline__step.is-active .timeline__icon {
  background: linear-gradient(135deg, rgba(0, 82, 212, 0.2), rgba(67, 198, 172, 0.2));
  border-color: var(--teal);
  color: var(--teal);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

.timeline__content h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(to right, var(--text), var(--text2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.timeline__content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text2);
}


/* ═══════════════════════════════════
   ANIMATIONS — GSAP controlled
   (initial states only here)
═══════════════════════════════════ */
.js-reveal {
  opacity: 0;
  transform: translateY(40px);
}

.js-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
}

.js-reveal-right {
  opacity: 0;
  transform: translateX(40px);
}
/* ═══════════════════════════════════════════════
   BENTO FEATURES SECTION (LIGHT LUXURY BLUE)
═══════════════════════════════════════════════ */
.bento-features {
  padding: 140px 0 80px 0;
  background: var(--bg); /* Nutzt dein reines Weiß */
  position: relative;
}

.bento-features__header {
  text-align: center;
  margin-bottom: 60px;
}

/* Das Layout-Raster */
.bento-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.bento-grid__item {
  /* Nutzt dein helles Grau für die Karten */
  background: var(--surface); 
  border: 1px solid var(--border); /* Dein dezenter Blaurand */
  border-radius: 12px; /* Etwas runder für den modernen Look */
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.4s, background 0.4s, box-shadow 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Edler Hover-Effekt passend zu deinem Style */
.bento-grid__item:hover {
  transform: translateY(-5px);
  background: var(--surface2); /* Wird beim Hover dezent dunkler/wertiger */
  border-color: var(--border2);
  /* Eleganter blauer Schatten nach innen und außen */
  box-shadow: 0 20px 40px var(--blue-glow), 0 0 0 1px var(--border2);
}

/* Große Kachel links mit einem soften Verlauf */
.bento-large {
  grid-row: span 2;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface2) 100%);
}

/* Inhaltstext */
.bento-content {
  position: relative;
  z-index: 2;
}

/* Blaue Icon-Boxen im edlen Look */
.bento-icon {
  font-size: 24px;
  color: var(--teal); /* Dein Primärblau */
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 4px 12px var(--blue-glow);
}

/* Titel (Nutzt dein tiefes Dunkelblau) */
.bento-grid__item h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text); 
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

/* Fließtext (Nutzt deine neutrale Textfarbe) */
.bento-grid__item p {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text2); 
  margin: 0;
}

/* Optischer Akzent für den Speed-Score */
.bento-visual {
  margin-top: 40px;
}

.speed-badge {
  display: inline-block;
  /* Premium-Blau-Verlauf passend zu deinen Buttons */
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal2) 100%);
  color: var(--white);
  font-weight: 600;
  font-family: var(--display);
  font-size: 13px;
  padding: 8px 20px;
  border-radius: 6px;
  box-shadow: 0 8px 20px var(--teal-glow);
}
/* ═══════════════════════════════════════════════
   MODERN REVIEWS SLIDER (PERFEKT ZENTRIERT)
═══════════════════════════════════════════════ */
.reviews-slider-sec {
  padding: 140px 0;
  background: var(--bg);
  position: relative;
}

/* Der Container sorgt für die perfekte Zentrierung & Margins rechts/links */
.reviews-slider-sec .container {
  max-width: 1200px; /* Gleiche Breite wie der Rest deiner Website */
  margin: 0 auto;
  padding: 0 40px; /* Erzeugt den gewünschten Abstand an beiden Seiten */
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

/* Minimalistische Pfeile */
.slider-nav {
  display: flex;
  gap: 12px;
}

.slider-nav__btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out);
}

.slider-nav__btn:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  box-shadow: 0 8px 20px var(--teal-glow);
  transform: translateY(-2px);
}

/* Slider-Fenster bleibt JETZT exakt im Container eingezäunt */
.reviews-slider-wrap {
  width: 100%;
  overflow: hidden; /* Schneidet die inaktiven Slides sauber innerhalb des Containers ab */
  cursor: grab;
}

.reviews-slider-wrap:active {
  cursor: grabbing;
}

.reviews-slider-track {
  display: flex;
  gap: 32px;
  width: max-content;
  will-change: transform;
}

/* Dynamische Breite für die Karten, damit sie sich perfekt anpassen */
.review-slide {
  /* Berechnet die perfekte Breite im Grid (bei 1200px Gesamtbreite abzüglich Gap) */
  width: calc((1200px - 80px - 32px) / 2); 
  flex-shrink: 0;
}

.review-slide__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.4s, background 0.4s, box-shadow 0.4s;
}

.review-slide__card:hover {
  background: var(--white);
  border-color: var(--border2);
  box-shadow: 0 20px 40px var(--blue-glow);
}

.review-slide__stars {
  color: #FBBF24;
  font-size: 14px;
  letter-spacing: 4px;
  margin-bottom: 24px;
  display: inline-block;
}

.review-slide__text {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text2);
  margin-bottom: 32px;
}

.review-slide__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-slide__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
}

.review-slide__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  margin: 0;
}

.review-slide__role {
  font-family: var(--body);
  font-size: 13px;
  color: var(--muted);
}

/* Fortschritts-Linie */
.slider-progress-bar {
  width: 100%;
  height: 2px;
  background: var(--surface2);
  margin-top: 48px;
  border-radius: 100px;
  overflow: hidden;
}

.slider-progress-bar__fill {
  width: 33.33%;
  height: 100%;
  background: var(--teal);
  transition: width 0.4s var(--ease-out);
}

/* Mobile Optimierung */
@media (max-width: 991px) {
  .reviews-slider-sec .container {
    padding: 0 24px; /* Etwas kompakter auf Handys */
  }
  .slider-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .review-slide {
    width: calc(100vw - 48px); /* Nimmt mobil die volle Bildschirmbreite minus Margin ein */
  }
  .review-slide__card {
    padding: 28px;
  }
}
/* Responsive Anpassung für Tablets & Smartphones */
@media (max-width: 991px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-large {
    grid-row: auto;
  }
  .bento-grid__item {
    padding: 32px;
  }
}

/* ═══════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════ */
@media (max-width: 1024px) {
  .hero {
    padding: 7rem 2rem 5rem;
  }

  .hero__stats {
    right: 2rem;
    bottom: 3rem;
    gap: 2rem;
  }

  .stat__num {
    font-size: 2.2rem;
  }

  .services {
    padding: 5rem 2rem;
  }

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

  .about {
    grid-template-columns: 1fr;
    padding: 5rem 2rem;
    gap: 3.5rem;
  }

  .about__visual {
    max-width: 600px;
    margin: 0 auto;
  }

  .about__float {
    right: 0;
  }

  .reviews {
    padding: 5rem 2rem;
  }

  .reviews__grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact {
    padding: 5rem 2rem;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 0 1.5rem;
  }

  .nav.scrolled {
    padding: 0 1.5rem;
  }

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .hero {
    padding: 6rem 1.5rem 4rem;
  }

  .hero__badge {
    font-size: 0.55rem;
    padding: 0.35rem 0.8rem 0.35rem 0.5rem;
    margin-bottom: 1.5rem;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 2.8rem);
    margin-bottom: 1.2rem;
  }

  .hero__desc {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  .hero__stats {
    position: relative;
    right: auto;
    bottom: auto;
    justify-content: flex-start;
    margin-top: 3rem;
    gap: 1.5rem;
    opacity: 1;
    flex-wrap: wrap;
  }

  .stat__num {
    font-size: 1.8rem;
  }

  .stat__label {
    font-size: 0.55rem;
    text-align: left;
  }

  .hero__scroll {
    display: none;
  }

  .services {
    padding: 4rem 1.5rem;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about {
    padding: 4rem 1.5rem;
    gap: 3rem;
  }

  .about__stats-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
  }

  .about__stat {
    min-width: 100px;
    padding: 1rem 0.5rem;
  }

  .about__stat-num {
    font-size: 1.6rem;
  }

  .about__stat-lbl {
    font-size: 0.55rem;
  }

  .reviews {
    padding: 4rem 1.5rem;
  }

  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .contact {
    padding: 4rem 1.5rem;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .regions-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
  }

  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  /* Timeline responsive */
  .process {
    padding: 4rem 1.5rem;
  }

  .timeline__line {
    left: 1.5rem;
    transform: none;
  }

  .timeline__step {
    width: 100%;
    padding: 1.5rem 0 1.5rem 3.5rem;
    text-align: left !important;
  }

  .timeline__step:nth-child(even) {
    left: 0;
  }

  .timeline__step:nth-child(odd) {
    left: 0;
  }

  .timeline__step:nth-child(even) .timeline__dot,
  .timeline__step:nth-child(odd) .timeline__dot {
    left: -0.25rem;
    right: auto;
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1rem;
  }

  .timeline__step:nth-child(even) .timeline__icon {
    margin-left: 0;
  }

  .timeline__content {
    padding: 2rem;
  }
}