/* ============================================================
   LKS E-Commerce GmbH — Master Stylesheet
   Clean Light Layout · XTR3M-Inspired
   ============================================================ */


/* ==========================================================
   0. CSS CUSTOM PROPERTIES
   ========================================================== */

:root {
  /* Backgrounds */
  --color-bg: #FAFAF8;
  --color-bg-alt: #F0EFEB;
  --color-bg-dark: #0B0B0B;
  --color-bg-dark-elevated: #161616;
  --color-bg-elevated: #F0EFEB;

  /* Text */
  --color-text: #1A1A1A;
  --color-text-muted: #6E6E6E;
  --color-text-on-dark: #F5F5F7;
  --color-text-muted-dark: #A1A1A6;

  /* Accent — vibrant glowing orange */
  --color-accent: #D4622F;
  --color-accent-hover: #E8864A;
  --color-accent-glow: #F09A5E;
  --color-link: #D4622F;

  /* Borders */
  --color-border: rgba(0, 0, 0, 0.08);
  --color-border-dark: rgba(255, 255, 255, 0.1);

  /* Typography */
  --font-display: 'Archivo Black', 'Archivo', sans-serif;
  --font-body: 'Archivo', sans-serif;

  /* Easing */
  --ease-out-expo: cubic-bezier(0.22, 1, 0.36, 1);

  /* Layout */
  --container-max: 1200px;
  --container-padding: clamp(1.5rem, 4vw, 3.5rem);
  --header-height: 5.5rem;

  /* Cards (XTR3M style) */
  --card-radius: 12px;
  --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  --card-shadow-hover: 0 12px 48px rgba(0, 0, 0, 0.16);
  --card-lift: -6px;
}


/* ==========================================================
   1. RESET & BASE
   ========================================================== */

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

html {
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;

}

::selection {
  background: var(--color-accent);
  color: #fff;
}

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

img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.6s var(--ease-out-expo);
}

img[loading="lazy"].is-loaded,
img.is-loaded {
  opacity: 1;
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;

  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;

}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  line-height: 1.15;
}


/* ==========================================================
   2. ACCESSIBILITY
   ========================================================== */

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.5rem;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 980px;
  transition: top 0.3s var(--ease-out-expo);
}

.skip-link:focus {
  top: 1rem;
}


/* ==========================================================
   3. LAYOUT UTILITIES
   ========================================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

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


/* ==========================================================
   4. TYPOGRAPHY
   ========================================================== */

h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.25;
}

h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.35;
}

p {
  max-width: 680px;
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.label,
.hero-label,
.cta-label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
}


/* ==========================================================
   5. HEADER
   ========================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  height: var(--header-height);
  transition: background 0.4s var(--ease-out-expo),
              box-shadow 0.4s var(--ease-out-expo);
}

.site-header.is-scrolled {
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
  background: none;
  padding: 0;
}

.logo-img {
  height: 72px;
  width: auto;
  transition: opacity 0.4s var(--ease-out-expo);
}

/* Default: white logo visible, color logo hidden */
.logo-white {
  opacity: 1;
}

.logo-color {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0;
}

/* Scrolled: swap logos */
.site-header.is-scrolled .logo-white {
  opacity: 0;
}

.site-header.is-scrolled .logo-color {
  opacity: 1;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s var(--ease-out-expo);
  position: relative;
  padding: 0.25rem 0;

}

.nav-link:hover {
  color: #fff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.is-active {
  color: #fff;
}

.nav-link.is-active::after {
  width: 100%;
}

/* Scrolled header — white bg, dark text */
.site-header.is-scrolled .nav-link {
  color: rgba(0, 0, 0, 0.65);
}

.site-header.is-scrolled .nav-link:hover {
  color: var(--color-text);
}

.site-header.is-scrolled .nav-link.is-active {
  color: var(--color-text);
}


/* Header CTA Button */
.header-cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.6rem 1.25rem;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  margin-left: 1.5rem;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s var(--ease-out-expo);
}

.header-cta:hover {
  background: linear-gradient(135deg, #F5AC72, #F09A5E, #E8864A);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 24px rgba(240, 154, 94, 0.5), 0 0 48px rgba(232, 134, 74, 0.25);
}

/* On scroll: dark text */
.site-header.is-scrolled .header-cta {
  background: rgba(240, 154, 94, 0.08);
  color: var(--color-text);
  border-color: rgba(212, 98, 47, 0.2);
}

.site-header.is-scrolled .header-cta:hover {
  background: linear-gradient(135deg, #F5AC72, #F09A5E, #E8864A);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 24px rgba(240, 154, 94, 0.5), 0 0 48px rgba(232, 134, 74, 0.25);
}

/* Hide on mobile — shows in burger menu instead */
@media (max-width: 900px) {
  .header-cta {
    display: none;
  }
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border: none;
  cursor: pointer;
  background: transparent;
  border-radius: 8px;
  transition: background 0.3s var(--ease-out-expo);
  position: relative;
  z-index: 1001;
}

.menu-bar {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.4s var(--ease-out-expo),
              opacity 0.3s var(--ease-out-expo);
}

.menu-bar + .menu-bar {
  margin-top: 5px;
}

.site-header.is-scrolled .menu-toggle {
  background: rgba(0, 0, 0, 0.06);
  border-radius: 8px;
}

.site-header.is-scrolled .menu-bar {
  background: var(--color-text);
}

/* Hamburger X */
.menu-toggle.is-open .menu-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.is-open .menu-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.is-open .menu-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.menu-toggle.is-open {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.menu-toggle.is-open .menu-bar {
  background: #fff;
}


/* ==========================================================
   6. MOBILE MENU OVERLAY
   ========================================================== */

@media (max-width: 1024px) {

  /* Gleichmäßiges Padding auf Mobile */
  .site-header .header-inner {
    padding: 0 1.25rem;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    background: rgba(11, 11, 11, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s var(--ease-out-expo),
                visibility 0.5s var(--ease-out-expo);
    z-index: 999;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: 1.75rem;
    text-align: center;
  }

  .nav-link {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.85) !important;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--ease-out-expo),
                transform 0.5s var(--ease-out-expo),
                color 0.3s var(--ease-out-expo);
  }

  .nav-link:hover {
    color: #fff !important;
  }

  .main-nav.is-open .nav-link {
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav.is-open .nav-item:nth-child(1) .nav-link { transition-delay: 0.1s; }
  .main-nav.is-open .nav-item:nth-child(2) .nav-link { transition-delay: 0.15s; }
  .main-nav.is-open .nav-item:nth-child(3) .nav-link { transition-delay: 0.2s; }
  .main-nav.is-open .nav-item:nth-child(4) .nav-link { transition-delay: 0.25s; }
  .main-nav.is-open .nav-item:nth-child(5) .nav-link { transition-delay: 0.3s; }
  .main-nav.is-open .nav-item:nth-child(6) .nav-link { transition-delay: 0.35s; }
  .main-nav.is-open .nav-item:nth-child(7) .nav-link { transition-delay: 0.4s; }
  .main-nav.is-open .nav-item:nth-child(8) .nav-link { transition-delay: 0.45s; }

  /* Burger bars always white when menu is open */
  .menu-toggle.is-open .menu-bar {
    background: #fff !important;
  }

  /* Logo always white when menu is open */
  body.menu-is-open .logo-white { opacity: 1 !important; }
  body.menu-is-open .logo-color { opacity: 0 !important; }

  /* FIX: backdrop-filter on .is-scrolled creates a containing block,
     trapping .main-nav inside the header height. Remove it when menu is open. */
  body.menu-is-open .site-header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .menu-toggle {
    display: flex;
  }
}


/* ==========================================================
   7. HERO — NEW XTR3M-STYLE (homepage)
   ========================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-dark);
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero--video {
  background: #000;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.50);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero__subline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 550px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  animation: scrollIndicatorBounce 2s ease-in-out infinite;
}

.hero__scroll-indicator::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

@keyframes scrollIndicatorBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}


/* ==========================================================
   7b. HERO — LEGACY (subpages — dark bg, centered text)
   ========================================================== */

.hero-compact {
  min-height: 55vh;
}

.hero-minimal {
  min-height: 45vh;
}

/* Video hero (legacy) */
.hero-video {
  min-height: 65vh;
  position: relative;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 11, 0.55);
  z-index: 1;
}

.hero-video .hero-content {
  position: relative;
  z-index: 2;
}

/* Hero content (legacy) */
.hero-content {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.hero-label {
  margin-bottom: 1.75rem;
  color: var(--color-accent);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
  max-width: 900px;
  margin-bottom: 1.75rem;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--color-text-muted-dark);
  max-width: 550px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.hero-cta .btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}


/* ==========================================================
   8. SECTIONS — NEW XTR3M-STYLE (homepage)
   ========================================================== */

.section {
  padding: 8rem 0;
  position: relative;
}

.section--sand {
  background-color: var(--color-bg-alt);
}

.section--white {
  background-color: #fff;
}

/* ══════════════════════════════════════════════════════
   PROJECT SHOWCASE CARD — XTR3M-inspired clean design
   ══════════════════════════════════════════════════════ */
.project-card--showcase {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  background: #fff;
  border-radius: var(--card-radius);
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s ease;
}
.project-card--showcase:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 98, 47, 0.25);
  box-shadow: 0 24px 48px rgba(212, 98, 47, 0.1), 0 8px 20px rgba(0, 0, 0, 0.06);
}
.project-card--showcase:hover .project-card--showcase__img {
  transform: scale(1.03);
}
.project-card--showcase__img {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Screenshot image — rounded corners matching the card */
.project-card--showcase__img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--card-radius) var(--card-radius) 0 0;
}

/* Project info below image */
.project-card--showcase__info {
  padding: 1.25rem 1.5rem 1.5rem;
  border-radius: 0 0 var(--card-radius) var(--card-radius);
}

.project-card--showcase .service-section__project-label {
  color: var(--color-accent);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.4rem;
  display: block;
}

.project-card--showcase .service-section__project-name {
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.project-card--showcase .service-section__project-desc {
  color: var(--color-text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.85rem;
}

.project-card--showcase .service-section__project-link {
  color: var(--color-text);
  font-weight: 700;
}

.project-card--showcase .service-section__project-link:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .project-card--showcase__info {
    padding: 1rem 1.25rem 1.25rem;
  }
  .project-card--showcase .service-section__project-name {
    font-size: 1.15rem;
  }
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.section__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.section__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--color-text-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}


/* ==========================================================
   9. SERVICE SECTIONS — Full-width per service (homepage)
   ========================================================== */

.service-section {
  max-width: 900px;
  margin: 0 auto;
}

.service-section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.service-section__number {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--color-accent);
  line-height: 1;
  opacity: 0.25;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px rgba(240, 154, 94, 0.3);
}

.service-section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin-bottom: 1rem;
  position: relative;
}

.service-section__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.service-section__desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto;
}

/* Features + Project side by side */
.service-section__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

/* Feature items — left column */
.service-section__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  padding: 1.5rem 1.75rem;
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s ease;
}
/* Warm accent glow on hover */
.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, var(--color-accent-glow), var(--color-accent));
  border-radius: 0 2px 2px 0;
  transition: height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.feature-item::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 20% 50%, rgba(212, 98, 47, 0.06) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.section--sand .feature-item {
  background: #fff;
}

.section--white .feature-item {
  background: var(--color-bg-alt);
}

.feature-item:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 98, 47, 0.2);
  box-shadow: 0 16px 40px rgba(212, 98, 47, 0.08), 0 6px 16px rgba(0, 0, 0, 0.05);
}
.feature-item:hover::before {
  height: 100%;
}
.feature-item:hover::after {
  opacity: 1;
}

.feature-item__label {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text);
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}
.feature-item:hover .feature-item__label {
  color: var(--color-accent);
}

.feature-item__text {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Project card — right column */
.service-section__project {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 3px solid var(--color-accent);
  transition: transform 0.3s var(--ease-out-expo),
              box-shadow 0.3s var(--ease-out-expo);
}

.section--sand .service-section__project {
  background: #fff;
}

.section--white .service-section__project {
  background: var(--color-bg-alt);
  border-left-color: var(--color-accent);
}

.service-section__project:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.service-section__project-label {
  display: block;
  font-weight: 600;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.service-section__project-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.service-section__project-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.service-section__project-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-text);
  text-decoration: none;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  white-space: nowrap;
  background: rgba(240, 154, 94, 0.08);
  border: 1px solid rgba(212, 98, 47, 0.15);
  transition: all 0.4s var(--ease-out-expo);
  display: inline-block;
}

.service-section__project-link:hover {
  color: #fff;
  background: linear-gradient(135deg, #F09A5E, #E8864A, #D4622F);
  border-color: transparent;
  box-shadow: 0 0 20px rgba(240, 154, 94, 0.35), 0 0 40px rgba(232, 134, 74, 0.18);
}

/* CTA centered */
.service-section__cta {
  text-align: center;
  margin-top: 0.5rem;
}


/* ==========================================================
   10. USP GRID — DARK SECTION + NUMBERED CARDS
   ========================================================== */

/* ── Dark section variant (now cream) ── */
.section--dark {
  background: var(--color-bg-alt);
  color: var(--color-text);
}

.section--dark .section__title {
  color: var(--color-text);
}

.section--dark .section__subtitle {
  color: var(--color-text-muted);
}

/* ── USP Grid ── */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* ── USP Card — glassy cream style with accent number ── */
.usp-card {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--card-radius);
  padding: 2.5rem 2rem 2rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.usp-card:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(232, 134, 74, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.06), 0 0 24px rgba(232, 134, 74, 0.08);
  transform: translateY(-12px) scale(1.02);
}

/* Large background number */
.usp-card__number {
  position: absolute;
  top: -0.15em;
  right: 0.15em;
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(193, 81, 43, 0.07);
  pointer-events: none;
  user-select: none;
  transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.usp-card:hover .usp-card__number {
  color: rgba(232, 134, 74, 0.18);
}

/* Content over the number */
.usp-card__content {
  position: relative;
  z-index: 1;
}

.usp-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.usp-card__title::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent-glow), var(--color-accent));
  margin-top: 0.6rem;
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(240, 154, 94, 0.4);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.usp-card:hover .usp-card__title::after {
  width: 56px;
}

.usp-card__text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: none;
}


/* ==========================================================
   11. BUTTONS — XTR3M-STYLE
   ========================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 0.875rem 2rem;
  border-radius: 4px;

  transition: transform 0.4s var(--ease-out-expo),
              box-shadow 0.4s var(--ease-out-expo),
              background 0.3s var(--ease-out-expo),
              border-color 0.3s var(--ease-out-expo),
              color 0.3s var(--ease-out-expo);
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

/* ── Primary Button — Glassy with orange hint, full orange on hover ── */
.btn--primary,
.btn-primary {
  background: rgba(240, 154, 94, 0.1);
  color: var(--color-text);
  border: 1.5px solid rgba(212, 98, 47, 0.25);
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(240, 154, 94, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn--primary::before,
.btn-primary::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, #F09A5E, #E8864A, #D4622F);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  filter: blur(14px);
}

.btn--primary:hover,
.btn-primary:hover {
  background: linear-gradient(135deg, #F5AC72, #F09A5E, #E8864A);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 36px rgba(240, 154, 94, 0.6), 0 0 72px rgba(232, 134, 74, 0.35), 0 12px 40px rgba(193, 81, 43, 0.25);
  transform: translateY(-3px);
}

.btn--primary:hover::before,
.btn-primary:hover::before {
  opacity: 1;
}

/* ── Outline Button — glasig mit leichtem Orange-Touch ── */
.btn--outline,
.btn-outline {
  background: rgba(240, 154, 94, 0.06);
  color: var(--color-text);
  border: 1.5px solid rgba(212, 98, 47, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn--outline:hover,
.btn-outline:hover {
  background: linear-gradient(135deg, #F09A5E, #E8864A, #D4622F);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 28px rgba(240, 154, 94, 0.5), 0 0 56px rgba(232, 134, 74, 0.3), 0 8px 32px rgba(193, 81, 43, 0.2);
}

/* ── Outline White — for dark/hero backgrounds ── */
.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15), 0 8px 30px rgba(0, 0, 0, 0.1);
}

.btn--lg {
  padding: 0.875rem 2.5rem;
  font-size: 0.8rem;
}


/* ==========================================================
   12. APPLE HERO (subpages — full-screen centered)
   ========================================================== */

.apple-hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height) + 4rem) var(--container-padding) 4rem;
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
}

.apple-hero--dark {
  background: var(--color-bg-alt);
  color: var(--color-text);
}

/* ── Image Hero — subpages with background photo ── */
.apple-hero--image {
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  color: #fff;
  min-height: 60vh;
  max-height: 60vh;
  height: 60vh;
}

.apple-hero--image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 0;
}

.apple-hero--image .apple-hero__content {
  position: relative;
  z-index: 1;
}

.apple-hero--image .apple-hero__title {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.apple-hero--image .apple-hero__subtitle {
  color: rgba(255,255,255,0.8);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
}

.apple-hero--image .apple-hero__label {
  color: rgba(255,255,255,0.7);
}

.apple-hero--image .btn {
  margin-top: 2rem;
}

/* Hero buttons: glasig-weiß auf dunklem Hintergrund */
.apple-hero--image .btn--primary,
.apple-hero--image .btn-primary,
.hero--video .btn--primary,
.hero--video .btn-primary,
.hero .btn--primary,
.hero .btn-primary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 16px rgba(255, 255, 255, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.apple-hero--image .btn--primary:hover,
.apple-hero--image .btn-primary:hover,
.hero--video .btn--primary:hover,
.hero--video .btn-primary:hover,
.hero .btn--primary:hover,
.hero .btn-primary:hover {
  background: linear-gradient(135deg, #F5AC72, #F09A5E, #E8864A);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 36px rgba(240, 154, 94, 0.6), 0 0 72px rgba(232, 134, 74, 0.35), 0 12px 40px rgba(193, 81, 43, 0.25);
}

/* Video Hero */
.apple-hero--video {
  background: #000;
}

.apple-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.apple-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.apple-hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.apple-hero__inner {
  max-width: 900px;
  margin: 0 auto;
}

.apple-hero__label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}

.apple-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 400;
  color: var(--color-text);
  margin: 0;
}

.apple-hero--dark .apple-hero__title {
  color: var(--color-text);
}

.apple-hero__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 1rem auto 0;
  line-height: 1.5;
}

.apple-hero--dark .apple-hero__subtitle {
  color: var(--color-text-muted);
}

.apple-hero__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.apple-hero__image {
  max-width: 1000px;
  margin: 3rem auto 0;
}

.apple-hero__image img {
  width: 100%;
  border-radius: 16px;
}

.apple-hero--dark .apple-hero__image img {
  border-radius: 16px;
}


/* ==========================================================
   13. APPLE SECTION (subpages — full-width stacked)
   NOW RESTYLED: Light theme instead of dark
   ========================================================== */

.apple-section {
  padding: 8rem var(--container-padding);
  text-align: center;
  overflow: hidden;
  position: relative;
}

.apple-section--dark {
  background: var(--color-bg-alt);
  color: var(--color-text);
}

.apple-section--light {
  background: var(--color-bg);
  color: var(--color-text);
}

.apple-section--white {
  background: #fff;
  color: var(--color-text);
}

.apple-section--alt {
  background: var(--color-bg-alt);
  color: var(--color-text);
}

.apple-section--compact {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.apple-section__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.apple-section__label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.apple-section__headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  color: var(--color-text);
}

.apple-section--dark .apple-section__headline {
  color: var(--color-text);
}

.apple-section--light .apple-section__headline,
.apple-section--white .apple-section__headline,
.apple-section--alt .apple-section__headline {
  color: var(--color-text);
}

.apple-section__sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  max-width: 550px;
  margin: 0.75rem auto 0;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.apple-section--dark .apple-section__sub {
  color: var(--color-text-muted);
}

.apple-section--light .apple-section__sub,
.apple-section--white .apple-section__sub,
.apple-section--alt .apple-section__sub {
  color: var(--color-text-muted);
}

.apple-section__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.25rem;
}

.apple-section__image {
  max-width: 900px;
  margin: 3rem auto 0;
}

.apple-section__image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

/* All section image variants now have same light treatment */
.apple-section--light .apple-section__image img,
.apple-section--white .apple-section__image img,
.apple-section--alt .apple-section__image img {
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.apple-section--dark .apple-section__image img {
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

/* Apple section text block (used on some subpages) */
.apple-section__text {
  max-width: 700px;
  margin: 1rem auto 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}


/* ==========================================================
   14. APPLE LINK
   ========================================================== */

.apple-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s var(--ease-out-expo);

}

.apple-link--blue {
  color: var(--color-accent);
}

.apple-link--blue:hover {
  color: var(--color-accent-hover);
}

.apple-link--arrow {
  display: inline-flex;
  align-items: center;
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  background: rgba(240, 154, 94, 0.08);
  border: 1px solid rgba(212, 98, 47, 0.15);
  transition: all 0.4s var(--ease-out-expo);
}

.apple-link--arrow::after {
  content: ' \203A';
  margin-left: 0.25em;
  font-size: 1.2em;
  transition: margin-left 0.3s var(--ease-out-expo);
}

.apple-link--arrow:hover {
  color: #fff;
  background: linear-gradient(135deg, #F09A5E, #E8864A, #D4622F);
  border-color: transparent;
  box-shadow: 0 0 24px rgba(240, 154, 94, 0.4), 0 0 48px rgba(232, 134, 74, 0.2);
}

.apple-link--arrow:hover::after {
  margin-left: 0.5em;
}

/* On all backgrounds, apple links use accent color */
.apple-section--dark .apple-link--arrow,
.apple-section--dark .apple-link--blue,
.apple-hero--dark .apple-link--arrow,
.apple-hero--dark .apple-link--blue {
  color: var(--color-accent);
}

.apple-section--dark .apple-link--arrow:hover,
.apple-hero--dark .apple-link--arrow:hover {
  color: #fff;
}

.apple-section--dark .apple-link--blue:hover,
.apple-hero--dark .apple-link--blue:hover {
  color: var(--color-accent-hover);
}


/* ==========================================================
   15. APPLE GRID (2-col promo cards)
   ========================================================== */

.apple-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 1.5rem var(--container-padding);
  max-width: var(--container-max);
  margin: 0 auto;
  background: var(--color-bg-alt);
}

.apple-grid:first-of-type {
  padding-top: 2rem;
}

.apple-grid:last-of-type {
  padding-bottom: 2rem;
}


/* ==========================================================
   16. APPLE CARD — NOW RESTYLED: white bg, shadow
   ========================================================== */

.apple-card {
  overflow: hidden;
  text-align: center;
  padding: 3rem 2rem 0;
  border-radius: var(--card-radius);
  position: relative;
  transition: transform 0.4s var(--ease-out-expo),
              box-shadow 0.4s var(--ease-out-expo);
}

.apple-card:hover {
  transform: translateY(-12px) scale(1.02);
}

.apple-card--dark {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: var(--color-text);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.apple-card--dark:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(232, 134, 74, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.06), 0 0 24px rgba(232, 134, 74, 0.08);
}

.apple-card--light {
  background: #fff;
  color: var(--color-text);
  box-shadow: var(--card-shadow);
}

.apple-card--light:hover {
  box-shadow: var(--card-shadow-hover);
}

.apple-card__label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.apple-card__headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  color: var(--color-text);
}

.apple-card--dark .apple-card__headline {
  color: var(--color-text);
}

.apple-card--light .apple-card__headline {
  color: var(--color-text);
}

.apple-card__headline--sm {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

.apple-card__sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  max-width: 420px;
  margin: 0.5rem auto 0;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.apple-card--dark .apple-card__sub {
  color: var(--color-text-muted);
}

.apple-card--light .apple-card__sub {
  color: var(--color-text-muted);
}

.apple-card__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.apple-card__image {
  margin-top: 2rem;
  overflow: hidden;
}

.apple-card__image img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--card-radius) var(--card-radius) 0 0;
}


/* ==========================================================
   17. SPLIT SECTIONS (subpages)
   ========================================================== */

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

.split-section.reverse .split-image {
  order: -1;
}

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

.split-text h2 {
  margin-bottom: 0.5rem;
}

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

.split-text .label {
  margin-bottom: 0.25rem;
}

.split-image {
  position: relative;
}

.split-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}


/* ==========================================================
   18. GRIDS (subpages)
   ========================================================== */

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

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

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}


/* ==========================================================
   19. FEATURE CARDS (subpages)
   ========================================================== */

.feature-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  border: none;
  transition: box-shadow 0.4s var(--ease-out-expo),
              transform 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(var(--card-lift));
}

.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.feature-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* On sand bg sections */
.section--sand .feature-card,
.section:nth-child(even) .feature-card {
  background: #fff;
}


/* ==========================================================
   20. BRAND / PORTFOLIO CARDS (subpages)
   ========================================================== */

.brand-card {
  background: #fff;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: none;
  transition: transform 0.5s var(--ease-out-expo),
              box-shadow 0.5s var(--ease-out-expo);

}

.brand-card:hover {
  transform: translateY(var(--card-lift));
  box-shadow: var(--card-shadow-hover);
}

.brand-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.brand-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.brand-card:hover .brand-card-image img {
  transform: scale(1.03);
}

.brand-card-content {
  padding: 1.75rem 2rem;
}

.brand-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.brand-card-text {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}


/* ==========================================================
   21. TEAM (subpages)
   ========================================================== */

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.team-card {
  text-align: center;
  transition: transform 0.4s var(--ease-out-expo);
}

.team-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.06);
}

.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--card-radius);
  margin-bottom: 1.25rem;
  filter: grayscale(0.15);
  transition: filter 0.4s var(--ease-out-expo);
}

.team-card:hover img {
  filter: grayscale(0);
}

.team-card-info {
  padding: 0 0.5rem;
}

.team-card-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.team-card-role {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  font-weight: 500;
}


/* Team Flip Cards — 3-column founder grid with photo flip */
.team-flip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 960px;
  margin: 3.5rem auto 0;
  perspective: 1200px;
}

.team-flip-card {
  height: 380px;
  cursor: pointer;
}

.team-flip-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--card-radius);
}

.team-flip-card:hover .team-flip-card__inner,
.team-flip-card.is-flipped .team-flip-card__inner {
  transform: rotateY(180deg);
}

.team-flip-card__front,
.team-flip-card__back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--card-radius);
  overflow: hidden;
}

/* Front — Portrait-Foto */
.team-flip-card__front {
  overflow: hidden;
}

.team-flip-card__front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.6s var(--ease-out-expo);
}

.team-flip-card:hover .team-flip-card__front img,
.team-flip-card.is-flipped .team-flip-card__front img {
  transform: scale(1.05);
}

/* Back — glasig mit Name + Rolle */
.team-flip-card__back {
  transform: rotateY(180deg);
}

.team-flip-card__back--info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.team-flip-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.team-flip-card__role {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  font-weight: 400;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .team-flip-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 320px;
  }

  .team-flip-card {
    height: 340px;
  }
}


/* ==========================================================
   22. CTA SECTION (subpages)
   ========================================================== */

.cta-section {
  background: var(--color-bg-alt);
  padding: 5rem 0;
  text-align: center;
}

.cta-label {
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  color: var(--color-text);
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.cta-text {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.cta-section .btn-primary {
  margin: 0 auto;
}

.cta-section .btn-outline {
  border-color: rgba(0, 0, 0, 0.15);
  color: var(--color-text);
}

.cta-section .btn-outline:hover {
  border-color: var(--color-accent);
  background: rgba(193, 81, 43, 0.04);
}

/* ── Subpages: CTA weiß statt cream ── */
.page-webseitenbau .cta-section,
.page-shopbau .cta-section,
.page-app-entwicklung .cta-section {
  background: #fff;
}


/* ==========================================================
   APP-HERO: Split layout with iPhone Mockup
   ========================================================== */
.app-hero {
  display: flex;
  align-items: center;
  background: var(--color-bg-alt);
  padding: 140px 40px 60px;
  overflow: hidden;
}
.app-hero__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.app-hero__text {
  opacity: 0;
  transform: translateY(30px);
}
.app-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}
.app-hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 480px;
}

/* ── iPhone Frame ── */
.app-hero__phone-area {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 24px;
  justify-content: center;
  perspective: 1200px;
  opacity: 0;
  transform: translateY(30px);
  padding-top: 20px;
}
.app-hero__badges-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

/* ── App Badges ── */
.app-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.app-badge:hover {
  transform: scale(1.12) translateY(-3px);
}
.app-badge__icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  border-radius: 22%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(212, 98, 47, 0.25);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.app-badge__icon svg {
  width: 24px;
  height: 24px;
}
.app-badge__label {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  font-family: var(--font-body);
  transition: color 0.3s ease;
}
.app-badge.badge-active .app-badge__icon {
  background: var(--color-accent-hover);
  box-shadow: 0 6px 28px rgba(212, 98, 47, 0.5), 0 0 16px rgba(240, 154, 94, 0.25);
  transform: scale(1.08);
}
.app-badge.badge-active .app-badge__label {
  color: var(--color-accent);
}
.app-badge:nth-child(1) .app-badge__icon { animation: appBadgeFloat 3s ease-in-out infinite; }
.app-badge:nth-child(2) .app-badge__icon { animation: appBadgeFloat 3s ease-in-out infinite 0.8s; }
@keyframes appBadgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.app-iphone {
  width: 200px;
  height: 414px;
  background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 50%, #0d0d0d 100%);
  border-radius: 38px;
  padding: 7px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.1), inset 0 0 0 1.5px rgba(255,255,255,0.05);
  position: relative;
  flex-shrink: 0;
  z-index: 10;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
}
.app-iphone::after {
  content: '';
  position: absolute;
  left: -2.5px;
  top: 120px;
  width: 3px;
  height: 30px;
  background: linear-gradient(180deg, #444, #2a2a2a, #444);
  border-radius: 2px 0 0 2px;
  box-shadow: 0 40px 0 0 #333, 0 -26px 0 0 #333;
}
.app-iphone__side-btn {
  position: absolute;
  right: -2.5px;
  top: 145px;
  width: 3px;
  height: 42px;
  background: linear-gradient(180deg, #444, #2a2a2a, #444);
  border-radius: 0 2px 2px 0;
}
.app-iphone__screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: var(--color-bg-alt);
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.3);
}
.app-iphone__island {
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 24px;
  background: #000;
  border-radius: 16px;
  z-index: 10;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05);
}
.app-iphone__island::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #1a1a3a, #0a0a1a);
  box-shadow: inset 0 0 2px rgba(100,100,200,0.3), 0 0 0 1.5px #111;
}
.app-iphone__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.app-iphone__screen img.active { opacity: 1; }
.app-iphone__home-bar {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  z-index: 10;
}

/* ── Platform Cards (App-Entwicklung) ── */
.platform-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 2rem auto 0;
  padding: 0 var(--container-padding);
}
.platform-card {
  background: linear-gradient(165deg, rgba(255,255,255,0.95) 0%, rgba(255,248,243,0.9) 100%);
  border: 1px solid rgba(212, 98, 47, 0.12);
  border-radius: var(--card-radius);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease, border-color 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.03);
}
/* Subtle radial glow behind the icon area */
.platform-card::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 98, 47, 0.08) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.platform-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 98, 47, 0.3);
  box-shadow: 0 24px 48px rgba(212, 98, 47, 0.1), 0 8px 24px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(212, 98, 47, 0.08);
}
.platform-card:hover::before {
  opacity: 1.5;
}
.platform-card--highlight {
  background: linear-gradient(165deg, rgba(255,255,255,0.98) 0%, rgba(255,243,234,0.95) 100%);
  border-color: rgba(212, 98, 47, 0.2);
  box-shadow: 0 8px 30px rgba(212, 98, 47, 0.08), 0 2px 8px rgba(0, 0, 0, 0.03);
}
.platform-card--highlight:hover {
  box-shadow: 0 28px 56px rgba(212, 98, 47, 0.14), 0 12px 28px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(212, 98, 47, 0.12);
}
.platform-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-accent-glow), var(--color-accent));
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
  z-index: 2;
}
.platform-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 98, 47, 0.1), rgba(232, 134, 74, 0.15));
  box-shadow: 0 4px 16px rgba(212, 98, 47, 0.12), 0 0 0 6px rgba(212, 98, 47, 0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.platform-card:hover .platform-card__icon {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(212, 98, 47, 0.2), 0 0 0 8px rgba(212, 98, 47, 0.06);
}
.platform-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-accent);
}
.platform-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.platform-card__desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}
.platform-card__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  background: rgba(212, 98, 47, 0.08);
  padding: 0.4rem 1rem;
  border-radius: 50px;
}

@media (max-width: 768px) {
  .platform-cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .platform-card { padding: 2rem 1.5rem; }
}

/* ── Responsive (App Hero) ── */
@media (max-width: 968px) {
  .app-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .app-hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .app-hero__phone-area { gap: 16px; }
  .app-badge__icon { width: 40px; height: 40px; }
  .app-badge__icon svg { width: 20px; height: 20px; }
  .app-badge__label { font-size: 8px; }
  .app-iphone { width: 170px; height: 352px; border-radius: 34px; padding: 6px; }
  .app-iphone__screen { border-radius: 29px; }
  .app-iphone__island { width: 76px; height: 22px; top: 6px; border-radius: 12px; }
  .app-iphone__island::after { right: 12px; width: 6px; height: 6px; }
  .app-iphone__home-bar { width: 80px; height: 3px; bottom: 5px; }
  .app-hero { padding: 120px 20px 60px; min-height: auto; }
}
@media (max-width: 480px) {
  .app-hero__phone-area { gap: 8px; }
  .app-badge__icon { width: 34px; height: 34px; }
  .app-badge__icon svg { width: 17px; height: 17px; }
  .app-badge__label { font-size: 7px; letter-spacing: 0; }
  .app-iphone { width: 140px; height: 290px; border-radius: 26px; padding: 5px; }
  .app-iphone__screen { border-radius: 22px; }
  .app-iphone__island { width: 58px; height: 18px; top: 5px; border-radius: 10px; }
  .app-iphone__island::after { right: 10px; width: 5px; height: 5px; }
  .app-iphone__home-bar { width: 56px; height: 3px; bottom: 4px; }
}


/* ==========================================================
   23. CONTACT FORM (subpages)
   ========================================================== */

/* ── Contact Hero — Hardfacts + Google Maps side by side ── */
.contact-hero {
  padding: calc(var(--header-height) + 4rem) 0 4rem;
  background: var(--color-bg);
}

.contact-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--color-text);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.contact-hero__subtitle {
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

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

.contact-fact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-fact__label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
}

.contact-fact__value,
.contact-fact__value a {
  font-size: 1rem;
  color: var(--color-text);
  text-decoration: none;
  line-height: 1.6;
}

.contact-fact__value a:hover {
  color: var(--color-accent);
}

.contact-hero__map {
  width: 100%;
  min-height: 420px;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.contact-hero__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

/* ── Contact Form Wrapper ── */
.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.contact-form__desc {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ── Form Feedback (Success / Error) ── */
.form-feedback {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 16px;
  animation: feedbackIn 0.5s ease-out;
}
@keyframes feedbackIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.form-feedback__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-feedback__icon svg {
  width: 36px;
  height: 36px;
}
.form-feedback__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
}
.form-feedback__text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-light);
  max-width: 480px;
  margin: 0 auto;
}
.form-feedback__text a {
  color: var(--color-accent);
  text-decoration: underline;
}

/* Success */
.form-feedback--success {
  background: rgba(34, 139, 34, 0.06);
  border: 1px solid rgba(34, 139, 34, 0.15);
}
.form-feedback--success .form-feedback__icon {
  background: rgba(34, 139, 34, 0.1);
}
.form-feedback--success .form-feedback__icon svg {
  stroke: #228B22;
}
.form-feedback--success .form-feedback__title {
  color: #1a6b1a;
}

/* Error */
.form-feedback--error {
  background: rgba(200, 40, 40, 0.06);
  border: 1px solid rgba(200, 40, 40, 0.15);
}
.form-feedback--error .form-feedback__icon {
  background: rgba(200, 40, 40, 0.1);
}
.form-feedback--error .form-feedback__icon svg {
  stroke: #C82828;
}
.form-feedback--error .form-feedback__title {
  color: #a02020;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-form {
  max-width: none;
  margin: 0;
}

.form-group {
  margin-bottom: 2.5rem;
  position: relative;
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--color-border);
  padding: 0.75rem 0;
  outline: none;
  transition: border-color 0.3s var(--ease-out-expo);
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-bottom-color: var(--color-accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 0.6;
}


/* ==========================================================
   24. LEGAL CONTENT (subpages)
   ========================================================== */

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 2rem;
}

.legal-content h1 {
  font-style: normal;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  max-width: none;
}

.legal-content ul,
.legal-content ol {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--color-text-muted);
}

.legal-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.legal-content a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s var(--ease-out-expo);
}

.legal-content a:hover {
  color: var(--color-accent-hover);
}


/* ==========================================================
   25. FOOTER
   ========================================================== */

.site-footer {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
  padding: 4rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo-img {
  height: 66px;
  width: auto;
  filter: none;
}

.footer-brand p {
  color: var(--color-text-muted-dark);
  font-size: 0.85rem;
  max-width: 280px;
  line-height: 1.6;
}

.footer-links {
  display: contents;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-heading {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.56);
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.85rem;
  transition: color 0.3s var(--ease-out-expo);

}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  grid-column: 1 / -1;
  padding: 2rem 0 0;
  margin-top: 1.5rem;
  border-top: 1px solid var(--color-border-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.75rem;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.36);
}


/* ==========================================================
   26. GRAIN OVERLAY
   ========================================================== */

.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}


/* Custom cursor removed — using normal browser cursor */


/* ==========================================================
   28. ANIMATIONS / REVEAL (GSAP-driven)
   ========================================================== */

.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale,
.reveal-fade,
[data-animate] {
  opacity: 0;
}

/* GSAP word-split helper */
.word {
  display: inline-block;
  overflow: hidden;
}

.word-inner {
  display: inline-block;
}


/* ==========================================================
   29. SECTION UTILITIES
   ========================================================== */

/* Section label + title combos */
.section .label {
  margin-bottom: 1rem;
}

.section h2 {
  margin-bottom: 1.25rem;
}

.section > .container > p {
  color: var(--color-text-muted);
  max-width: 600px;
}

.section.text-center > .container > p {
  margin-left: auto;
  margin-right: auto;
}

/* Alternating backgrounds */
.section.bg-dark {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
}

.section.bg-dark h2 {
  color: #fff;
}

.section.bg-dark p {
  color: var(--color-text-muted-dark);
}

.section.bg-alt {
  background: var(--color-bg-alt);
}


/* ==========================================================
   30. INLINE LINK STYLES
   ========================================================== */

.split-text a,
.feature-card a,
.brand-card-content a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.3s var(--ease-out-expo);
}

.split-text a:hover,
.feature-card a:hover,
.brand-card-content a:hover {
  color: var(--color-accent-hover);
}


/* ==========================================================
   30b. PARTNER LOGO BAND — Infinite scroll
   ========================================================== */

.logo-band-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.logo-band__title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.logo-band__desc {
  text-align: center;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.logo-band {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 3rem;
}

/* Fade edges */
.logo-band::before,
.logo-band::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.logo-band::before {
  left: 0;
  background: linear-gradient(to right, var(--color-sand, #F0EFEB), transparent);
}

.logo-band::after {
  right: 0;
  background: linear-gradient(to left, var(--color-sand, #F0EFEB), transparent);
}

.logo-band__track {
  display: flex;
  width: max-content;
  animation: logo-scroll 35s linear infinite;
}

.logo-band__slide {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding-right: 4rem;
}

.logo-band__slide img {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.4s ease;
}

.logo-band__slide img:hover {
  opacity: 1;
}

/* Bigger sizing for small/thin logos */
.logo-band__slide img[src*="lunero"] {
  height: 60px;
}

.logo-band__slide img[src*="hofnahrung"] {
  height: 64px;
}

@keyframes logo-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Pause on hover */
.logo-band:hover .logo-band__track {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .logo-band__slide {
    gap: 2.5rem;
    padding-right: 2.5rem;
  }

  .logo-band__slide img {
    height: 30px;
  }

  .logo-band::before,
  .logo-band::after {
    width: 60px;
  }

  .logo-band-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}


/* ==========================================================
   31. SCROLL BANNER — Infinite marquee
   ========================================================== */

.scroll-banner {
  overflow: hidden;
  background: var(--color-bg-dark);
  border-top: 1px solid var(--color-border-dark);
  padding: 2rem 0;
  position: relative;
}

.scroll-banner__track {
  display: flex;
  width: max-content;
  animation: scrollBanner 30s linear infinite;
}

.scroll-banner__content {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.scroll-banner__item {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--color-text-on-dark);
  white-space: nowrap;
  padding: 0 1rem;
  letter-spacing: -0.01em;
}

.scroll-banner__divider {
  color: var(--color-accent);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  padding: 0 0.5rem;
  opacity: 0.6;
}

@keyframes scrollBanner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.scroll-banner:hover .scroll-banner__track {
  animation-play-state: paused;
}


/* ==========================================================
   32. RESPONSIVE — TABLET (1024px)
   ========================================================== */

@media (max-width: 1024px) {
  .contact-hero__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .section {
    padding: 5rem 0;
  }

  .cta-section {
    padding: 6rem 0;
  }

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

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

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

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  /* Service section: stack on tablet */
  .service-section__details {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* USP grid: stays 2 columns on tablet */
  .usp-grid {
    gap: 1.25rem;
  }

  .usp-card__number {
    font-size: 5rem;
  }

  /* Apple components tablet */
  .apple-hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }

  .apple-section {
    padding: 5rem var(--container-padding);
  }

  .apple-section__headline {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
  }

  .apple-card {
    padding: 2.5rem 1.5rem 0;
  }

  .apple-card__headline {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
  }
}


/* ==========================================================
   33. RESPONSIVE — MOBILE (768px)
   ========================================================== */

@media (max-width: 768px) {
  :root {
    --header-height: 2.75rem;
  }

  .section {
    padding: 4rem 0;
  }

  .cta-section {
    padding: 4rem 0;
  }

  .hero__headline {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero__subline {
    font-size: 1rem;
  }

  .hero__cta {
    flex-direction: column;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .cta-title {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

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

  .split-section.reverse {
    direction: ltr;
  }

  .split-section.reverse .split-image {
    order: 0;
  }

  .feature-grid,
  .grid-3 {
    grid-template-columns: 1fr;
  }

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

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

  /* Service section: tighter spacing on mobile */
  .service-section__number {
    font-size: 2.5rem;
  }

  /* USP grid: 1 column on mobile */
  .usp-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .usp-card {
    padding: 2rem 1.5rem 1.5rem;
  }

  .usp-card__number {
    font-size: 4rem;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    padding-top: 2rem;
  }

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

  .btn,
  .apple-link--arrow,
  .service-section__project-link {
    padding: 0.8rem 1.75rem;
    font-size: 0.75rem;
  }

  .logo-img {
    height: 48px;
  }

  .footer-logo-img {
    height: 42px;
  }

  /* Apple components mobile */
  .apple-hero {
    min-height: 85svh;
    padding: calc(var(--header-height) + 2rem) var(--container-padding) 3rem;
  }

  .apple-hero--image {
    min-height: 70vh;
    max-height: 70vh;
    height: 70vh;
    background-position: center center;
  }

  .apple-hero--image::before {
    background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.5) 100%);
  }

  .apple-hero--image .apple-hero__title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .apple-hero--image .apple-hero__subtitle {
    font-size: 0.9rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .apple-hero__title {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }

  .apple-hero__subtitle {
    font-size: 1.05rem;
  }

  .apple-hero__links {
    flex-direction: column;
    gap: 0.75rem;
  }

  .apple-section {
    padding: 3.5rem var(--container-padding);
  }

  .apple-section__headline {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .apple-section__sub {
    font-size: 1rem;
  }

  .apple-section__links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .apple-section__image {
    margin-top: 2rem;
  }

  .apple-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 var(--container-padding);
  }

  .apple-card {
    padding: 2.5rem 1.5rem 0;
  }

  .apple-card__headline {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }

  .apple-card__headline--sm {
    font-size: clamp(1.1rem, 4vw, 1.35rem);
  }

  .apple-card__image img {
    max-height: 300px;
  }

  .apple-link {
    font-size: 1rem;
  }

  /* Contact page stacks on mobile */
  .contact-hero__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-hero__map {
    min-height: 300px;
  }

  .contact-hero__map iframe {
    min-height: 300px;
  }

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

  body {
    /* touch defaults */
  }

  a, button, input, textarea, select {
  
  }
}


/* ==========================================================
   34. RESPONSIVE — SMALL MOBILE (480px)
   ========================================================== */

@media (max-width: 480px) {
  .section {
    padding: 3rem 0;
  }

  .cta-section {
    padding: 3.5rem 0;
  }

  .hero__headline {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .cta-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }

  h2 {
    font-size: clamp(1.3rem, 4vw, 1.75rem);
  }

  .feature-card {
    padding: 2rem;
  }

  .brand-card-content {
    padding: 1.25rem 1.5rem;
  }

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

  .split-image img {
    border-radius: 12px;
  }

  .hero-label {
    font-size: 0.65rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .form-group {
    margin-bottom: 2rem;
  }

  .service-section__project {
    padding: 1.5rem;
  }

  .feature-item {
    padding: 1rem 1.25rem;
  }

  .usp-card {
    padding: 2rem 1.5rem;
  }

  /* Apple components small mobile */
  .apple-hero {
    min-height: 80svh;
  }

  .apple-hero--image {
    min-height: 65vh;
    max-height: 65vh;
    height: 65vh;
  }

  .apple-hero__title {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

  .apple-hero__subtitle {
    font-size: 0.95rem;
  }

  .apple-section {
    padding: 3rem var(--container-padding);
  }

  .apple-section__headline {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }

  .apple-card {
    padding: 2rem 1.25rem 0;
    border-radius: var(--card-radius);
  }

  .apple-card__headline {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
  }

  .apple-card__image img {
    max-height: 250px;
  }

  .apple-grid {
    gap: 1rem;
    padding: 0 var(--container-padding);
  }
}


/* ==========================================================
   35a. TRULY DARK SECTION + FEATURE TILES
   ========================================================== */

/* Cream override for feature section */
.feature-section-dark {
  color: var(--color-text) !important;
}

.feature-section-dark .apple-section__headline {
  color: var(--color-text) !important;
}

.feature-section-dark .apple-section__sub {
  color: var(--color-text-muted) !important;
}

/* FEATURE TILES (Webseitenbau "Was Sie bekommen") */

.feature-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 3rem auto 0;
  counter-reset: feature-counter;
}
.feature-tiles--three {
  grid-template-columns: repeat(3, 1fr);
  padding: 0 var(--container-padding);
  counter-reset: feature-counter;
}

.feature-tile {
  position: relative;
  background: var(--color-bg-alt);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 2rem 2rem 2.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.feature-tile::before {
  content: counter(feature-counter);
  counter-increment: feature-counter;
  position: absolute;
  bottom: 0.5rem;
  right: 1rem;
  font-family: 'Archivo Black', sans-serif;
  font-size: 3rem;
  color: rgba(193, 81, 43, 0.07);
  line-height: 1;
  pointer-events: none;
  transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-tile:hover {
  transform: translateY(-12px) scale(1.02);
  background: #fff;
  border-color: rgba(232, 134, 74, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.06), 0 0 24px rgba(232, 134, 74, 0.08);
}

.feature-tile:hover::before {
  color: rgba(232, 134, 74, 0.22);
}

.feature-tile__title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.1rem;
  color: var(--color-text);
  margin: 0 0 0.6rem;
  line-height: 1.3;
}

.feature-tile__desc {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
}


/* ==========================================================
   35b. PROCESS TIMELINE (Webseitenbau "Unser Prozess")
   ========================================================== */

/* Timeline container — flex column with equal gaps */
.process-timeline {
  position: relative;
  max-width: 700px;
  margin: 3rem auto 0;
  padding-left: 80px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Vertical gradient line — from first circle to last circle */
.process-timeline::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 25px;
  bottom: 50px;
  width: 2px;
  background: linear-gradient(to bottom, #F09A5E, #E8864A 70%, rgba(232, 134, 74, 0));
  border-radius: 2px;
  filter: drop-shadow(0 0 4px rgba(232, 134, 74, 0.3));
}

/* Each step — equal sizing via flex */
.process-step {
  position: relative;
  padding: 0;
  min-height: 50px;
}

/* Numbered circle on the line — vertically centered to title */
.process-step__number {
  position: absolute;
  left: -80px;
  top: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F09A5E, #E8864A, #C1512B);
  color: #fff;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(232, 134, 74, 0.5), 0 0 48px rgba(240, 154, 94, 0.25), 0 0 80px rgba(193, 81, 43, 0.15);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

.process-step:hover .process-step__number {
  transform: scale(1.12);
  box-shadow: 0 0 32px rgba(232, 134, 74, 0.65), 0 0 64px rgba(240, 154, 94, 0.35), 0 0 100px rgba(193, 81, 43, 0.2);
}

.process-step__title {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #1A1A1A;
  margin: 0 0 0.5rem;
  transition: color 0.3s ease;
}

.process-step:hover .process-step__title {
  color: var(--color-accent, #C1512B);
}

.process-step__text {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.65);
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .feature-tiles {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .feature-tiles--three {
    grid-template-columns: 1fr;
  }

  .feature-tile {
    padding: 1.5rem 1.5rem 2rem;
  }

  .feature-tile::before {
    font-size: 2.5rem;
  }

  .process-timeline {
    padding-left: 60px;
    gap: 2rem;
  }

  .process-timeline::before {
    left: 25px;
    top: 20px;
    bottom: 40px;
  }

  .process-step__number {
    left: -60px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .process-step__title {
    font-size: 1.1rem;
  }
}


/* ==========================================================
   35. TECHNOLOGY FLIP CARDS
   ========================================================== */

.tech-flip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: var(--container-max);
  margin: 2.5rem auto 0;
  padding: 0 var(--container-padding);
  perspective: 1000px;
}

.tech-flip-card {
  height: 200px;
  cursor: pointer;
}

.tech-flip-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--card-radius);
}

.tech-flip-card:hover .tech-flip-card__inner,
.tech-flip-card.is-flipped .tech-flip-card__inner {
  transform: rotateY(180deg);
}

.tech-flip-card__front,
.tech-flip-card__back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--card-radius);
  overflow: hidden;
}

/* Front — glasig mit Tech-Name */
.tech-flip-card__front {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.4s var(--ease-out-expo);
}

.tech-flip-card:hover .tech-flip-card__front,
.tech-flip-card.is-flipped .tech-flip-card__front {
  border-color: rgba(232, 134, 74, 0.25);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08), 0 0 20px rgba(232, 134, 74, 0.06);
}

.tech-flip-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.tech-flip-card__tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  font-weight: 600;
  padding: 0.2rem 0.75rem;
  border-radius: 20px;
  background: rgba(240, 154, 94, 0.1);
  border: 1px solid rgba(212, 98, 47, 0.15);
}

/* Back — Beschreibung */
.tech-flip-card__back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(240, 154, 94, 0.08), rgba(232, 134, 74, 0.04));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(232, 134, 74, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.tech-flip-card__back-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.tech-flip-card__desc {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .tech-flip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .tech-flip-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .tech-flip-card {
    height: 180px;
  }
}


/* ==========================================================
   36. PRICING CARDS (Podcaststudio)
   ========================================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 2rem auto 0;
  padding: 0 var(--container-padding);
  align-items: start;
}

.pricing-card {
  background: var(--color-bg-alt);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--card-radius);
  padding: 2rem 1.75rem 2rem;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease, border-color 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

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

.pricing-card--highlight {
  background: linear-gradient(165deg, rgba(255,255,255,0.98) 0%, rgba(255,243,234,0.95) 100%);
  border-color: rgba(212, 98, 47, 0.2);
  box-shadow: 0 8px 30px rgba(212, 98, 47, 0.08);
}

.pricing-card--highlight:hover {
  box-shadow: 0 24px 48px rgba(212, 98, 47, 0.12);
}

.pricing-card__label {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-accent-glow), var(--color-accent));
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-card__header {
  margin-bottom: 1.25rem;
}

.pricing-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: rgba(212, 98, 47, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-accent);
}

.pricing-card__title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.2rem;
  color: var(--color-text);
  margin: 0 0 0.25rem;
}

.pricing-card__subtitle {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
}

.pricing-card__price {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 1.25rem;
}

.pricing-card__amount {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2rem;
  color: var(--color-accent);
  line-height: 1;
}

.pricing-card__period {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  display: block;
  margin-top: 0.25rem;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  text-align: left;
  flex-grow: 1;
}

.pricing-card__features li {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  padding: 0.4rem 0;
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.5;
}

.pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.5;
}

.pricing-card__extra {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 0 0 1.25rem;
  font-style: italic;
}

.pricing-card .btn {
  width: 100%;
  text-align: center;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}


/* ==========================================================
   37. STUDIO GALLERY
   ========================================================== */

.studio-gallery {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.studio-gallery__large {
  grid-row: span 2;
}

.studio-gallery__large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
}

.studio-gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.studio-gallery__grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  transition: transform 0.4s ease;
}

.studio-gallery__grid img:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .studio-gallery {
    grid-template-columns: 1fr;
  }
  .studio-gallery__large {
    grid-row: span 1;
  }
  .studio-gallery__grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* ==========================================================
   38. FAQ ACCORDION
   ========================================================== */

.faq-item {
  background: var(--color-bg-alt);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-left: 3px solid transparent;
  border-radius: var(--card-radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-item:hover {
  border-color: rgba(0, 0, 0, 0.1);
  border-left-color: rgba(212, 98, 47, 0.3);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transform: translateX(4px);
}

.faq-item[open] {
  background: #fff;
  border-color: rgba(212, 98, 47, 0.15);
  border-left-color: var(--color-accent);
  box-shadow: 0 8px 24px rgba(212, 98, 47, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
  transform: translateX(4px);
}

.faq-item__question {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.95rem;
  color: var(--color-text);
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.3s ease;
}

.faq-item:hover .faq-item__question {
  color: var(--color-accent);
}

.faq-item[open] .faq-item__question {
  color: var(--color-accent);
  padding-bottom: 0.75rem;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::after {
  content: '';
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: rgba(212, 98, 47, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Chevron arrow via borders */
.faq-item__question::after {
  content: '';
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: rgba(212, 98, 47, 0.08);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23D4622F' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-item:hover .faq-item__question::after {
  background-color: rgba(212, 98, 47, 0.14);
}

.faq-item[open] .faq-item__question::after {
  background-color: var(--color-accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E");
  transform: rotate(180deg);
}

.faq-item__answer {
  padding: 0 1.5rem 1.25rem;
  padding-left: 1.75rem;
  border-top: 1px solid rgba(212, 98, 47, 0.08);
  margin-top: 0;
}

.faq-item__answer p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
  padding-top: 1rem;
}


/* ==========================================================
   39. PRINT STYLES
   ========================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  
  }

  .site-header,
  .site-footer,
  .grain-overlay,
  .menu-toggle,
  .hero-video-bg,
  .hero-video-overlay,
  .hero__video,
  .hero__overlay,
  .cta-section .btn,
  .apple-hero__links,
  .apple-section__links,
  .apple-card__links,
  .hero__scroll-indicator,
  .scroll-banner {
    display: none !important;
  }

  .hero,
  .apple-hero {
    min-height: auto;
    padding: 2rem 0;
    background: #fff !important;
  }

  .hero-title,
  .hero__headline,
  .apple-hero__title {
    color: #000 !important;
    font-size: 1.8rem;
  }

  .section,
  .apple-section {
    padding: 2rem 0;
    page-break-inside: avoid;
  }

  a[href]::after {
    content: ' (' attr(href) ')';
    font-size: 0.8em;
    color: #555;
  }

  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }

  .reveal-up,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .reveal-fade {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* ==========================================================
   36. REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-up,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .reveal-fade {
    opacity: 1;
    transform: none;
  }

  .scroll-banner__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
  }

  .scroll-banner__content[aria-hidden="true"] {
    display: none;
  }
}
