/* ============================================================
   WELTE PRODUCTIONS - Design System
   Colors: #FF6200 orange | #232528 dark | #0D0D4D navy | #FFFFFC white
   Font: Alesand
   ============================================================ */

/* --- FONTS --- */
@font-face {
  font-family: 'Alesand';
  src: url('../assets/fonts/Alesand Regular.woff2') format('woff2'),
       url('../assets/fonts/Alesand Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Alesand';
  src: url('../assets/fonts/Alesand Light.woff2') format('woff2'),
       url('../assets/fonts/Alesand Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Alesand';
  src: url('../assets/fonts/Alesand Bold.woff2') format('woff2'),
       url('../assets/fonts/Alesand Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Alesand';
  src: url('../assets/fonts/Alesand Extra Bold.woff2') format('woff2'),
       url('../assets/fonts/Alesand Extra Bold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: block;
}

/* --- CSS VARIABLES --- */
:root {
  --amber: #FF6200;
  --amber-dark: #e05800;
  --dark: #232528;
  --navy: #0D0D4D;
  --white: #FFFFFC;
  --gray-light: #f5f5f5;
  --gray-mid: #e0e0e0;
  --gray-text: #666666;
  --font: 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Alesand', 'Helvetica Neue', Arial, sans-serif;
  --radius: 12px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.18);
  --transition: 0.3s ease;
  --max-width: 1200px;
  --section-pad: 100px 24px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-display); }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 { font-family: var(--font-display); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; line-height: 1.3; }
h4 { font-size: 1.1rem; font-weight: 700; }
p  { font-size: 1rem; line-height: 1.7; }

.text-amber  { color: var(--amber); }
.text-navy   { color: var(--navy); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }

/* --- LAYOUT --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-pad); }
.section-dark { background: var(--dark); color: var(--white); }
.section-navy { background: var(--navy); color: var(--white); }
.section-gray { background: var(--gray-light); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--amber);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--amber);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: var(--transition);
}
.navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo img {
  height: 110px;
  width: auto;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}
.navbar-links a {
  color: var(--dark);
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
  position: relative;
  text-transform: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
/* Reserve space for bold text to prevent layout shift */
.navbar-links a:not(.navbar-cta)::after {
  content: attr(data-text);
  font-weight: 700;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  display: block;
}
.navbar-links a:hover,
.navbar-links a.active {
  color: var(--dark);
  font-weight: 700;
}
.navbar-cta {
  margin-left: 40px;
  background: linear-gradient(180deg, #1a1a6e 0%, var(--navy) 40%, #08083a 100%) !important;
  color: var(--white) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-transform: none !important;
  font-family: var(--font) !important;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.15);
  border-top-color: rgba(255,255,255,0.3);
  border-bottom-color: rgba(0,0,0,0.3);
  box-shadow: 
    0 4px 12px rgba(13,13,77,0.4),
    0 0 12px 3px rgba(255,98,0,0.15),
    inset 0 1px 1px rgba(255,255,255,0.15),
    inset 0 -1px 1px rgba(0,0,0,0.2);
  animation: ctaGlow 2s ease-in-out infinite;
  transform: none !important;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  width: 180px;
  height: 48px;
  padding: 0 !important;
}
/* 3D shine sweep */
.navbar-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: ctaShineSweep 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ctaShineSweep {
  0%, 100% { left: -100%; }
  50% { left: 150%; }
}
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 4px 12px rgba(13,13,77,0.4), 0 0 12px 3px rgba(255,98,0,0.15), inset 0 1px 1px rgba(255,255,255,0.15), inset 0 -1px 1px rgba(0,0,0,0.2); }
  50% { box-shadow: 0 4px 24px rgba(13,13,77,0.5), 0 0 28px 8px rgba(255,98,0,0.45), inset 0 1px 1px rgba(255,255,255,0.15), inset 0 -1px 1px rgba(0,0,0,0.2); }
}
.navbar-cta:hover {
  background: linear-gradient(180deg, #22227a 0%, #0d0d5e 40%, #08083a 100%) !important;
  transform: none !important;
  animation: none;
  box-shadow: 0 6px 24px rgba(13,13,77,0.5), 0 0 32px 10px rgba(255,98,0,0.5), inset 0 1px 1px rgba(255,255,255,0.2), inset 0 -1px 1px rgba(0,0,0,0.2) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 96px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  z-index: 999;
  padding: 40px 24px;
  flex-direction: column;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 20px;
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(35,37,40,0.7) 0%, rgba(35,37,40,0.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-left { }
.hero-tagline {
  display: inline-block;
  background: var(--amber);
  color: var(--dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-left h1 {
  color: var(--white);
  margin-bottom: 16px;
}
.hero-left h1 span { color: var(--amber); }
.hero-subtitle {
  color: #FFFFFF;
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-style: normal;
}
.hero-sparkle {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: linear-gradient(
    90deg,
    #fff 0%,
    var(--amber) 15%,
    #fff 30%,
    var(--amber) 50%,
    #fff 65%,
    var(--amber) 80%,
    #fff 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: sparkleShift 3s linear infinite;
  text-shadow: none;
}
@keyframes sparkleShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.hero-desc {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}
.hero-check {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
}
.hero-check-icon {
  width: 22px;
  height: 22px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  color: var(--dark);
  font-weight: 800;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.hero-phones-row {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.hero-phone-mock {
  background: var(--dark);
  border-radius: 32px;
  border: 3px solid rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.hero-phone-mock:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 32px 100px rgba(255,98,0,0.3);
  border-color: var(--amber);
}
.hero-phone-center {
  width: 200px;
  height: 400px;
  z-index: 2;
}
.hero-phone-side {
  width: 170px;
  height: 350px;
  opacity: 0.9;
}
.hero-phone-screen {
  position: absolute;
  inset: 6px;
  border-radius: 28px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--dark) 60%, var(--amber) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.hero-phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: var(--dark);
  border-radius: 50px;
  z-index: 3;
}
.hero-phone-content {
  text-align: center;
  padding: 20px;
  color: rgba(255,255,255,0.9);
}
.hero-phone-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  animation: phonePulse 2s ease-in-out infinite;
}
.hero-phone-stat {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-phone-center .hero-phone-stat {
  font-size: 2rem;
}
.hero-phone-label {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-top: 4px;
  font-weight: 700;
}
.hero-phone-platform {
  margin-top: 16px;
  font-size: 0.65rem;
  opacity: 0.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-stand-badge {
  font-family: var(--font-display);
  background: var(--amber);
  color: var(--dark);
  font-size: 1rem;
  font-weight: 800;
  padding: 10px 28px;
  border-radius: 50px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: badgeGlow 2s ease-in-out infinite alternate;
}
@keyframes phonePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* --- PHONE FLY-IN ANIMATION --- */
.phone-fly-in {
  opacity: 0;
  transform: translateY(120px) rotate(8deg) scale(0.7);
  animation: phoneFlyIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.phone-fly-1 { animation-delay: 0.3s; }
.phone-fly-2 { animation-delay: 0.55s; }
.phone-fly-3 { animation-delay: 0.8s; }

@keyframes phoneFlyIn {
  0% {
    opacity: 0;
    transform: translateY(120px) rotate(8deg) scale(0.7);
  }
  60% {
    opacity: 1;
    transform: translateY(-12px) rotate(-2deg) scale(1.04);
  }
  80% {
    transform: translateY(4px) rotate(0.5deg) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

/* --- COUNTER POP EFFECT --- */
.hero-phone-stat.counter-pop {
  animation: counterPop 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes counterPop {
  0% { transform: scale(1); }
  40% { transform: scale(1.35); color: #fff; }
  70% { transform: scale(0.95); }
  100% { transform: scale(1); }
}
@keyframes badgeGlow {
  0% { box-shadow: 0 0 10px rgba(255,98,0,0.3); }
  100% { box-shadow: 0 0 30px rgba(255,98,0,0.6); }
}

/* --- LOGO MARQUEE --- */
.marquee-section {
  padding: 32px 0;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.marquee-label {
  font-family: var(--font-display);
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 60s linear infinite;
  width: max-content;
  align-items: center;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  white-space: nowrap;
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: color var(--transition);
  width: 220px;
  height: 80px;
  flex-shrink: 0;
  padding: 0 20px;
}
.marquee-item:hover { color: var(--amber); }
.marquee-logo {
  max-height: 60px;
  max-width: 100%;
  width: auto;
  height: auto;
  opacity: 0.85;
  transition: opacity var(--transition);
  filter: brightness(1.05) contrast(1.05);
  object-fit: contain;
  display: block;
}
.marquee-item:hover .marquee-logo {
  opacity: 1;
  filter: brightness(1.15) contrast(1.15);
}
.marquee-dot {
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --- PAIN POINTS --- */
.pain-section { background: var(--white); }

/* --- PAIN SECTION V2 (interactive flip cards) --- */
.pain-section-v2 {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.pain-header {
  text-align: center;
  margin-bottom: 56px;
}
.pain-header h2 {
  color: var(--dark);
}
.pain-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.pain-card-flip {
  perspective: 800px;
  height: 320px;
  cursor: pointer;
}
.pain-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}
/* Hover flip instead of click */
.pain-card-flip:hover .pain-card-inner {
  transform: rotateY(180deg);
}
.pain-card-front,
.pain-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 16px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
/* Front: dark card with orange glow border */
.pain-card-front {
  background: var(--dark);
  border: 2px solid rgba(255,98,0,0.2);
  box-shadow: 0 0 0 0 rgba(255,98,0,0);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.pain-card-flip:hover .pain-card-front {
  border-color: var(--amber);
  box-shadow: 0 0 25px rgba(255,98,0,0.35), 0 0 60px rgba(255,98,0,0.15);
}
/* Back: dark card with solution */
.pain-card-back {
  background: var(--dark);
  border: 2px solid var(--amber);
  box-shadow: 0 0 30px rgba(255,98,0,0.3), 0 0 80px rgba(255,98,0,0.1);
  transform: rotateY(180deg);
}
.pain-card-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--amber);
  opacity: 1;
  line-height: 1;
  margin-bottom: 8px;
}
/* number already full opacity */
.pain-card-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  animation: painIconPulse 2.5s ease-in-out infinite;
}
.pain-card-flip:nth-child(2) .pain-card-icon { animation-delay: 0.3s; }
.pain-card-flip:nth-child(3) .pain-card-icon { animation-delay: 0.6s; }
.pain-card-flip:nth-child(4) .pain-card-icon { animation-delay: 0.9s; }
.pain-card-flip:nth-child(5) .pain-card-icon { animation-delay: 1.2s; }

@keyframes painIconPulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.15) rotate(-3deg); }
  50% { transform: scale(1) rotate(0deg); }
  75% { transform: scale(1.1) rotate(3deg); }
}
.pain-card-front h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 10px;
}
.pain-card-front p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.pain-card-back h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--amber);
  margin-bottom: 10px;
}
.pain-card-back p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.pain-card-solution-badge {
  background: var(--amber);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Pain cards responsive */
@media (max-width: 1100px) {
  .pain-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .pain-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .pain-card-flip {
    height: 280px;
  }
}
@media (max-width: 480px) {
  .pain-cards-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto;
  }
}

/* --- SERVICES OVERVIEW --- */
.services-overview { background: var(--gray-light); }
.services-overview h2 { text-align: center; margin-bottom: 12px; }

/* --- SERVICES V2 (Tab Layout) --- */
.services-overview-v2 { background: var(--dark); }
.services-overview-v2 h2 { color: #fff; }
.services-tabs { margin-top: 40px; }
.services-tab-nav {
  display: flex;
  gap: 4px;
  margin-bottom: 0;
  border-bottom: 2px solid rgba(255,255,255,0.08);
}
.service-tab {
  flex: 1;
  background: none;
  border: none;
  padding: 18px 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}
.service-tab:hover { color: rgba(255,255,255,0.7); }
.service-tab.active {
  color: var(--amber);
  border-bottom-color: var(--amber);
}
.service-tab-icon { font-size: 1.8rem; }
.service-tab-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.services-tab-content { position: relative; min-height: 320px; }
.service-panel {
  display: none;
  animation: panelFadeIn 0.5s ease;
}
.service-panel.active { display: block; }
@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.service-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
}
.service-panel-text h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 14px;
}
.service-panel-text p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-tags span {
  background: rgba(255,98,0,0.12);
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255,98,0,0.2);
}
.service-panel-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-panel-mockup {
  width: 200px;
  height: 200px;
  background: rgba(255,98,0,0.08);
  border: 2px solid rgba(255,98,0,0.2);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  animation: mockupFloat 3s ease-in-out infinite;
}
@keyframes mockupFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
/* Workshop dezent */
.workshop-hint {
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.1s linear;
}
.workshop-slide {
  transform: translateX(-80%);
  text-align: right;
}
.workshop-hint a {
  color: var(--amber);
  font-weight: 700;
  text-decoration: none;
}
.workshop-badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(255,98,0,0.3);
  border-radius: 50px;
  background: rgba(255,98,0,0.08);
  transition: all 0.3s ease;
}
.workshop-badge:hover {
  background: rgba(255,98,0,0.15);
  border-color: var(--amber);
}
.workshop-hint span { margin-right: 6px; }

/* --- WHY US V2 --- */
.why-us-v2 { background: var(--white); }
.why-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.why-v2-card {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.why-v2-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(255,98,0,0.12);
  border-color: var(--amber);
}
.why-v2-icon-wrap {
  margin-bottom: 20px;
}
.why-v2-icon {
  font-size: 3rem;
  display: inline-block;
  animation: whyIconBounce 2s ease-in-out infinite;
}
.why-v2-card:nth-child(2) .why-v2-icon { animation-delay: 0.3s; }
.why-v2-card:nth-child(3) .why-v2-icon { animation-delay: 0.6s; }
@keyframes whyIconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.why-v2-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--dark);
}
.why-v2-card p {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 20px;
}
.why-v2-bar {
  height: 4px;
  background: rgba(0,0,0,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.why-v2-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--amber), #ff8c3a);
  border-radius: 4px;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.why-v2-card.visible .why-v2-bar-fill,
.why-v2-card:hover .why-v2-bar-fill {
  width: var(--bar-width, 90%);
}
.why-cta { text-align: center; }

/* --- STATS --- */
.stats-section { background: var(--dark); color: var(--white); padding: var(--section-pad); }
.stats-section h2 { text-align: center; margin-bottom: 48px; }

/* --- STATS V2 --- */
.stats-section-v2 {
  background: var(--dark);
  color: var(--white);
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}
.stats-section-v2::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,98,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.stats-v2-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}
.stats-v2-big {
  text-align: center;
  padding: 40px 24px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.stats-v2-big:hover {
  transform: translateY(-6px);
  border-color: var(--amber);
  box-shadow: 0 0 40px rgba(255,98,0,0.15);
}
.stats-v2-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 10px;
}
.stats-v2-label {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stats-v2-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
/* Client bars */
.stats-v2-clients {
  max-width: 700px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stats-v2-client {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 16px;
}
.stats-v2-client-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}
.stats-v2-client-bar-wrap {
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  overflow: hidden;
}
.stats-v2-client-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--amber), #ff8c3a);
  border-radius: 8px;
  transition: width 2s cubic-bezier(0.16, 1, 0.3, 1);
}
.stats-v2-client.visible .stats-v2-client-bar {
  width: var(--bar-w);
}
.stats-v2-client-val {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--amber);
  white-space: nowrap;
}
.stats-v2-badge {
  text-align: center;
  margin-top: 40px;
  padding: 14px 28px;
  background: rgba(255,98,0,0.08);
  border: 1px solid rgba(255,98,0,0.15);
  border-radius: 50px;
  display: inline-block;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-weight: 600;
}
.stats-v2-badge span { margin-right: 6px; }
/* center the badge */
.stats-section-v2 .stats-v2-badge { display: table; margin-left: auto; margin-right: auto; }

@media (max-width: 768px) {
  .stats-v2-row { grid-template-columns: 1fr; gap: 16px; }
  .stats-v2-client { grid-template-columns: 1fr; gap: 8px; }
  .stats-v2-client-bar-wrap { height: 10px; }
  .stats-v2-client-name { font-size: 1rem; }
  .stats-v2-client-val { font-size: 0.85rem; text-align: left; }
}

/* --- PROCESS --- */
.process-section { background: var(--gray-light); }

/* --- PROCESS SCROLL STORYTELLING --- */
.process-scroll-section {
  background: var(--dark);
  position: relative;
  min-height: 400vh;
}
.process-scroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
}
.process-scroll-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.process-scroll-left h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 32px;
}
.process-scroll-counter {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.process-current-step {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}
.process-total-steps {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.3);
  font-weight: 700;
}
/* --- FILMBAND (right side) --- */
.process-scroll-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.filmband {
  display: flex;
  height: 320px;
  border-radius: 4px;
  overflow: hidden;
}
.filmband-perf {
  width: 32px;
  background: #111;
  flex-shrink: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.35) 4px, transparent 4.5px);
  background-size: 32px 28px;
  background-position: center 6px;
}
.filmband-content {
  flex: 1;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.filmband-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 36px;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.filmband-slide.active {
  opacity: 1;
  transform: translateX(0);
}
.fb-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--amber);
  margin-bottom: 4px;
}
.fb-emoji {
  font-size: 2rem;
  margin-bottom: 8px;
}
.filmband-slide h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 6px;
}
.filmband-slide p {
  color: var(--gray-text);
  font-size: 0.9rem;
  line-height: 1.5;
}
.filmband-slide-boom {
  background: var(--dark);
}
.filmband-slide-boom h3 { color: var(--amber) !important; font-size: 2rem !important; }
.filmband-slide-boom p { color: rgba(255,255,255,0.6) !important; }
.filmband-slide-boom.active {
  box-shadow: inset 0 0 80px rgba(255,98,0,0.15);
}
/* Progress under filmband */
.filmband-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.filmband-progress-track {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,0.08);
  border-radius: 5px;
  overflow: hidden;
}
.filmband-progress-fill {
  height: 100%;
  width: 12.5%;
  background: linear-gradient(90deg, var(--amber), #ff4400);
  border-radius: 5px;
  transition: width 0.4s ease;
}
.filmband-progress-boom {
  font-size: 0.8rem;
  opacity: 0.2;
  transition: all 0.4s ease;
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  transform-origin: center;
}
/* BOOM overlay */
.boom-overlay {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
}
.boom-overlay.active {
  opacity: 1;
  pointer-events: auto;
  animation: boomFlash 1.8s ease forwards;
}
@keyframes boomFlash {
  0% { opacity: 0; background: var(--amber); }
  10% { opacity: 1; background: var(--amber); }
  30% { background: var(--dark); }
  100% { opacity: 0; pointer-events: none; }
}
.boom-text {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 800;
  color: var(--amber);
  animation: boomScale 1.8s ease forwards;
}
@keyframes boomScale {
  0% { transform: scale(0); opacity: 0; }
  15% { transform: scale(1.3); opacity: 1; }
  30% { transform: scale(1); }
  70% { opacity: 1; }
  100% { opacity: 0; transform: scale(0.8); }
}
.boom-sub {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: rgba(255,255,255,0.7);
  margin-top: 16px;
  animation: boomScale 1.8s 0.2s ease forwards;
  opacity: 0;
}
@media (max-width: 768px) {
  .process-scroll-content { grid-template-columns: 1fr; gap: 24px; }
  .filmband { height: 260px; }
  .process-scroll-section { min-height: 350vh; }
}

/* BOOM CTA Section */
.boom-cta-section {
  background: var(--dark);
  padding: 0;
  position: relative;
  z-index: 5;
  margin-top: -1px;
  overflow: hidden;
}
.boom-cta-section .container {
  padding: 80px 24px;
  position: relative;
}
/* Spotlight beams from edges — focused toward center button, never touching top/bottom */
.boom-spotlight {
  position: absolute;
  width: 40%;
  height: 70%;
  pointer-events: none;
  z-index: 0;
  top: 15%;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.boom-spotlight-left {
  left: 0;
  transform: translateX(-40%);
  background: radial-gradient(
    ellipse at 10% 50%,
    rgba(255,140,40,0.5) 0%,
    rgba(255,98,0,0.15) 45%,
    transparent 70%
  );
}
.boom-spotlight-right {
  right: 0;
  transform: translateX(40%);
  background: radial-gradient(
    ellipse at 90% 50%,
    rgba(255,140,40,0.5) 0%,
    rgba(255,98,0,0.15) 45%,
    transparent 70%
  );
}
.boom-cta-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(480px, 75vw);
  padding: 56px 40px;
  background: linear-gradient(135deg, var(--amber) 0%, #e55500 50%, var(--amber) 100%);
  background-size: 200% 200%;
  animation: ctaGradient 3s ease infinite;
  border-radius: 32px;
  text-decoration: none;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
  box-shadow: 0 24px 80px rgba(255,98,0,0.4);
  cursor: pointer;
  z-index: 1;
}
@keyframes ctaGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.boom-cta-btn:hover {
  transform: scale(1.04);
}
.boom-cta-glow {
  position: absolute;
  inset: -2px;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent, rgba(255,255,255,0.1));
  pointer-events: none;
}
.boom-cta-icon {
  font-size: 4rem;
  margin-bottom: 12px;
}
.boom-cta-label {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.boom-cta-sub {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-top: 8px;
}
/* BOOM Overlay */
.boom-overlay {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.boom-overlay.active {
  opacity: 1;
  pointer-events: auto;
  animation: boomFlash 1.8s ease forwards;
}
@keyframes boomFlash {
  0% { opacity: 0; background: var(--amber); }
  10% { opacity: 1; background: var(--amber); }
  30% { background: var(--dark); }
  100% { opacity: 0; pointer-events: none; }
}
.boom-text {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 800;
  color: var(--amber);
  animation: boomScale 1.8s ease forwards;
}
@keyframes boomScale {
  0% { transform: scale(0); opacity: 0; }
  15% { transform: scale(1.3); opacity: 1; }
  30% { transform: scale(1); }
  70% { opacity: 1; }
  100% { opacity: 0; transform: scale(0.8); }
}
.boom-sub {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: rgba(255,255,255,0.7);
  margin-top: 16px;
  animation: boomScale 1.8s 0.2s ease forwards;
  opacity: 0;
}

@media (max-width: 768px) {
  .process-scroll-content { grid-template-columns: 1fr; gap: 32px; }
  .process-scroll-right { height: 240px; }
  .process-scroll-section { min-height: 350vh; }
}

/* --- TESTIMONIALS V2 (Phone Mockups) --- */
.testimonials-section-v2 {
  background: var(--navy);
}
.testimonials-section-v2 h2 { text-align: center; margin-bottom: 48px; color: #fff; }
.testi-phones-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.testi-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 280px;
}
.testi-phone-frame {
  width: 260px;
  height: 520px;
  background: var(--dark);
  border-radius: 36px;
  border: 4px solid rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.testi-phone:hover .testi-phone-frame {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 32px 100px rgba(255,98,0,0.2);
  border-color: var(--amber);
}
.testi-phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 50px;
  z-index: 3;
}
.testi-phone-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
}
.testi-phone-info {
  margin-top: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-height: 90px;
}
.testi-logo {
  height: 50px;
  width: auto;
  max-width: 200px;
  filter: brightness(0) invert(1);
  display: block;
  object-fit: contain;
}
.testi-insta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber);
  font-weight: 700;
  font-size: 0.85rem;
  transition: gap 0.3s ease;
  text-decoration: none;
}
.testi-insta-link:hover {
  gap: 12px;
}
.testi-insta-link svg { flex-shrink: 0; }

@media (max-width: 600px) {
  .testi-phones-row { gap: 32px; }
  .testi-phone-frame { width: 220px; height: 440px; border-radius: 28px; }
  .testi-phone-video { border-radius: 24px; }
}
@media (max-width: 380px) {
  .testi-phone-frame { width: 200px; height: 400px; }
}

/* --- CONTACT FORM --- */
.contact-section { background: var(--dark); color: var(--white); }
.contact-section h2 { text-align: center; margin-bottom: 8px; }
.contact-subtitle { text-align: center; color: rgba(255,255,255,0.6); margin-bottom: 48px; }
.contact-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid rgba(255,255,255,0.1);
}
.form-pre-questions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  background: rgba(255,98,0,0.05);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-fields .form-group.full { grid-column: 1 / -1; }
.form-submit { text-align: center; margin-top: 8px; }
.form-required { font-size: 0.75rem; color: rgba(255,255,255,0.3); margin-top: 16px; text-align: center; }

/* --- FAQ --- */
.faq-section { background: var(--white); }
.faq-section h2 { text-align: center; margin-bottom: 48px; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-mid);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: var(--transition);
}
.faq-question:hover { background: var(--gray-light); }
.faq-question.open { background: var(--dark); color: var(--white); }
.faq-arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  font-size: 1.2rem;
}
.faq-question.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 20px 24px;
  background: var(--gray-light);
  font-size: 0.95rem;
  color: var(--gray-text);
  line-height: 1.7;
  border-top: 1px solid var(--gray-mid);
}
.faq-answer.open { display: block; }

/* --- FOOTER --- */
.footer {
  background: var(--amber);
  color: rgba(0,0,0,0.6);
  padding: 60px 24px 32px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  margin-bottom: 32px;
}
.footer-brand img { height: 78px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; color: var(--dark); }
.footer-col h4 {
  font-family: var(--font-display);
  color: var(--dark);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: rgba(0,0,0,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--dark); font-weight: 700; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(0,0,0,0.5); transition: var(--transition); }
.footer-legal a:hover { color: var(--dark); }

/* --- MODAL / POPUP --- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-header {
  background: var(--dark);
  color: var(--white);
  padding: 28px 32px 24px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.modal-header h3 { font-size: 1.4rem; margin-bottom: 4px; }
.modal-subtitle { color: rgba(255,255,255,0.6); font-size: 0.9rem; font-style: italic; }
.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
  margin-left: 16px;
  transition: var(--transition);
}
.modal-close:hover { background: var(--amber); color: var(--dark); }
.modal-body { padding: 32px; }
.modal-body ul { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.modal-body li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--dark);
}
.modal-body li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.modal-cta { padding-top: 8px; }

/* Modal form overrides (white background context) */
.modal-body .form-group label {
  color: var(--dark);
}
.modal-body .form-group input,
.modal-body .form-group textarea {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  color: var(--dark);
}
.modal-body .form-group input::placeholder,
.modal-body .form-group textarea::placeholder {
  color: var(--gray-text);
}
.modal-body .form-group input:focus,
.modal-body .form-group textarea:focus {
  border-color: var(--amber);
  background: var(--white);
}

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  z-index: 3000;
  border: 1px solid rgba(255,255,255,0.1);
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner h4 { margin-bottom: 10px; font-size: 1rem; }
.cookie-banner p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 20px; line-height: 1.6; }
.cookie-btns { display: flex; gap: 12px; }
.cookie-btns button { padding: 10px 24px; border-radius: 50px; font-weight: 700; font-size: 0.9rem; }
.cookie-accept { background: var(--amber); color: var(--dark); }
.cookie-decline { background: rgba(255,255,255,0.1); color: var(--white); }
.cookie-accept:hover { background: var(--amber-dark); }
.cookie-decline:hover { background: rgba(255,255,255,0.2); }

/* --- SCROLL ANIMATIONS --- */
/* Only hide elements when JS is active (js-ready class added by JS).
   Without JS, all content is visible. */
.js-ready .fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js-ready .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* Slide-in from left */
.js-ready .slide-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.js-ready .slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide-in from right */
.js-ready .slide-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.js-ready .slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale pop-in */
.js-ready .pop-in {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.js-ready .pop-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Floating animation for pills/badges */
@keyframes floatPill {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.float-pill {
  animation: floatPill 3s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.float-pill:nth-child(2) { animation-delay: 0.3s; }
.float-pill:nth-child(3) { animation-delay: 0.6s; }
.float-pill:nth-child(4) { animation-delay: 0.9s; }
.float-pill:nth-child(5) { animation-delay: 1.2s; }
.float-pill:nth-child(6) { animation-delay: 1.5s; }
.float-pill:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(255,98,0,0.3);
}

/* Pain card hover handled in pain-section-v2 styles */

/* Service tabs responsive handled inline */

}
}
.step-circle {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Why-v2 hover handled in main styles */

/* Stats v2 hover handled in main stats-v2 styles */

}
}

/* FAQ item hover */
.faq-item {
  transition: transform 0.2s ease;
}
.faq-item:hover {
  transform: translateX(4px);
}

/* --- SECTION HEADER --- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--gray-text); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* --- PAGE HERO (inner pages) --- */
.page-hero {
  background: var(--dark);
  padding: 140px 24px 80px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero h1 span { color: var(--amber); }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 600px; margin: 0 auto 32px; font-size: 1.1rem; }

/* --- IMPRESSION STATS (Referenzen) --- */
.impressions-table {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  border-collapse: collapse;
}
.impressions-table th {
  background: var(--dark);
  color: var(--amber);
  padding: 14px 20px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
}
.impressions-table th:first-child { border-radius: var(--radius) 0 0 0; }
.impressions-table th:last-child { border-radius: 0 var(--radius) 0 0; }
.impressions-table td { padding: 16px 20px; border-bottom: 1px solid var(--gray-mid); font-size: 0.95rem; }
.impressions-table tr:last-child td { border-bottom: none; }
.impressions-table tr:hover td { background: rgba(255,98,0,0.04); }
.impressions-table .highlight { font-weight: 800; color: var(--amber); }
.organic-badge {
  background: rgba(42,42,114,0.1);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}

/* --- SMARTPHONE REEL EMBEDS --- */
.reels-section { background: var(--dark); }
.reels-grid {
  display: flex;
  gap: 24px;
  row-gap: 24px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}
.reel-phone {
  width: 220px;
  height: 440px;
  background: #111;
  border-radius: 32px;
  border: 3px solid rgba(255,255,255,0.15);
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  flex-shrink: 0;
}
.reel-phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 50px;
  z-index: 3;
}
.reel-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--navy) 0%, var(--dark) 60%);
  color: var(--white);
  gap: 12px;
}
.reel-play {
  width: 56px;
  height: 56px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
}
.reel-play:hover { transform: scale(1.1); }
.reel-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-align: center; padding: 0 16px; }

/* --- VIDEO IN REEL PHONE --- */
.reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.reel-video-label {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.9);
  z-index: 4;
  text-shadow: 0 1px 4px rgba(0,0,0,0.9);
  padding: 0 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* --- REEL PHONE: KLICKBAR + HOVER --- */
.reel-phone {
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}
.reel-phone:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 30px 80px rgba(255,98,0,0.35);
}
.reel-phone::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.4) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
}
.reel-phone:hover::after { opacity: 1; }
.reel-phone-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 56px;
  height: 56px;
  background: rgba(255,98,0,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.reel-phone-play-icon svg { width: 22px; height: 22px; fill: #fff; margin-left: 3px; }
.reel-phone:hover .reel-phone-play-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* --- REEL LIGHTBOX --- */
.reel-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(13,13,77,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.reel-lightbox.active {
  display: flex;
  opacity: 1;
}
.reel-lightbox-content {
  position: relative;
  width: min(360px, 92vw);
  aspect-ratio: 9 / 19.5;
  max-height: 92vh;
  background: #000;
  border-radius: 44px;
  border: 4px solid rgba(255,255,255,0.18);
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6), 0 0 80px rgba(255,98,0,0.15);
  transform: scale(0.85);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reel-lightbox.active .reel-lightbox-content { transform: scale(1); }
.reel-lightbox-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 8px;
  background: rgba(255,255,255,0.18);
  border-radius: 50px;
  z-index: 3;
}
.reel-lightbox-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}
.reel-lightbox-close {
  position: absolute;
  top: -56px;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10;
}
.reel-lightbox-close:hover {
  background: var(--amber);
  transform: rotate(90deg);
}
@media (max-width: 600px) {
  .reel-lightbox-content { border-radius: 32px; border-width: 3px; }
  .reel-lightbox-video { border-radius: 28px; }
  .reel-lightbox-notch { width: 70px; height: 6px; top: 10px; }
  .reel-lightbox-close { top: -52px; width: 40px; height: 40px; }
}

/* --- VIDEO TESTIMONIAL CARD --- */
.testimonial-card-video {
  grid-column: 1 / -1;
  display: flex;
  gap: 0;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  background: var(--gray-light);
  border-radius: var(--radius-lg);
}
.testimonial-card-video::before { display: none; }
.testimonial-card-video video {
  width: 180px;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
  background: var(--dark);
}
.testimonial-card-video-info {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.testimonial-card-video-info .testimonial-text {
  margin-top: 0;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .testimonial-card-video { flex-direction: column; }
  .testimonial-card-video video { width: 100%; max-height: 260px; }
  .testimonial-card-video-info { padding: 20px 20px; }
}

/* --- TEAM SECTION --- */
.team-section { background: var(--white); padding: var(--section-pad); }

/* --- TEAM HEADER (normal, no dark band) --- */
.team-header-dark {
  background: transparent;
  padding: 0 24px 56px;
  text-align: center;
}
.team-header-dark .section-header { margin-bottom: 0; }
.team-header-dark h2 { color: var(--dark); }
.team-header-dark .text-amber { color: var(--amber); }

/* --- TRUST FIGURES GENZ SUBLINE (in orange stats band) --- */
.trust-figures-genz {
  max-width: 720px;
  margin: 40px auto 0;
  text-align: center;
  color: var(--dark);
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 500;
  padding: 0 24px;
}
.trust-figures-genz strong {
  color: var(--white);
  font-weight: 800;
}

/* --- BIG GENZ STATEMENT (replaces stats on team page) --- */
.trust-figures-genz-block {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}
.trust-figures-genz-heading {
  font-family: var(--font-display);
  color: var(--dark);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.trust-figures-genz-sub {
  color: var(--dark);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  line-height: 1.5;
  font-weight: 500;
  max-width: 760px;
  margin: 0 auto;
}
.trust-figures-genz-sub strong {
  color: var(--white);
  font-weight: 800;
}
@media (max-width: 768px) {
  .trust-figures { padding: 44px 20px; }
  .trust-figures-genz { font-size: 0.95rem; margin-top: 32px; }
  .team-header-dark { padding: 0 16px 40px; }
  .trust-figures-genz-heading { font-size: 2rem; margin-bottom: 12px; }
  .trust-figures-genz-sub { font-size: 0.95rem; }
}

/* --- TRUST CHECKLIST CARDS HOVER (orange + lift) --- */
.trust-check-card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px 24px;
  background: var(--gray-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--amber);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.3s ease,
              box-shadow 0.35s ease,
              color 0.3s ease;
  cursor: default;
}
.trust-check-card .trust-check-icon {
  width: 36px; height: 36px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--dark);
  font-weight: 800;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease;
}
.trust-check-card .trust-check-title {
  font-weight: 700;
  margin-bottom: 2px;
  transition: color 0.3s ease;
}
.trust-check-card .trust-check-desc {
  font-size: 0.85rem;
  color: var(--gray-text);
  transition: color 0.3s ease;
}
.trust-check-card:hover {
  background: var(--amber);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(255, 98, 0, 0.35);
  border-left-color: var(--white);
}
.trust-check-card:hover .trust-check-icon {
  background: var(--white);
  color: var(--amber);
}
.trust-check-card:hover .trust-check-title,
.trust-check-card:hover .trust-check-desc {
  color: var(--dark);
}

/* --- GF GRID (Geschäftsführung) --- */

/* --- FOUNDER HERO CARDS --- */
.founder-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  background: var(--dark);
  min-height: 480px;
  position: relative;
}
.founder-hero-reverse {
  direction: rtl;
}
.founder-hero-reverse > * {
  direction: ltr;
}
.founder-hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  min-height: 480px;
}
.founder-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #000;
}
.founder-hero-bg::before {
  display: none;
}
.founder-hero-bg::after {
  display: none;
}
.founder-hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(255,98,0,0.05) 0%, transparent 100%);
  z-index: 1;
}
.founder-hero-gradient.gradient-blue {
  background: linear-gradient(to top, rgba(13,13,77,0.05) 0%, transparent 100%);
}
.founder-hero-ring {
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(255,98,0,0.08);
  animation: founderRingPulse 4s ease-in-out infinite;
}
.founder-hero-ring.ring-2 {
  width: 520px;
  height: 520px;
  border-color: rgba(255,98,0,0.04);
  animation-delay: 1s;
}
@keyframes founderRingPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.4; }
  50% { transform: translateX(-50%) scale(1.05); opacity: 0.8; }
}
.founder-hero-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.founder-hero:hover .founder-hero-img {
  transform: scale(1.04) translateY(-4px);
}
.founder-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 48px 48px 32px;
  background: var(--gray-light);
}
.founder-hero-reverse .founder-hero-text {
  padding: 48px 32px 48px 48px;
}
.founder-hero-name {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 20px;
  line-height: 1.2;
}
.founder-hero-text p {
  font-size: 0.92rem;
  color: var(--gray-text);
  line-height: 1.8;
}
.founder-hero-text p + p {
  margin-top: 12px;
}
@media (max-width: 900px) {
  .founder-hero { grid-template-columns: 1fr; }
  .founder-hero-reverse { direction: ltr; }
  .founder-hero-visual { min-height: 380px; }
  .founder-hero-text { padding: 32px 24px; }
}

/* --- CREW GRID (Mitarbeiter) --- */
.team-crew-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card-crew {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card-crew:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.team-crew-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 3px solid var(--amber);
  transition: transform 0.3s ease;
  overflow: hidden;
}
.team-card-crew:hover .team-crew-avatar {
  transform: scale(1.08) rotate(3deg);
}
.team-crew-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.team-crew-initial {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 800;
  font-family: var(--font-display);
}
.team-crew-info .team-role { text-align: center; }
.team-crew-info h4 { margin-bottom: 10px; font-size: 1.1rem; }
.team-crew-info p { font-size: 0.85rem; color: var(--gray-text); line-height: 1.7; }

/* Legacy grid kept for other uses */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.team-card {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.team-photo {
  height: 320px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.team-photo-gradient {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 50%, var(--amber) 100%);
}
.team-photo-silhouette {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.team-info { padding: 32px; }
.team-role {
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.team-info h3 { margin-bottom: 16px; }
.team-info p { font-size: 0.92rem; color: var(--gray-text); line-height: 1.8; }
.team-info p + p { margin-top: 12px; }

/* --- TRUST FIGURES --- */
.trust-figures { background: var(--amber); padding: 56px 24px; }
.trust-figures-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.trust-figure-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 8px;
}
.trust-figure-label {
  font-size: 0.95rem;
  color: rgba(35,37,40,0.7);
  font-weight: 700;
}

/* --- LEGAL PAGES --- */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 24px;
}
.legal-content h1 { margin-bottom: 12px; }
.legal-meta {
  color: var(--gray-text);
  font-size: 0.85rem;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-mid);
}
.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--navy);
}
.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 28px;
  margin-bottom: 10px;
}
.legal-content p { margin-bottom: 14px; font-size: 0.95rem; color: #444; }
.legal-content ul, .legal-content ol { margin: 12px 0 14px 24px; }
.legal-content li { font-size: 0.95rem; color: #444; margin-bottom: 6px; }
.legal-content a { color: var(--amber); text-decoration: underline; }
.legal-content strong { color: var(--dark); }

/* --- COUNTER ANIMATION --- */
.counter { display: inline-block; }

/* --- GRID LAYOUTS (mobile-safe) --- */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.grid-sidebar {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}
.grid-tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}
.grid-contact {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.grid-form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.grid-stats-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-left h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-left h1 span { font-size: 1.15em; }
  .hero-sparkle { font-size: 1.1rem; letter-spacing: 0.1em; }
  .hero-checks { align-items: flex-start; text-align: left; }
  .hero-check { text-align: left; }
  .hero-btns { justify-content: center; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-panel-inner { grid-template-columns: 1fr; } .service-tab-label { font-size: 0.65rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .team-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .team-crew-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .grid-sidebar { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --section-pad: 64px 20px; }
  .navbar-inner { height: 72px; padding: 0 16px; }
  .navbar-logo img { height: 80px; }
  .mobile-menu { top: 72px; }
  .navbar-links { display: none; }
  .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .hero-right { margin-top: 20px; }
  /* pain-grid removed, see pain-section-v2 responsive */
  .services-grid { grid-template-columns: 1fr; }
  .services-tab-nav { flex-wrap: wrap; } .service-tab { flex: 0 0 48%; }
  .why-v2-grid { grid-template-columns: 1fr; }
  .stats-v2-row { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps { gap: 8px; }
  .process-step { width: 100px; }
  .process-step:not(:last-child)::after { display: none; }
  .contact-form-wrapper { padding: 28px 20px; }
  .form-fields { grid-template-columns: 1fr; }
  
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-figures-grid { grid-template-columns: 1fr; }
  .reels-grid { gap: 16px; }
  .reel-phone { width: 180px; height: 360px; }
  .grid-2col { grid-template-columns: 1fr; gap: 32px; }
  .grid-tags { grid-template-columns: 1fr; }
  .grid-contact { grid-template-columns: 1fr; gap: 32px; }
  .grid-form-fields { grid-template-columns: 1fr; }
  .grid-stats-4 { grid-template-columns: 1fr 1fr; gap: 16px; }
  .impressions-table { font-size: 0.78rem; }
  .impressions-table th, .impressions-table td { padding: 8px 6px; }
  .impressions-table th:last-child,
  .impressions-table td:last-child { display: none; }
  .modal { margin: 12px; }
  .modal-body { padding: 24px; }
  .modal-header { padding: 20px 24px; }
}
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .btn { padding: 12px 24px; font-size: 0.9rem; }
  .hero-phones-row { gap: 6px; }
  .hero-phone-center { width: 120px; height: 240px; }
  .hero-phone-side { width: 92px; height: 195px; }
  .hero-phone-content { padding: 12px; }
  .hero-phone-stat { font-size: 1rem; }
  .hero-phone-center .hero-phone-stat { font-size: 1.2rem; }
  .hero-phone-icon { font-size: 1.3rem; margin-bottom: 8px; }
  .hero-phone-label { font-size: 0.55rem; }
  .hero-phone-platform { font-size: 0.5rem; margin-top: 6px; }
  .hero-phone-notch { width: 40px; height: 4px; top: 6px; }
  .hero-phone-mock { border-radius: 20px; border-width: 2px; }
  .hero-phone-screen { inset: 4px; border-radius: 18px; }
  .hero-stand-badge { font-size: 0.8rem; padding: 8px 20px; }
  /* Reels: 2 Spalten Grid statt 1 (weniger Scrollen) */
  .reels-grid { 
    flex-direction: row; 
    align-items: flex-start; 
    gap: 12px; 
    justify-content: center;
  }
  .reel-phone { width: calc(50% - 6px); height: auto; aspect-ratio: 9/16; max-width: 160px; }
}

/* --- CURSOR SPOTLIGHT --- */
.cursor-spotlight {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(255, 98, 0, 0.35) 0%,
    rgba(255, 98, 0, 0.18) 20%,
    rgba(255, 98, 0, 0.06) 45%,
    transparent 65%
  );
  transition: opacity 0.4s ease;
  will-change: left, top;
}

/* --- KARUSSELL GRID (Referenzen) --- */
.karussell-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 16px 0 24px;
  -webkit-overflow-scrolling: touch;
}
.karussell-grid::-webkit-scrollbar { height: 6px; }
.karussell-grid::-webkit-scrollbar-track { background: var(--gray-light); border-radius: 50px; }
.karussell-grid::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 50px; }
.karussell-slide {
  flex-shrink: 0;
  width: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}
.karussell-slide:hover { transform: translateY(-4px); }
.karussell-slide img { width: 100%; height: auto; display: block; }

/* --- CTA PHONE (Referenzen) --- */
.cta-phone {
  width: 300px;
  min-height: 400px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--dark) 60%);
  border-radius: 36px;
  border: 3px solid rgba(255,255,255,0.15);
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 80px rgba(255,98,0,0.15), 0 20px 60px rgba(0,0,0,0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.cta-phone:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 100px rgba(255,98,0,0.25), 0 24px 80px rgba(0,0,0,0.5);
}
.cta-phone-content {
  padding: 60px 28px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* --- CTA TABLET (Referenzen) --- */
.cta-tablet {
  width: min(520px, 90vw);
  aspect-ratio: 4/3;
  background: linear-gradient(160deg, #0d0d4d 0%, var(--navy) 30%, #050520 100%);
  border-radius: 28px;
  border: 3px solid rgba(255,255,255,0.12);
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 80px rgba(255,98,0,0.12), 0 20px 60px rgba(0,0,0,0.6);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.cta-tablet:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 36px 100px rgba(255,98,0,0.3), 0 28px 80px rgba(0,0,0,0.5);
}
.cta-tablet-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 5px;
  background: rgba(255,255,255,0.12);
  border-radius: 50px;
  z-index: 5;
}
.cta-tablet-spotlight {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(255,98,0,0.2) 0%, rgba(255,98,0,0.05) 40%, transparent 70%);
  animation: tabletSpotPulse 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes tabletSpotPulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%,-50%) scale(1.3); opacity: 1; }
}
.cta-tablet-content {
  position: relative;
  z-index: 3;
  padding: 50px 36px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  justify-content: center;
}
.cta-tablet-eyebrow {
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  animation: tabletFlyIn 0.8s 0.3s ease forwards;
}
.cta-tablet-title {
  color: var(--white);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  margin-top: 16px;
  line-height: 1.2;
  opacity: 0;
  animation: tabletFlyIn 0.8s 0.6s ease forwards;
}
.cta-tablet-sub {
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  margin-top: 16px;
  opacity: 0;
  animation: tabletFlyIn 0.8s 0.9s ease forwards;
}
@keyframes tabletFlyIn {
  0% { opacity: 0; transform: translateY(30px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
/* Particles */
.cta-tablet-particle {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  font-size: 1.2rem;
  color: var(--amber);
}
.cta-tablet.visible .cta-tablet-particle { animation-play-state: running; }
.p1 { top: 15%; left: 10%; animation: particleFloat1 4s 1s ease-in-out infinite; }
.p2 { top: 20%; right: 12%; animation: particleFloat2 3.5s 1.5s ease-in-out infinite; }
.p3 { bottom: 25%; left: 15%; animation: particleFloat3 5s 0.8s ease-in-out infinite; }
.p4 { top: 35%; right: 8%; animation: particleFloat1 4.5s 2s ease-in-out infinite; color: rgba(255,255,255,0.3); }
.p5 { bottom: 15%; right: 20%; animation: particleFloat2 3s 1.2s ease-in-out infinite; color: rgba(255,255,255,0.25); }
.p6 { bottom: 30%; left: 8%; animation: particleFloat3 4s 0.5s ease-in-out infinite; font-size: 1.5rem; }
@keyframes particleFloat1 {
  0%, 100% { opacity: 0; transform: translateY(20px) scale(0.5); }
  20% { opacity: 0.8; }
  50% { opacity: 1; transform: translateY(-15px) scale(1.1) rotate(15deg); }
  80% { opacity: 0.6; }
}
@keyframes particleFloat2 {
  0%, 100% { opacity: 0; transform: translateX(10px) scale(0.5); }
  30% { opacity: 0.9; }
  50% { opacity: 1; transform: translateX(-12px) translateY(-10px) scale(1.2) rotate(-20deg); }
  70% { opacity: 0.5; }
}
@keyframes particleFloat3 {
  0%, 100% { opacity: 0; transform: scale(0.3) rotate(0deg); }
  25% { opacity: 0.7; }
  50% { opacity: 1; transform: scale(1.3) rotate(180deg) translateY(-20px); }
  75% { opacity: 0.4; }
}
/* Instagram embed phone */
.reel-phone-embed {
  overflow: hidden;
}

/* --- STATS DISCLAIMER FUN --- */
.stats-disclaimer {
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}
.stats-disclaimer-text {
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.stats-emoji {
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.stats-disclaimer-reveal {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  color: var(--dark);
  font-weight: 700;
  font-size: 0.9rem;
  transition: max-height 0.5s ease, opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
  transform: translateY(10px);
}
.stats-disclaimer:hover .stats-emoji {
  transform: rotate(360deg) scale(1.6);
}
.stats-disclaimer:hover .stats-disclaimer-text {
  transform: scale(1.02);
  color: rgba(35,37,40,0.7);
}
.stats-disclaimer:hover .stats-disclaimer-reveal {
  max-height: 40px;
  opacity: 1;
  transform: translateY(0);
}

/* --- PAIN PILLS (Leistungen page) --- */
.pain-pill {
  background: rgba(255,98,0,0.08);
  border: 1px solid rgba(255,98,0,0.2);
  border-radius: 50px;
  padding: 12px 24px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  animation: pillFloat 3s ease-in-out infinite;
}
.pain-pill:nth-child(2) { animation-delay: 0.5s; }
.pain-pill:nth-child(3) { animation-delay: 1s; }
.pain-pill:nth-child(4) { animation-delay: 1.5s; }
.pain-pill:nth-child(5) { animation-delay: 2s; }
.pain-pill:nth-child(6) { animation-delay: 2.5s; }
@keyframes pillFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.pain-pill:hover {
  background: rgba(255,98,0,0.15);
  border-color: var(--amber);
  color: var(--white);
  box-shadow: 0 0 24px rgba(255,98,0,0.3), 0 0 48px rgba(255,98,0,0.1);
  transform: translateY(-6px) scale(1.05);
  animation: none;
}
.pain-pill-active {
  background: var(--amber) !important;
  border-color: var(--amber) !important;
  color: var(--dark) !important;
  font-weight: 700;
  box-shadow: 0 0 32px rgba(255,98,0,0.5), 0 0 64px rgba(255,98,0,0.2) !important;
  transform: translateY(-6px) scale(1.08) !important;
  animation: none !important;
}

/* Service card highlight when matched from pain pill */
.service-highlight {
  outline: 3px solid var(--amber) !important;
  outline-offset: 4px;
  box-shadow: 0 0 40px rgba(255,98,0,0.2), 0 12px 40px rgba(0,0,0,0.12) !important;
  transform: translateY(-6px) !important;
  transition: all 0.5s ease !important;
}

/* --- SERVICE CARDS V2 (Leistungen page) --- */
.service-card-v2 {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}
.service-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.service-card-v2-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
}
.service-card-v2-label::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.service-card-v2-eyebrow {
  color: var(--amber);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.service-card-v2-title {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  position: relative;
  z-index: 1;
}
.service-card-v2-number {
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  position: absolute;
  bottom: -10px;
  right: 10px;
  line-height: 1;
  z-index: 0;
}
.service-card-v2-body {
  background: var(--gray-light);
  padding: 36px;
  position: relative;
}
.service-card-v2-body p {
  color: var(--gray-text);
  margin-bottom: 20px;
}
.service-card-v2-plus {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 12px;
}
.service-tag-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}
.service-tag {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.88rem;
  color: var(--dark);
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.7);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  border: 1px solid transparent;
}
.service-tag:hover {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(255,98,0,0.15);
  transform: translateX(6px) scale(1.02);
  border-color: rgba(255,98,0,0.2);
}
.service-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.service-tag:hover .service-tag-dot {
  transform: scale(1.4);
}
.service-card-v2-body .btn {
  transition: all 0.3s ease;
}
.service-card-v2-body .btn:hover {
  box-shadow: 0 4px 20px rgba(255,98,0,0.35);
}
/* Workshop variant */
.service-card-v2.workshop-card .service-card-v2-label {
  background: var(--amber);
}
.service-card-v2.workshop-card .service-card-v2-eyebrow {
  color: var(--dark);
}
.service-card-v2.workshop-card .service-card-v2-title {
  color: var(--dark);
}
.service-card-v2.workshop-card .service-card-v2-number {
  color: rgba(0,0,0,0.06);
}
@media (max-width: 768px) {
  .service-card-v2 { grid-template-columns: 1fr; }
  .service-tag-grid { grid-template-columns: 1fr; }
}

/* --- GOAL CHECKBOXES --- */
.goal-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.goal-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 50px;
  border: 1px solid var(--gray-mid);
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--dark);
  transition: all 0.3s ease;
  background: transparent;
}
.contact-section .goal-check {
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
}
.goal-check:hover { border-color: var(--amber); }
.goal-check input[type="checkbox"] { display: none; }
.goal-check:has(input:checked) {
  background: var(--amber);
  border-color: var(--amber);
  color: #fff;
  font-weight: 700;
}

/* --- FAQ V2 (Dark, modern accordion) --- */
.faq-section-v2 {
  background: var(--white);
}
.faq-list-v2 {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item-v2 {
  border-bottom: 1px solid var(--gray-mid);
  overflow: hidden;
  transition: background 0.3s ease;
}
.faq-item-v2:first-child { border-top: 1px solid var(--gray-mid); }
.faq-item-v2:hover {
  background: rgba(255,98,0,0.03);
}
.faq-item-v2.open {
  background: rgba(255,98,0,0.04);
}
.faq-question-v2 {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  text-align: left;
  transition: color 0.3s ease;
}
.faq-question-v2:hover { color: var(--amber); }
.faq-arrow-v2 {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item-v2.open .faq-arrow-v2 {
  transform: rotate(45deg);
  background: var(--dark);
}
.faq-answer-v2 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
  color: var(--gray-text);
  font-size: 0.92rem;
  line-height: 1.7;
}
.faq-item-v2.open .faq-answer-v2 {
  max-height: 400px;
  padding: 0 0 24px;
}

/* --- FOOTER V2 (Compact, Modern) --- */
.footer-v2 {
  background: var(--amber);
  padding: 40px 0 24px;
  color: var(--dark);
  font-size: 0.85rem;
}
.footer-v2-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-v2-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  flex-wrap: wrap;
}
.footer-v2-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.footer-v2-logo-img {
  height: 80px;
  width: auto;
}
.footer-v2-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-v2-nav a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.85rem;
  transition: color 0.3s ease;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
/* Reserve space for bold text to prevent layout shift */
.footer-v2-nav a::after {
  content: attr(data-text);
  font-weight: 700;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  display: block;
  font-size: 0.85rem;
}
.footer-v2-nav a:hover { color: var(--dark); font-weight: 700; }
/* Same for legal links */
.footer-v2-legal a {
  color: rgba(0,0,0,0.5);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.footer-v2-legal a::after {
  content: attr(data-text);
  font-weight: 700;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  display: block;
  font-size: 0.8rem;
}
.footer-v2-legal a:hover { color: var(--dark); font-weight: 700; }
.footer-v2-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.footer-v2-contact a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
}
.footer-v2-contact span {
  color: rgba(0,0,0,0.5);
  font-size: 0.8rem;
}
.footer-v2-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(0,0,0,0.5);
}
.footer-v2-legal {
  display: flex;
  gap: 20px;
}
/* footer-v2-legal styles defined above with nav */
@media (max-width: 768px) {
  .footer-v2-top { flex-direction: column; align-items: flex-start; }
  .footer-v2-contact { align-items: flex-start; }
  .footer-v2-bottom { flex-direction: column; align-items: flex-start; }
}

/* --- GOAL CHECKBOXES MODAL (HubSpot Style) --- */
.goal-check-modal {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid var(--gray-mid);
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--dark);
  transition: all 0.2s ease;
  background: #fff;
}
.goal-check-modal:hover { border-color: var(--amber); background: rgba(255,98,0,0.03); }
.goal-check-modal input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--amber);
  cursor: pointer;
  flex-shrink: 0;
}
.goal-check-modal:has(input:checked) {
  border-color: var(--amber);
  background: rgba(255,98,0,0.06);
  font-weight: 600;
}
