/* ============================================================
   ADIN MEHMEDOVIC — ULTRA PREMIUM DESIGN SYSTEM
   Inspired by Apple.com, Awwwards, and award-winning agencies
   ============================================================ */

/* ════════════════════════════════════════════════════════════
   1. CSS CUSTOM PROPERTIES
   ════════════════════════════════════════════════════════════ */
:root {
  /* Brand */
  --c-violet:   #002d24; /* Dark Teal */
  --c-violet-2: #004e3e;
  --c-pink:     #9df0b6; /* Mint */
  --c-blue:     #0EA5E9;
  --c-green:    #10B981;
  --c-amber:    #F59E0B;

  /* Dark Surfaces */
  --c-black:    #001712;
  --c-dark-0:   #001f19;
  --c-dark-1:   #002d24;
  --c-dark-2:   #003e31;
  --c-dark-3:   #004e3e;
  --c-dark-4:   #005d4b;

  /* Light Surfaces */
  --c-white:    #FFFFFF;
  --c-gray-1:   #F5F5F7;   /* Apple signature gray */
  --c-gray-2:   #E8E8ED;
  --c-gray-3:   #6E6E73;

  /* Text — Dark sections */
  --t-light:    rgba(255,255,255,0.96);
  --t-light-2:  rgba(255,255,255,0.65);
  --t-light-3:  rgba(255,255,255,0.4);

  /* Text — Light sections */
  --t-dark:     #1D1D1F;   /* Apple primary text */
  --t-gray:     #6E6E73;   /* Apple secondary text */
  --t-gray-2:   #9CA3AF;

  /* Gradients */
  --g-brand:    linear-gradient(135deg, #9df0b6 0%, #7CE09B 100%);
  --g-text:     linear-gradient(135deg, #9df0b6 0%, #48C774 100%);
  --g-text-dk:  linear-gradient(135deg, #002d24 0%, #004e3e 100%);
  --g-blue:     linear-gradient(135deg, #0EA5E9 0%, #2563EB 100%);
  --g-green:    linear-gradient(135deg, #10B981 0%, #059669 100%);
  --g-amber:    linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
  --g-pink:     linear-gradient(135deg, #9df0b6 0%, #7CE09B 100%);

  /* Borders */
  --b-dark:     rgba(255,255,255,0.08);
  --b-dark-2:   rgba(255,255,255,0.13);
  --b-light:    rgba(0,0,0,0.07);
  --b-brand:    rgba(157,240,182,0.35);

  /* Shadows */
  --s-xs:     0 1px 3px rgba(0,45,36,0.05);
  --s-sm:     0 4px 16px rgba(0,45,36,0.07);
  --s-md:     0 8px 32px rgba(0,45,36,0.10);
  --s-lg:     0 20px 60px rgba(0,45,36,0.14);
  --s-xl:     0 40px 100px rgba(0,45,36,0.18);
  --s-brand:  0 8px 40px rgba(157,240,182,0.42);

  /* Typography */
  --f-head:   'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-body:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container:  1200px;
  --section-py: clamp(5.5rem, 10vw, 9rem);

  /* Radii */
  --r-sm:   10px;
  --r-md:   18px;
  --r-lg:   28px;
  --r-xl:   40px;
  --r-pill: 9999px;

  /* Easing — Apple/Spring */
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.7, 0, 0.84, 0);
  --ease-inout: cubic-bezier(0.87, 0, 0.13, 1);

  --dt-fast:  0.18s;
  --dt-base:  0.38s;
  --dt-slow:  0.65s;
}

/* ══ LIGHT MODE (aktiviert mit .light-mode auf :root) ══ */
:root.light-mode {
  /* Helle, cleane Hintergründe */
  --c-white:    #F5F5F7;
  --c-gray-1:   #E8E8ED;
  --c-gray-2:   #D2D2D7;
  --c-gray-3:   #98989D;

  /* Dunkle, gut lesbare Texte */
  --t-dark:     #1D1D1F;
  --t-gray:     #424245;
  --t-gray-2:   #6E6E73;

  /* Dunkle Sektionen (Footer, Hero) bleiben dunkel-teal */
  --c-black:    #001712;
  --c-dark-0:   #001f19;
  --c-dark-1:   #002d24;
  --c-dark-2:   #003e31;
  --c-dark-3:   #004e3e;
  --c-dark-4:   #005d4b;

  /* Text in dark sections bleibt weiß */
  --t-light:    rgba(255,255,255,0.96);
  --t-light-2:  rgba(255,255,255,0.65);
  --t-light-3:  rgba(255,255,255,0.4);

  /* Borders */
  --b-light:    rgba(0,0,0,0.09);
  --b-dark:     rgba(255,255,255,0.08);
  --b-dark-2:   rgba(255,255,255,0.13);

  /* Stärkere Schatten für Tiefe */
  --s-sm:  0 4px 16px rgba(0,45,36,0.10);
  --s-md:  0 8px 32px rgba(0,45,36,0.14);
  --s-lg:  0 20px 60px rgba(0,45,36,0.18);
}

/* ════════════════════════════════════════════════════════════
   2. RESET & BASE
   ════════════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--f-body);
  background: var(--c-white);
  color: var(--t-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; outline: none; background: none; }
input, textarea, select { font: inherit; }

/* ════════════════════════════════════════════════════════════
   3. LAYOUT UTILITIES
   ════════════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: var(--section-py) 0; }

.section-alt { background: var(--c-gray-1); }

/* Gradient text utility */
.gradient-text {
  background: var(--g-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section chips / labels */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-violet);
  background: rgba(0,45,36,0.08); /* Updated */
  border: 1px solid rgba(0,45,36,0.18); /* Updated */
  padding: 7px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 1.25rem;
}

/* Dark section label */
.process .section-label,
.pricing .section-label,
.contact .section-label {
  color: #9df0b6; /* Updated */
  background: rgba(157,240,182,0.16); /* Updated */
  border-color: rgba(157,240,182,0.32); /* Updated */
}

/* Section headers */
.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.section-title {
  font-family: var(--f-head);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.038em;
  color: var(--t-dark);
  margin-bottom: 1.1rem;
}

/* Dark section titles */
.process .section-title,
.pricing .section-title {
  color: var(--c-white);
}

.section-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: var(--t-gray);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Dark section subtitles */
.process .section-subtitle,
.pricing .section-subtitle {
  color: var(--t-light-2);
}

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  z-index: 1000;
  pointer-events: none; /* Let clicks pass through empty top edge */
}

.nav-container {
  pointer-events: auto;
  width: 100%;
  max-width: 1600px; /* Wide when at top */
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 3rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── THE PILL EFFECT ── */
.navbar.scrolled .nav-container {
  margin-top: 20px;
  width: calc(100% - 40px);
  max-width: 1150px;
  border-radius: 100px;
  padding: 0.6rem 2rem;
  background: rgba(15, 17, 21, 0.85);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

/* Ensure mobile menu can be clicked! */
.mobile-menu {
  pointer-events: auto;
}

.navbar.scrolled .logo-img {
  filter: brightness(10) invert(0);
}

/* Base styles for Links */
.nav-link {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--t-gray);
  padding: 0.5rem 0.8rem;
  transition: all var(--dt-fast) var(--ease);
  letter-spacing: -0.01em;
  position: relative;
  white-space: nowrap; /* Prevent "Über mich" from wrapping */
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0px; left: 50%;
  width: 0%; height: 2px;
  background: var(--accent-mint);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
  opacity: 0;
}
.nav-link:hover { color: var(--t-dark); background: transparent; }
.nav-link:hover::after, .nav-link.active::after {
  width: 60%;
  opacity: 1;
}
.nav-link.active { color: var(--t-dark); font-weight: 700; }

/* Scrolled text states */
.navbar.scrolled .nav-link { color: rgba(255,255,255,0.7); }
.navbar.scrolled .nav-link:hover { color: #fff; }
.navbar.scrolled .nav-link.active { color: #fff; }
.navbar.scrolled .nav-logo { color: #fff; }
.navbar.scrolled .lang-btn { color: rgba(255,255,255,0.5); }
.navbar.scrolled .lang-btn.active { color: #fff; background: rgba(255,255,255,0.1); }
.navbar.scrolled .hamburger span { background: #fff; }

/* Over dark hero (before scroll) */
.navbar.over-dark:not(.scrolled) .nav-link   { color: rgba(255,255,255,0.72); }
.navbar.over-dark:not(.scrolled) .nav-link:hover { color: rgba(255,255,255,0.95); background: transparent; }
.navbar.over-dark:not(.scrolled) .nav-link.active { color: #9df0b6; }
.navbar.over-dark:not(.scrolled) .logo-text  { color: rgba(255,255,255,0.95); }
.navbar.over-dark:not(.scrolled) .logo-dot   { color: #9df0b6; }
.navbar.over-dark:not(.scrolled) .lang-btn   { color: rgba(255,255,255,0.5); }
.navbar.over-dark:not(.scrolled) .lang-btn:hover { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.08); }
.navbar.over-dark:not(.scrolled) .lang-btn.active { color: #fff; background: rgba(255,255,255,0.12); }
.navbar.over-dark:not(.scrolled) .lang-divider { color: rgba(255,255,255,0.25); }
.navbar.over-dark:not(.scrolled) .hamburger span { background: rgba(255,255,255,0.88); }

/* Logo */
.nav-logo {
  font-family: var(--f-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--t-dark);
  letter-spacing: -0.04em;
  transition: opacity var(--dt-fast);
  display: flex;
  align-items: center;
  gap: 1px;
}
.nav-logo:hover { opacity: 0.75; }
.logo-text { color: inherit; transition: color var(--dt-base); }
.logo-dot  { color: var(--c-violet); transition: color var(--dt-base); }

/* Desktop nav links */
.nav-center { display: flex; justify-content: center; }
.nav-links  { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }

.nav-link {
  display: inline-block;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--t-gray);
  padding: 0.5rem 0.9rem;
  transition: all var(--dt-fast) var(--ease);
  letter-spacing: -0.01em;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0px; left: 50%;
  width: 0%; height: 2px;
  background: var(--accent-mint);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
  opacity: 0;
}
.nav-link:hover { color: var(--t-dark); background: transparent; }
.navbar.scrolled .nav-link:hover { color: #fff; }
.nav-link:hover::after, .nav-link.active::after {
  width: 60%;
  opacity: 1;
}
.nav-link.active { color: var(--t-dark); font-weight: 700; }
.navbar.scrolled .nav-link.active { color: #fff; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language switcher */
.lang-switcher { display: flex; align-items: center; gap: 3px; }
.lang-btn {
  font-size: 0.73rem;
  font-weight: 800;
  color: var(--t-gray);
  padding: 4px 8px;
  border-radius: var(--r-sm);
  transition: all var(--dt-fast);
  letter-spacing: 0.06em;
}
.lang-btn:hover { color: var(--t-dark); background: rgba(0,0,0,0.05); }
.lang-btn.active { color: var(--c-violet); background: rgba(124,58,237,0.08); }
.lang-divider { color: var(--t-gray); opacity: 0.35; font-size: 0.7rem; }

/* Hamburger (Premium Agentur Style) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end; /* Right aligns the uneven lines */
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 8px;
  border-radius: var(--r-pill);
  background: rgba(0,0,0,0.03);
  transition: all var(--dt-fast);
  cursor: pointer;
  border: none;
  outline: none;
}
.hamburger:hover { background: rgba(0,0,0,0.06); }
.hamburger span {
  display: block;
  height: 2px;
  background: var(--t-dark);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
/* Staggered lengths for elegance */
.hamburger span:nth-child(1) { width: 24px; }
.hamburger span:nth-child(2) { width: 16px; }
.hamburger span:nth-child(3) { width: 20px; }

/* middle line extends on hover */
.hamburger:hover span:nth-child(2) { width: 24px; }
.hamburger:hover span:nth-child(3) { width: 24px; }

/* Open state: X */
.hamburger.open { background: transparent !important; }
.hamburger.open span { width: 24px; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu — ultra premium agency slide-in (Dark Teal) */
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--c-dark-0); /* Deep dark teal */
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 998; /* Below hamburger which needs z-index 999 */
  display: flex;
  flex-direction: column;
  padding: 110px 2.5rem 3rem;
  overflow-y: auto;
  gap: 2rem;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.82, 0, 0.12, 1), visibility 0.6s, box-shadow 0.6s;
  border-left: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu.open { 
  transform: translateX(0); 
  visibility: visible;
  box-shadow: -200vw 0 0 0 rgba(0,23,18,0.7); /* Deep elegant dimming overlay */
}

.mobile-nav-links { 
  display: flex; flex-direction: column; gap: 0; width: 100%; list-style: none; padding: 0; margin: 0; 
}
.mobile-nav-links li { 
  width: 100%; 
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-nav-links li:first-child {
  border-top: 1px solid rgba(255,255,255,0.05);
}
.mobile-nav-link {
  display: block;
  font-family: var(--f-head);
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  transition: all var(--dt-fast);
  text-align: left;
  width: 100%;
  padding: 1.25rem 0;
  position: relative;
}
.mobile-nav-link::after {
  content: '→';
  position: absolute; right: 10px; top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  color: var(--c-pink);
  transition: opacity 0.3s, right 0.3s;
}
.mobile-nav-link:hover { 
  color: var(--c-pink); 
  padding-left: 8px; 
}
.mobile-nav-link:hover::after {
  opacity: 1; right: 0;
}

/* Make hamburger white when menu is open */
.hamburger { z-index: 999; position: relative; }
.hamburger.open span { background: #fff !important; }

.mobile-lang { 
  display: flex; align-items: center; justify-content: flex-start; gap: 12px; margin-top: auto; 
}
.mobile-lang .lang-btn { 
  color: rgba(255,255,255,0.45); 
  font-size: 0.85rem; padding: 8px 12px; 
}
.mobile-lang .lang-btn.active { color: #fff; background: rgba(255,255,255,0.1); }
.mobile-lang .lang-divider { color: rgba(255,255,255,0.15); display: none; }

.mobile-cta {
  background: var(--c-pink);
  color: #002d24;
  padding: 1.15rem;
  border-radius: var(--r-pill);
  font-weight: 800;
  font-size: 1.05rem;
  text-align: center;
  box-shadow: var(--s-brand);
  width: 100%;
  display: block;
  letter-spacing: 0.01em;
}


/* ════════════════════════════════════════════════════════════
   6. BUTTONS
   ════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.78rem 1.65rem;
  border-radius: var(--r-pill);
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--dt-base) var(--ease);
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
}
.btn-lg { padding: 0.95rem 2.1rem; font-size: 0.96rem; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.8rem; }

.btn-primary {
  background: var(--g-brand);
  color: #001712;
  box-shadow: var(--s-brand);
  font-weight: 700;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 50px rgba(157,240,182,0.52);
}
.btn-primary:active { transform: scale(0.98); box-shadow: var(--s-brand); }

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: rgba(245,245,247,0.85);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(29,29,31,0.06);
  color: var(--t-dark);
  border: 1px solid var(--b-light);
}
.btn-secondary:hover { background: rgba(29,29,31,0.1); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(0,45,36,0.3);
  color: var(--c-violet);
}
.btn-outline:hover {
  background: rgba(0,45,36,0.06);
  border-color: var(--c-violet);
  transform: translateY(-1px);
}

/* Outline in dark sections */
.pricing .btn-outline {
  border-color: rgba(157,240,182,0.3);
  color: #9df0b6;
}
.pricing .btn-outline:hover {
  background: rgba(157,240,182,0.1);
  border-color: #9df0b6;
}

.btn-white {
  background: #fff;
  color: var(--t-dark);
  font-weight: 700;
  box-shadow: var(--s-sm);
}
.btn-white:hover { background: var(--c-gray-1); transform: translateY(-1px); }

.btn-block { width: 100%; justify-content: center; }

/* ════════════════════════════════════════════════════════════
   7. HERO SECTION — DARK & SPECTACULAR
   ════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 130px 0 90px;
  background: var(--c-dark-0);
  color: var(--t-light);
}

/* Animated gradient glow background */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 70%; height: 110%;
  background: radial-gradient(ellipse 80% 70% at 65% 45%, rgba(157,240,182,0.28) 0%, rgba(0,78,62,0.12) 48%, transparent 72%);
  filter: blur(1px);
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -5%;
  width: 50%; height: 70%;
  background: radial-gradient(ellipse 80% 80% at 20% 80%, rgba(14,165,233,0.09) 0%, transparent 70%);
}

/* Subtle grid overlay */
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 64px 64px;
}

/* Disable old orb elements (handled by pseudo-elements now) */
.orb { display: none; }

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 5rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Availability badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.77rem;
  font-weight: 700;
  color: #86EFAC;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.22);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 1.75rem;
  letter-spacing: 0.02em;
}
.badge-dot {
  width: 7px; height: 7px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse 2.5s infinite;
  flex-shrink: 0;
}

/* Main headline */
.hero-title {
  font-family: var(--f-head);
  font-size: clamp(3.2rem, 6.8vw, 5.6rem);
  font-weight: 800;
  line-height: 1.01;
  letter-spacing: -0.05em;
  color: #F5F5F7;
  margin-bottom: 1.5rem;
}

/* Subtitle */
.hero-subtitle {
  font-size: clamp(0.95rem, 1.35vw, 1.12rem);
  color: var(--t-light-2);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 430px;
}

/* CTA group */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.stat { display: flex; flex-direction: column; gap: 3px; }
.stat-number {
  display: block;
  font-family: var(--f-head);
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--g-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.stat-label {
  font-size: 0.68rem;
  color: var(--t-light-2);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* Hero visual — premium device mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}

.device-frame {
  width: 100%;
  max-width: 450px;
  background: #16161F;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03),
    0 50px 120px rgba(0,0,0,0.7),
    0 0 100px rgba(157,240,182,0.18);
  overflow: hidden;
  animation: deviceFloat 5.5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
.device-screen { padding: 0; }

.mock-nav {
  height: 44px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  padding: 0 16px;
}
.mock-nav::before {
  content: '';
  width: 10px; height: 10px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  box-shadow: 18px 0 0 rgba(255,255,255,0.12), 36px 0 0 rgba(255,255,255,0.12);
}

.mock-hero {
  height: 150px;
  background: var(--g-brand);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 24px;
  gap: 11px;
  position: relative;
  overflow: hidden;
}
.mock-hero::after {
  content: '';
  position: absolute;
  top: -60%; right: -15%;
  width: 240px; height: 240px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
}
.mock-h1  { height: 14px; width: 72%; background: rgba(255,255,255,0.92); border-radius: 4px; }
.mock-text{ height: 9px;  width: 50%; background: rgba(255,255,255,0.45); border-radius: 4px; }
.mock-btn { height: 30px; width: 120px; background: rgba(255,255,255,0.14); border-radius: 20px; border: 1px solid rgba(255,255,255,0.28); }

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 18px;
}
.mock-card { height: 64px; border-radius: 12px; }
.mock-card.c1 { background: linear-gradient(135deg, #7C3AED, #9333EA); }
.mock-card.c2 { background: linear-gradient(135deg, #EC4899, #F43F5E); }
.mock-card.c3 { background: linear-gradient(135deg, #0EA5E9, #2563EB); }

/* Hide legacy portfolio mock elements */
.mock-content, .mock-products, .pm-logo-circle, .pm-brand-lines,
.pm-nav, .pm-hero, .pm-content, .pm-products, .pm-product,
.pm-wide-hero, .portfolio-mock { display: none; }

/* Floating info cards */
.floating-card {
  position: absolute;
  background: rgba(22,22,31,0.85);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 3;
  white-space: nowrap;
}
.fc-icon { font-size: 1.3rem; }
.fc-text { display: flex; flex-direction: column; }
.fc-text strong { font-size: 0.86rem; color: rgba(245,245,247,0.92); font-weight: 700; }
.fc-text span   { font-size: 0.68rem; color: rgba(245,245,247,0.45); }

.fc-1 { top: -16px; left: -60px; animation: floatCard1 4.5s ease-in-out infinite; }
.fc-2 { bottom: 28px; right: -50px; animation: floatCard2 5.5s ease-in-out infinite; }
.fc-3 { top: 42%; left: -70px; animation: floatCard3 3.8s ease-in-out infinite; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; z-index: 2;
}
.scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.28));
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ════════════════════════════════════════════════════════════
   8. TRUST BAR
   ════════════════════════════════════════════════════════════ */
.trust-bar {
  padding: 2.5rem 0;
  background: var(--c-white);
  border-bottom: 1px solid var(--b-light);
}
.trust-bar .container {
  display: flex; flex-direction: column;
  align-items: center; gap: 1.5rem;
}
.trust-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gray-3);
}
.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.trust-logo {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--c-gray-3);
  padding: 8px 18px;
  border-radius: var(--r-pill);
  border: 1px solid var(--b-light);
  background: var(--c-white);
  transition: all var(--dt-fast) var(--ease);
  letter-spacing: 0.06em;
  cursor: default;
  box-shadow: var(--s-xs);
}
.trust-logo:hover {
  color: var(--c-violet);
  border-color: rgba(0,45,36,0.22);
  background: rgba(0,45,36,0.04);
  transform: translateY(-2px);
}

/* MARQUEE ANIMATION */
.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  /* Apply a fade-out mask to left and right edges */
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
.marquee-content {
  display: inline-flex;
  gap: 1.5rem;
  animation: scrollMarquee 25s linear infinite;
  padding-left: 1.5rem;
}
.marquee-content:hover {
  animation-play-state: paused;
}
@keyframes scrollMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } 
}

/* PORTFOLIO KPI TAGS */
.kpi-tags {
  display: flex;
  gap: 0.5rem;
  margin: 0.8rem 0;
  flex-wrap: wrap;
}
.kpi-tag {
  background: rgba(157,240,182,0.18);
  color: #004e3e;
  border: 1px solid rgba(157,240,182,0.6);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* ════════════════════════════════════════════════════════════
   9. ABOUT (PURE WHITE)
   ════════════════════════════════════════════════════════════ */
.about { background: var(--c-white); }

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 6rem;
}

.about-visual { display: flex; justify-content: center; }

.about-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-image-placeholder {
  width: 300px; height: 380px;
  border-radius: var(--r-lg);
  background: linear-gradient(145deg, var(--c-dark-2), var(--c-dark-3));
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--s-xl), 0 0 80px rgba(157,240,182,0.15);
  position: relative;
  overflow: hidden;
}
.about-image-placeholder::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 55%;
  background: linear-gradient(180deg, rgba(157,240,182,0.18), transparent);
}
.about-image-placeholder::after {
  content: '';
  position: absolute;
  bottom: -50px; right: -50px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(0,78,62,0.35), transparent 70%);
  border-radius: 50%;
}

.avatar-circle {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--g-brand);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 70px rgba(157,240,182,0.45);
  position: relative; z-index: 1;
}
.avatar-initials {
  font-family: var(--f-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
}

/* Floating location badge */
.about-badge-card {
  position: absolute;
  bottom: -18px; right: -28px;
  background: var(--c-white);
  border-radius: var(--r-md);
  box-shadow: var(--s-lg);
  border: 1px solid var(--b-light);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap; z-index: 3;
}
.about-badge-icon { font-size: 1.3rem; }
.about-badge-card strong { display: block; font-size: 0.87rem; color: var(--t-dark); font-weight: 700; }
.about-badge-card span  { font-size: 0.72rem; color: var(--t-gray); }

/* Experience badge */
.about-exp-card {
  position: absolute;
  top: -18px; left: -28px;
  background: var(--g-brand);
  border-radius: var(--r-md);
  padding: 16px 20px;
  display: flex; flex-direction: column; gap: 2px;
  box-shadow: var(--s-brand); z-index: 3;
}
.exp-number { font-family: var(--f-head); font-size: 1.9rem; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -0.03em; }
.exp-text   { font-size: 0.7rem; color: rgba(255,255,255,0.68); font-weight: 700; letter-spacing: 0.05em; }

/* About text content */
.about-content {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 1.5rem;
}
.about-text {
  font-size: 1.03rem;
  color: var(--t-gray);
  line-height: 1.85;
}
.about-skills {
  display: flex; flex-direction: column;
  gap: 0.6rem; width: 100%;
}
.skill-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--r-md);
  background: var(--c-gray-1);
  transition: all var(--dt-fast) var(--ease);
  border: 1px solid transparent;
  cursor: default;
}
.skill-item:hover {
  background: var(--c-white);
  border-color: var(--b-light);
  transform: translateX(5px);
  box-shadow: var(--s-sm);
}
.skill-icon { font-size: 1.35rem; flex-shrink: 0; }
.skill-item strong { display: block; font-size: 0.9rem; color: var(--t-dark); font-weight: 700; margin-bottom: 1px; }
.skill-item p      { font-size: 0.78rem; color: var(--t-gray); margin: 0; }

/* ════════════════════════════════════════════════════════════
   10. SERVICES (APPLE LIGHT GRAY)
   ════════════════════════════════════════════════════════════ */
.services { background: var(--c-gray-1) !important; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--c-white);
  border: 1px solid var(--b-light);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  transition: all var(--dt-base) var(--ease);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  transform: scaleX(0);
  transition: transform var(--dt-base) var(--ease);
  transform-origin: left;
}
.service-card:nth-child(1)::after { background: var(--g-brand); }
.service-card:nth-child(2)::after { background: var(--g-pink); }
.service-card:nth-child(3)::after { background: var(--g-blue); }
.service-card:nth-child(4)::after { background: var(--g-green); }

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--s-xl);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon-wrap {
  width: 58px; height: 58px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}
.service-icon-wrap.gradient-1 { background: var(--g-brand); box-shadow: 0 8px 24px rgba(157,240,182,0.38); }
.service-icon-wrap.gradient-2 { background: var(--g-pink);  box-shadow: 0 8px 24px rgba(157,240,182,0.32); }
.service-icon-wrap.gradient-3 { background: var(--g-blue);  box-shadow: 0 8px 24px rgba(14,165,233,0.32); }
.service-icon-wrap.gradient-4 { background: var(--g-green); box-shadow: 0 8px 24px rgba(72,199,116,0.32); }

.service-title {
  font-family: var(--f-head);
  font-size: 1.28rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
  color: var(--t-dark);
  letter-spacing: -0.025em;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--t-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.service-features {
  display: flex; flex-direction: column;
  gap: 0.45rem; margin-bottom: 1.75rem;
}
.service-features li {
  font-size: 0.82rem;
  color: var(--t-gray);
  display: flex; align-items: center; gap: 8px;
}
.service-features li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--c-violet);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.6;
}
.service-link {
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--c-violet);
  display: inline-flex;
  align-items: center;
  transition: opacity var(--dt-fast);
}
.service-link:hover { opacity: 0.65; }

/* ════════════════════════════════════════════════════════════
   11. PORTFOLIO (WHITE)
   ════════════════════════════════════════════════════════════ */
.portfolio { background: var(--c-white); }

.portfolio-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  background: var(--c-gray-1);
  padding: 5px;
  border-radius: var(--r-pill);
  width: max-content;
  margin-left: auto; margin-right: auto;
}
.filter-btn {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--t-gray);
  padding: 0.5rem 1.3rem;
  border-radius: var(--r-pill);
  transition: all var(--dt-fast) var(--ease);
  white-space: nowrap;
}
.filter-btn:hover { color: var(--t-dark); }
.filter-btn.active {
  background: var(--c-white);
  color: var(--t-dark);
  font-weight: 700;
  box-shadow: var(--s-sm);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.portfolio-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-white);
  border: 1px solid var(--b-light);
  transition: all var(--dt-base) var(--ease);
  box-shadow: var(--s-xs);
}
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--s-xl);
  border-color: transparent;
}
.portfolio-card.hidden { display: none; }
.portfolio-card-wide { grid-column: span 2; }

.portfolio-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.portfolio-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--dt-slow) var(--ease);
}
.portfolio-card:hover .portfolio-placeholder { transform: scale(1.05); }
.portfolio-placeholder.gradient-1 { background: linear-gradient(135deg, #002d24, #004e3e); }
.portfolio-placeholder.gradient-2 { background: linear-gradient(135deg, #0EA5E9, #2563EB); }
.portfolio-placeholder.gradient-3 { background: linear-gradient(135deg, #001712, #002d24); }
.portfolio-placeholder.gradient-4 { background: linear-gradient(135deg, #9df0b6, #7ce09b); }
.portfolio-placeholder.gradient-5 { background: linear-gradient(135deg, #F59E0B, #EF4444); }

/* Mini device mockups inside portfolio cards */
.portfolio-mock {
  width: 82%; padding: 12px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column; gap: 8px;
}
.branding-mock {
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
}
.pm-logo-circle {
  display: flex;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
}
.pm-brand-lines { display: flex; flex-direction: column; gap: 7px; width: 80px; }
.pm-brand-lines div { height: 6px; background: rgba(255,255,255,0.2); border-radius: 3px; }
.pm-brand-lines div:nth-child(2) { width: 70%; }
.pm-brand-lines div:nth-child(3) { width: 50%; }
.pm-nav   { height: 9px; background: rgba(255,255,255,0.3); border-radius: 4px; }
.pm-hero  { height: 52px; background: rgba(255,255,255,0.15); border-radius: 7px; }
.pm-content { display: flex; gap: 6px; }
.pm-content div { height: 28px; background: rgba(255,255,255,0.1); border-radius: 4px; flex: 1; }
.pm-products { display: flex; gap: 8px; padding: 4px 0; }
.pm-product  { height: 56px; background: rgba(255,255,255,0.15); border-radius: 7px; flex: 1; }
.pm-wide-hero { height: 70px; background: rgba(255,255,255,0.12); border-radius: 8px; }

.portfolio-overlay {
  position: absolute; inset: 0;
  background: rgba(3,3,5,0.7);
  backdrop-filter: blur(6px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  opacity: 0;
  transition: opacity var(--dt-base) var(--ease);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.portfolio-tags { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.tag {
  font-size: 0.68rem;
  font-weight: 800;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  letter-spacing: 0.06em;
}
.portfolio-info {
  padding: 1.2rem 1.5rem 1.5rem;
  border-top: 1px solid var(--b-light);
}
.portfolio-info h3 {
  font-family: var(--f-head);
  font-size: 0.98rem; font-weight: 700;
  color: var(--t-dark); margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.portfolio-info p { font-size: 0.8rem; color: var(--t-gray); line-height: 1.55; }

/* ════════════════════════════════════════════════════════════
   12. PROCESS (DARK)
   ════════════════════════════════════════════════════════════ */
.process { background: var(--c-dark-1) !important; color: var(--t-light); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 25px;
  left: calc(12.5% + 26px);
  right: calc(12.5% + 26px);
  height: 1px;
  background: linear-gradient(90deg, rgba(157,240,182,0.6), rgba(0,78,62,0.4), rgba(157,240,182,0.4));
  opacity: 0.4;
}
.process-step {
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 0;
  cursor: default;
}
.step-number {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head);
  font-size: 0.85rem; font-weight: 800;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
  position: relative; z-index: 1;
  transition: all var(--dt-base) var(--ease);
}
.process-step:hover .step-number {
  background: var(--g-brand);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--s-brand);
  transform: scale(1.12);
}
.step-content { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.step-icon     { font-size: 1.75rem; margin-bottom: 0.2rem; }
.step-content h3 {
  font-family: var(--f-head);
  font-size: 1rem; font-weight: 800;
  color: rgba(245,245,247,0.88);
  letter-spacing: -0.01em;
}
.step-content p { font-size: 0.8rem; color: var(--t-light-2); line-height: 1.72; }

/* ════════════════════════════════════════════════════════════
   13. PRICING (VERY DARK + GLASS)
   ════════════════════════════════════════════════════════════ */
.pricing { background: var(--c-dark-2) !important; color: var(--t-light); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: center;
}
.pricing-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 2.25rem 2rem;
  position: relative;
  transition: all var(--dt-base) var(--ease);
  backdrop-filter: blur(12px);
}
.pricing-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.13);
  transform: translateY(-6px);
}
.pricing-featured {
  background: rgba(157,240,182,0.1);
  border-color: rgba(157,240,182,0.42);
  transform: scale(1.05);
  box-shadow: 0 0 0 1px rgba(157,240,182,0.2), var(--s-brand);
}
.pricing-featured:hover { transform: scale(1.05) translateY(-5px); }

.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--g-brand);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  box-shadow: var(--s-brand);
  letter-spacing: 0.05em;
}
.pricing-header {
  text-align: center;
  padding-bottom: 1.75rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pricing-icon    { font-size: 2rem; margin-bottom: 1rem; }
.pricing-name {
  font-family: var(--f-head);
  font-size: 1.15rem; font-weight: 800;
  color: rgba(245,245,247,0.9);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.pricing-price  { margin-bottom: 0.4rem; }
.price-amount {
  font-family: var(--f-head);
  font-size: 2.6rem; font-weight: 800;
  background: var(--g-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.045em;
  line-height: 1.1;
}
.pricing-tagline { font-size: 0.78rem; color: var(--t-light-2); }

.pricing-features {
  display: flex; flex-direction: column;
  gap: 0.85rem; margin-bottom: 2rem;
}
.pricing-features li {
  font-size: 0.84rem;
  color: rgba(245,245,247,0.75);
  display: flex; align-items: center; gap: 10px;
  line-height: 1.4;
}
.feature-yes::before {
  content: '✓';
  color: #34D399;
  font-weight: 800;
  font-size: 0.75rem;
  background: rgba(52,211,153,0.14);
  min-width: 20px; height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-no { opacity: 0.32; }
.feature-no::before {
  content: '✕';
  color: rgba(255,255,255,0.3);
  font-size: 0.68rem;
  min-width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.78rem;
  color: var(--t-light-2);
}

/* ════════════════════════════════════════════════════════════
   14. TESTIMONIALS (APPLE GRAY)
   ════════════════════════════════════════════════════════════ */
.testimonials { background: var(--c-gray-1) !important; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testimonial-card {
  background: var(--c-white);
  border: 1px solid var(--b-light);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1.1rem;
  transition: all var(--dt-base) var(--ease);
  position: relative; overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -8px; right: 20px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 7rem; line-height: 1;
  color: var(--c-violet); opacity: 0.06;
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--s-lg);
  border-color: rgba(0,45,36,0.12);
}
.testimonial-stars { color: #FBBF24; font-size: 0.88rem; letter-spacing: 3px; }
.testimonial-text  {
  font-size: 0.91rem;
  color: var(--t-gray);
  line-height: 1.82;
  font-style: italic;
  position: relative; z-index: 1;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--g-brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.77rem; font-weight: 800;
  color: #001712; flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(157,240,182,0.32);
}
.testimonial-author strong { display: block; font-size: 0.88rem; color: var(--t-dark); font-weight: 700; }
.testimonial-author span   { font-size: 0.74rem; color: var(--t-gray); }

/* Review Form Styling (Light Theme) */
.review-form .form-group input,
.review-form .form-group textarea,
.review-form .form-group select {
  width: 100%;
  padding: 16px 20px;
  background: var(--c-white);
  border: 1px solid var(--b-light);
  border-radius: var(--r-sm);
  color: var(--t-dark);
  font-size: 0.95rem;
  transition: all var(--dt-base) var(--ease);
}
.review-form .form-group input:focus,
.review-form .form-group textarea:focus,
.review-form .form-group select:focus {
  border-color: var(--c-violet);
  box-shadow: 0 0 0 4px rgba(0,45,36,0.1);
  background: var(--c-white);
}

/* ════════════════════════════════════════════════════════════
   15. FAQ (WHITE)
   ════════════════════════════════════════════════════════════ */
.faq { background: var(--c-white); }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 0.65rem;
}
.faq-item {
  border: 1px solid var(--b-light);
  border-radius: var(--r-md);
  background: var(--c-white);
  overflow: hidden;
  transition: border-color var(--dt-base), box-shadow var(--dt-base);
}
.faq-item:hover { border-color: rgba(0,45,36,0.2); box-shadow: var(--s-sm); }
.faq-item.open  { border-color: rgba(0,45,36,0.32); box-shadow: var(--s-md); }

.faq-question {
  width: 100%;
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-size: 0.94rem; font-weight: 600;
  color: var(--t-dark);
  text-align: left;
  background: transparent; border: none; cursor: pointer;
  transition: color var(--dt-fast);
}
.faq-question:hover    { color: var(--c-violet); }
.faq-item.open .faq-question { color: var(--c-violet); }

.faq-icon {
  font-size: 1.35rem; color: var(--t-gray);
  transition: transform var(--dt-base) var(--ease), color var(--dt-fast);
  flex-shrink: 0; line-height: 1; font-weight: 300;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--c-violet); }

.faq-answer {
  font-size: 0.9rem; color: var(--t-gray);
  line-height: 1.82; padding: 0 1.5rem;
  max-height: 0; overflow: hidden;
  transition: max-height var(--dt-slow) var(--ease), padding var(--dt-slow) var(--ease);
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 1.5rem 1.5rem; }

/* ════════════════════════════════════════════════════════════
   16. CONTACT (DARK)
   ════════════════════════════════════════════════════════════ */
.contact { background: var(--c-dark-1) !important; color: var(--t-light); }

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 5rem;
  align-items: start;
}
.contact-info {
  display: flex; flex-direction: column;
  gap: 1.5rem; padding-top: 0.5rem;
}
.contact-info .section-title {
  color: var(--t-light);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 0;
}
.contact-subtitle { font-size: 0.95rem; color: var(--t-light-2); line-height: 1.8; }
.contact-details  { display: flex; flex-direction: column; gap: 0.65rem; }

.contact-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: all var(--dt-fast) var(--ease);
  color: var(--t-light);
}
.contact-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  transform: translateX(4px);
}
.contact-icon { font-size: 1.25rem; flex-shrink: 0; width: 26px; text-align: center; }
.contact-item strong {
  display: block;
  font-size: 0.68rem; font-weight: 800;
  color: rgba(255,255,255,0.48);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2px;
}
.contact-item span { font-size: 0.88rem; color: rgba(245,245,247,0.8); }

/* WhatsApp item */
.contact-item-whatsapp:hover {
  background: rgba(37,211,102,0.09) !important;
  border-color: rgba(37,211,102,0.22) !important;
}
.contact-icon-wa { color: #25D366; }

/* Availability badge */
.availability-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700;
  color: #86EFAC;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.22);
  padding: 10px 16px;
  border-radius: var(--r-pill);
  width: max-content;
}
.availability-badge .badge-dot { background: #22C55E; flex-shrink: 0; animation: pulse 2.5s infinite; }

/* Contact form */
.contact-form-wrapper {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  position: relative; overflow: hidden;
}
.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--g-brand);
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row     { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group   { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.72rem; font-weight: 800;
  color: rgba(255,255,255,0.48);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: 0.85rem 1.1rem;
  font-size: 0.9rem;
  color: var(--t-light);
  width: 100%; outline: none;
  transition: border-color var(--dt-fast), background var(--dt-fast), box-shadow var(--dt-fast);
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.22); }
.form-group select option { background: #1C1C26; color: rgba(245,245,247,0.9); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(124,58,237,0.55);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.14);
}
.form-group textarea { resize: vertical; min-height: 128px; }

.form-success-msg,
.form-error-msg {
  padding: 1rem 1.2rem;
  border-radius: var(--r-md);
  font-size: 0.88rem;
  font-weight: 600;
  display: none;
}
.form-success-msg {
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  color: #86EFAC;
}
.form-error-msg {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.25);
  color: #FCA5A5;
}

/* ════════════════════════════════════════════════════════════
   17. FOOTER (DARKEST)
   ════════════════════════════════════════════════════════════ */
.footer {
  background: var(--c-black);
  color: rgba(255,255,255,0.55);
  padding: 5rem 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(157,240,182,0.55), rgba(0,78,62,0.4), transparent);
}
.footer::after {
  content: '';
  position: absolute;
  top: -250px; right: -150px;
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(124,58,237,0.05), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative; z-index: 1;
}
.footer-logo          { display: inline-block; margin-bottom: 0.85rem; }
.footer-logo .logo-text { color: rgba(255,255,255,0.88); }
.footer-logo .logo-dot  { color: #A78BFA; }

.footer-tagline {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.38);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}
.footer-social { display: flex; gap: 0.65rem; }
.social-link {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: all var(--dt-fast);
}
.social-link:hover {
  background: rgba(124,58,237,0.2);
  border-color: rgba(124,58,237,0.4);
  color: #C4B5FD;
  transform: translateY(-2px);
}

.footer-links h4,
.footer-contact-info h4 {
  font-size: 0.68rem; font-weight: 800;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-links ul    { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a {
  font-size: 0.84rem; color: rgba(255,255,255,0.4);
  transition: color var(--dt-fast), transform var(--dt-fast);
  display: inline-block;
}
.footer-links a:hover { color: rgba(255,255,255,0.82); transform: translateX(4px); }

.footer-contact-info p {
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
  line-height: 1.82; margin-bottom: 0.75rem;
}
.footer-contact-info a {
  display: block; font-size: 0.8rem;
  color: rgba(255,255,255,0.4); margin-bottom: 0.35rem;
  transition: color var(--dt-fast);
}
.footer-contact-info a:hover { color: #C4B5FD; }

.footer-bottom {
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
  padding: 1.5rem 0;
  position: relative; z-index: 1;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.27); }
.footer-legal    { display: flex; gap: 1.5rem; }
.footer-legal a  {
  font-size: 0.78rem; color: rgba(255,255,255,0.27);
  transition: color var(--dt-fast);
}
.footer-legal a:hover { color: rgba(255,255,255,0.55); }

/* ════════════════════════════════════════════════════════════
   18. FLOATING CTAs
   ════════════════════════════════════════════════════════════ */
.floating-cta {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 900;
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 0.6rem;
  transform: translateY(20px); opacity: 0;
  transition: all var(--dt-base) var(--ease);
  pointer-events: none;
}
.floating-cta.visible { opacity: 1; transform: translateY(0); pointer-events: all; }

.floating-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px;
  border-radius: var(--r-pill);
  font-weight: 700; font-size: 0.82rem;
  text-decoration: none;
  transition: all var(--dt-fast) var(--ease);
  white-space: nowrap; letter-spacing: -0.01em;
}
.floating-btn:hover { transform: translateY(-2px); }

.floating-wa {
  background: #25D366; color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,0.42);
}
.floating-wa:hover { background: #20BD5C; box-shadow: 0 10px 30px rgba(37,211,102,0.52); }

.floating-cta-btn {
  background: var(--g-brand); color: #fff;
  box-shadow: var(--s-brand);
}
.floating-cta-btn:hover { box-shadow: 0 12px 40px rgba(124,58,237,0.62); }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 5rem; right: 2.2rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0; transform: translateY(10px);
  transition: all var(--dt-fast) var(--ease);
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover {
  background: var(--g-brand);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════════
   19. RESPONSIVE — TABLET (≤1024px)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 3.5rem; }
  .hero-visual     { display: none; }
  .hero-content    { align-items: center; text-align: center; }
  .hero-subtitle   { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-cta-group  { justify-content: center; }
  .hero-stats      { justify-content: center; }

  .about-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { display: none; }
  .about-content { align-items: center; text-align: center; }
  .skill-item   { text-align: left; }

  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid  { grid-template-columns: repeat(2, 1fr); }
  .portfolio-card-wide { grid-column: span 1; }

  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }

  .pricing-grid    { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-featured { transform: none; }
  .pricing-featured:hover { transform: translateY(-5px); }

  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }

  .nav-center { display: none; }
  .nav-right .lang-switcher { display: none; }
  .nav-right .nav-cta { display: none; }
  .hamburger  { display: flex; }
  
  .nav-container {
    display: flex !important;
    justify-content: space-between !important;
    width: 100%;
  }
}

/* ════════════════════════════════════════════════════════════
   20. RESPONSIVE — MOBILE (≤640px)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root { --section-py: clamp(4rem, 8vw, 6rem); }

  .container     { padding: 0 1.25rem; }
  .nav-container { padding: 0.85rem 1.25rem; }

  .hero-title  { font-size: clamp(2.6rem, 9vw, 3.8rem); }
  .hero-stats  { gap: 1.25rem; flex-wrap: wrap; }
  .stat-number { font-size: 1.8rem; }

  .services-grid   { grid-template-columns: 1fr; }
  .portfolio-grid  { grid-template-columns: 1fr; }
  .portfolio-card-wide { grid-column: span 1; }

  .process-steps { grid-template-columns: 1fr 1fr; }

  .pricing-grid { max-width: 100%; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid   { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.75rem; }

  /* Compact floating buttons on mobile */
  .floating-btn span { display: none; }
  .floating-btn {
    width: 50px; height: 50px;
    padding: 0; justify-content: center;
    border-radius: 50%;
  }

  .portfolio-filter { width: auto; }

  .section-title { letter-spacing: -0.03em; }
}

/* ==========================================================================
   Rechtliche Seiten (Impressum, Datenschutz, AGB)
   ========================================================================== */
.legal-page { padding: 120px 0 80px; background-color: var(--bg-dark); }
.legal-container { max-width: 800px; margin: 0 auto; padding: 0 20px; }
.legal-header { margin-bottom: 50px; text-align: center; }
.legal-badge { display: inline-block; background: rgba(56, 189, 248, 0.1); color: var(--accent-blue); padding: 5px 15px; border-radius: 30px; font-size: 0.85rem; font-weight: 600; margin-bottom: 20px; border: 1px solid rgba(56, 189, 248, 0.2); }
.legal-header h1 { font-size: clamp(2rem, 5vw, 3rem); font-family: 'Syne', sans-serif; color: var(--text-light); margin-bottom: 10px; }
.legal-sub { color: var(--text-muted); font-size: 1.1rem; }
.legal-section { margin-bottom: 40px; }
.legal-section h2 { font-size: 1.5rem; color: var(--text-light); font-family: 'Syne', sans-serif; margin-bottom: 15px; border-bottom: 1px solid var(--border-color); padding-bottom: 10px; }
.legal-section h3 { font-size: 1.25rem; color: var(--text-light); margin: 25px 0 10px; }
.legal-section p, .legal-section ul { color: var(--text-muted); line-height: 1.8; margin-bottom: 15px; font-size: 1rem; }
.legal-section ul { list-style-type: disc; padding-left: 20px; }
.legal-section li { margin-bottom: 5px; }
.legal-section strong { color: var(--text-light); font-weight: 600; }
.legal-section a { color: var(--accent-blue); text-decoration: none; transition: var(--transition); border-bottom: 1px dashed rgba(56,189,248,0.5); }
.legal-section a:hover { color: var(--accent-mint); border-color: var(--accent-mint); }
.legal-footer { margin-top: 60px; padding-top: 20px; border-top: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.legal-footer p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }
.back-link { color: var(--accent-blue); display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font-size: 0.95rem; transition: var(--transition); font-weight: 500; }
.back-link:hover { color: var(--accent-mint); transform: translateX(-5px); }


/* ==========================================================================
   HIGH-END CONVERSION UPGRADES (Lead-Magnet, Video-Pitch, Care-Plan)
   ========================================================================== */

/* Lead Magnet */
.lead-magnet-section { background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(16, 185, 129, 0.05)); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 80px 0; text-align: center; overflow: hidden; position: relative; }
.lead-magnet-card { max-width: 700px; margin: 0 auto; background: rgba(255,255,255,0.02); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; padding: 50px 40px; box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.lead-magnet-card h2 { font-family: 'Syne', sans-serif; font-size: 2.2rem; color: #fff; margin-bottom: 15px; }
.lead-magnet-card p { color: #a1a1aa; font-size: 1.1rem; line-height: 1.6; margin-bottom: 30px; }
.lm-form { display: flex; gap: 15px; max-width: 500px; margin: 0 auto; }
.lm-form input { flex: 1; padding: 16px 24px; border-radius: 30px; border: 1px solid rgba(255,255,255,0.2); background: rgba(0,0,0,0.3); color: #fff; font-size: 1rem; }
.lm-form button { padding: 16px 30px; border-radius: 30px; font-weight: bold; background: var(--accent-mint); color: #000; border: none; cursor: pointer; transition: 0.3s; white-space: nowrap; }
.lm-form button:hover { background: #fff; }
@media (max-width: 600px) { .lm-form { flex-direction: column; } .lead-magnet-card { padding: 30px 20px; } }

/* Care Plan */
.care-plan-banner { background: rgba(56, 189, 248, 0.05); border: 1px solid rgba(56, 189, 248, 0.2); border-radius: 16px; padding: 30px; text-align: center; margin-top: 40px; max-width: 800px; margin-left: auto; margin-right: auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.care-plan-banner h3 { color: #fff; font-family: 'Syne'; font-size: 1.4rem; margin-bottom: 5px; }
.care-plan-banner p { color: #a1a1aa; margin: 0; font-size: 1rem; }
.care-plan-banner .lottie-icon { font-size: 2rem; }

/* Video Pitch */
.about-image-placeholder { position: relative; }
.video-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 70px; height: 70px; background: rgba(16, 185, 129, 0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; border: 4px solid rgba(255,255,255,0.2); transition: 0.3s ease; box-shadow: 0 0 30px rgba(16, 185, 129, 0.6); }
.video-play-btn:hover { transform: translate(-50%, -50%) scale(1.1); background: #fff; }
.video-play-btn svg { width: 24px; height: 24px; fill: #000; margin-left: 4px; }
.pulse-ring { position: absolute; width: 100%; height: 100%; top: 0; left: 0; border-radius: 50%; animation: pulse-play 2s infinite; border: 2px solid rgba(16, 185, 129, 0.8); box-sizing: border-box; }
@keyframes pulse-play { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }


/* ============================================================
   Awwwards Premium Upgrades
   ============================================================ */

/* 1. Custom Cursor wurde für maximale Performance und Professionalität entfernt (Native Pointer) */

/* 2. Preloader */
#site-preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: var(--bg-dark); /* oder #0f1115 */
    z-index: 100000;
    display: flex;
    align-items: center; justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
#site-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-content {
    text-align: center;
    display: flex; flex-direction: column; align-items: center;
}
.preloader-title {
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
    opacity: 0;
    animation: fadeInText 0.8s forwards 0.2s;
}
.preloader-subtitle {
    color: var(--accent-mint);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInText 0.8s forwards 0.4s;
}
.preloader-bar {
    width: 0%;
    height: 2px;
    background: var(--accent-mint);
    animation: loadBar 1.2s forwards cubic-bezier(0.8, 0, 0.2, 1);
}

@keyframes fadeInText {
    to { opacity: 1; transform: translateY(0); }
    from { opacity: 0; transform: translateY(10px); }
}
@keyframes loadBar {
    to { width: 150px; }
    from { width: 0; }
}

/* 3. 3D Tilt Wrapper */
.tilt-card {
    will-change: transform;
    transform-style: preserve-3d;
}






/* ── 15. CINEMA GRAIN FILTER (Removed for Performance) ── */

html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* ══════════════════════════════════════════════
   THEME TOGGLE BUTTON
   ══════════════════════════════════════════════ */
.theme-toggle {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  flex-shrink: 0;
}
.theme-toggle:hover {
  background: rgba(157, 240, 182, 0.15);
  border-color: rgba(157, 240, 182, 0.4);
  transform: scale(1.1) rotate(15deg);
}

/* ══════════════════════════════════════════════
   SMOOTH TRANSITIONS für Theme-Wechsel
   ══════════════════════════════════════════════ */
html {
  transition: background-color 0.35s ease;
}

/* ══════════════════════════════════════════════════════════
   LIGHT MODE — Vollständige Überarbeitung
   Klasse "light-mode" sitzt auf <body> (gesetzt via JS)
   ══════════════════════════════════════════════════════════ */

/* ── Body Basis ── */
body.light-mode {
  background-color: #F0F0F5 !important;
  color: #1D1D1F !important;
}

/* ── Hero: BLEIBT dunkel (Premium-Aussehen) ── */
body.light-mode .hero,
body.light-mode #hero {
  background: linear-gradient(135deg, #001712 0%, #002d24 60%, #003e31 100%) !important;
}
body.light-mode .hero * { color: inherit !important; }
body.light-mode .hero h1,
body.light-mode .hero .hero-title { color: #ffffff !important; }
body.light-mode .hero p,
body.light-mode .hero .hero-sub { color: rgba(255,255,255,0.75) !important; }

/* ── Navbar: Hell (nur im ungescrrollten Zustand) ── */
body.light-mode .navbar:not(.scrolled) {
  background: transparent !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

/* Scrolled "Pill" Navbar NICHT anfassen — bleibt dunkel wie designed */
body.light-mode .navbar.scrolled .nav-container {
  background: rgba(15, 17, 21, 0.85) !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08) !important;
}

/* Nav-Links: Im ungescrrollten Zustand dunkel (da Hero hell/transparent) */
body.light-mode .navbar:not(.scrolled) .nav-link { color: #1D1D1F !important; }
body.light-mode .navbar:not(.scrolled) .nav-link:hover { color: #002d24 !important; }
body.light-mode .navbar:not(.scrolled) .lang-btn { color: #424245 !important; }
body.light-mode .navbar:not(.scrolled) .lang-btn.active { color: #002d24 !important; }
body.light-mode .navbar:not(.scrolled) .lang-divider { color: rgba(0,0,0,0.2) !important; }

/* Scrolled: Links bleiben hell (weiß auf dunklem Pill) */
body.light-mode .navbar.scrolled .nav-link { color: rgba(255,255,255,0.7) !important; }
body.light-mode .navbar.scrolled .nav-link:hover { color: #fff !important; }
body.light-mode .navbar.scrolled .nav-link.active { color: #fff !important; }
body.light-mode .navbar.scrolled .lang-btn { color: rgba(255,255,255,0.5) !important; }
body.light-mode .navbar.scrolled .lang-btn.active { color: #fff !important; }

/* Theme Toggle anpassen im Light Mode (nur nicht-scrolled) */
body.light-mode .navbar:not(.scrolled) .theme-toggle {
  background: rgba(0,45,36,0.08) !important;
  border-color: rgba(0,45,36,0.18) !important;
}

/* ── Allgemeine Sektionen: Hell ── */
body.light-mode section {
  background-color: #F0F0F5 !important;
}
body.light-mode .services,
body.light-mode .portfolio,
body.light-mode .pricing {
  background-color: #F0F0F5 !important;
}


/* ── Texte in hellen Sektionen ── */
body.light-mode .section-title { color: #1D1D1F !important; text-shadow: none !important; }
body.light-mode .section-subtitle { color: #424245 !important; }
body.light-mode .section-label {
  color: #002d24 !important;
  background: rgba(0,45,36,0.08) !important;
  border-color: rgba(0,45,36,0.2) !important;
}
body.light-mode p { color: #424245 !important; }
body.light-mode h2, body.light-mode h3, body.light-mode h4 { color: #1D1D1F !important; text-shadow: none !important; }
body.light-mode li { color: #424245 !important; }
body.light-mode span:not(.btn *):not(.tag):not(.preloader-title):not(.preloader-subtitle) { color: #424245 !important; }

/* ── Stat-Zahlen ── */
body.light-mode .stat-number,
body.light-mode .counter { color: #002d24 !important; }
body.light-mode .stat-label { color: #6E6E73 !important; }

/* ── Logo-Leiste / Tech-Tags ── */
body.light-mode .logo-item,
body.light-mode .tech-tag,
body.light-mode .trust-item { 
  color: #424245 !important;
  opacity: 0.8;
}

/* ── Hintergrundglow: DEAKTIVIERT im Light Mode ── */
body.light-mode .hero-glow,
body.light-mode [class*="glow"],
body.light-mode [class*="blob"],
body.light-mode [class*="orb"] {
  display: none !important;
}

/* ── Cards / Service ── */
body.light-mode .service-card {
  background: #FFFFFF !important;
  border-color: rgba(0,0,0,0.07) !important;
  box-shadow: 0 4px 24px rgba(0,45,36,0.06) !important;
}
body.light-mode .service-card h3 { color: #1D1D1F !important; }
body.light-mode .service-card p { color: #424245 !important; }
body.light-mode .service-card .service-link { color: #002d24 !important; }

/* ── Portfolio-Karten ── */
body.light-mode .portfolio-card {
  box-shadow: 0 8px 32px rgba(0,45,36,0.10) !important;
}
body.light-mode .portfolio-filter-btn {
  background: rgba(0,45,36,0.08) !important;
  color: #002d24 !important;
  border-color: rgba(0,45,36,0.2) !important;
}
body.light-mode .portfolio-filter-btn.active {
  background: #002d24 !important;
  color: #9df0b6 !important;
}

/* ── Pricing Karten ── */
body.light-mode .pricing-card {
  background: #FFFFFF !important;
  border-color: rgba(0,0,0,0.08) !important;
  box-shadow: 0 4px 24px rgba(0,45,36,0.07) !important;
}
body.light-mode .pricing-card h3,
body.light-mode .pricing-price,
body.light-mode .pricing-highlight { color: #1D1D1F !important; }
body.light-mode .check-item,
body.light-mode .pricing-feature { color: #424245 !important; }
body.light-mode .pricing-card.featured {
  background: linear-gradient(135deg, #002d24 0%, #004e3e 100%) !important;
}
body.light-mode .pricing-card.featured h3,
body.light-mode .pricing-card.featured p,
body.light-mode .pricing-card.featured span,
body.light-mode .pricing-card.featured li { color: rgba(255,255,255,0.9) !important; }

/* ── FAQ ── */
body.light-mode .faq-item {
  background: #FFFFFF !important;
  border-color: rgba(0,0,0,0.07) !important;
}
body.light-mode .faq-question { color: #1D1D1F !important; text-shadow: none !important; }
body.light-mode .faq-answer { color: #424245 !important; }

/* ── Reviews ── */
body.light-mode .review-card {
  background: #FFFFFF !important;
  border-color: rgba(0,0,0,0.07) !important;
  box-shadow: 0 4px 20px rgba(0,45,36,0.07) !important;
}
body.light-mode .review-card p { color: #424245 !important; }
body.light-mode .reviewer-name { color: #1D1D1F !important; }

/* ── Process Steps ── */
body.light-mode .process-step-number {
  color: #002d24 !important;
  -webkit-text-fill-color: #002d24 !important;
  opacity: 0.15 !important;
}
body.light-mode .process-step h3 { color: #1D1D1F !important; }
body.light-mode .process-step p { color: #6E6E73 !important; }

/* ── KONTAKT: BLEIBT dunkel (wie Footer) ── */
body.light-mode .contact,
body.light-mode #contact {
  background: #001712 !important;
}
/* Texte im Kontakt: WEISS, da Hintergrund dunkel bleibt */
body.light-mode .contact h2,
body.light-mode .contact h3,
body.light-mode .contact h4,
body.light-mode .contact p,
body.light-mode .contact span,
body.light-mode .contact li,
body.light-mode .contact label,
body.light-mode .contact .section-title,
body.light-mode .contact .section-label {
  color: rgba(255,255,255,0.9) !important;
}
body.light-mode .contact .section-label {
  background: rgba(157,240,182,0.1) !important;
  border-color: rgba(157,240,182,0.3) !important;
  color: #9df0b6 !important;
}
/* Kontakt-Info-Boxen */
body.light-mode .contact-info-box,
body.light-mode .contact-item {
  background: rgba(255,255,255,0.05) !important;
  border-color: rgba(255,255,255,0.1) !important;
}
body.light-mode .contact-item span,
body.light-mode .contact-item p,
body.light-mode .contact-info-label { color: rgba(255,255,255,0.75) !important; }
/* Formularfelder im dunklen Kontakt */
body.light-mode .contact input,
body.light-mode .contact textarea,
body.light-mode .contact select {
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(255,255,255,0.12) !important;
  color: rgba(255,255,255,0.9) !important;
}
body.light-mode .contact input::placeholder,
body.light-mode .contact textarea::placeholder { color: rgba(255,255,255,0.35) !important; }

/* ── FOOTER: BLEIBT dunkel ── */
body.light-mode footer,
body.light-mode .footer {
  background: #000f0b !important;
}
body.light-mode footer *,
body.light-mode .footer * { color: rgba(255,255,255,0.65) !important; }
body.light-mode .footer-logo,
body.light-mode .footer h4 { color: rgba(255,255,255,0.9) !important; }

/* ── Formular-Inputs in hellen Sektionen ── */
body.light-mode input:not(.contact input),
body.light-mode textarea:not(.contact textarea) {
  background: #FFFFFF !important;
  border-color: rgba(0,0,0,0.12) !important;
  color: #1D1D1F !important;
}

/* ── Mobile Menü ── */
body.light-mode .mobile-menu {
  background: rgba(240, 240, 245, 0.98) !important;
}
body.light-mode .mobile-nav-link { color: #1D1D1F !important; }

/* ── Blog ── */
body.light-mode .blog-card {
  background: #FFFFFF !important;
  box-shadow: 0 4px 24px rgba(0,45,36,0.07) !important;
}
/* Ende */





