/* ==========================================================================
   SAFETYMACHA - ARBEITSSICHERHEIT MIT SYSTEM
   God-Tier Enterprise UI/UX Masterpiece (Linear / Stripe / Apple Caliber)
   Engineered for World-Class Aesthetics, Fluid Motion & Ultra-Responsiveness
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* ==========================================================================
   1. DESIGN TOKENS & SYSTEM VARIABLES
   ========================================================================== */
:root {
  /* Obsidian Deep Black & Enterprise Dark Atmosphere */
  --bg-dark: #07090E;
  --bg-darker: #040508;
  --bg-surface: #0C111C;
  --bg-surface-elevated: #111827;
  
  /* Luminous Glass Cards & Layering */
  --bg-card: rgba(14, 20, 34, 0.75);
  --bg-card-hover: rgba(20, 29, 48, 0.92);
  --bg-card-glass: rgba(10, 15, 26, 0.72);
  --bg-glass-layer: rgba(255, 255, 255, 0.035);
  
  /* Vibrant Industrial Orange (Luminescent Energy) */
  --primary-orange: #FF6B00;
  --primary-orange-hover: #EA580C;
  --primary-orange-light: #FF8A00;
  --primary-orange-bright: #FFA338;
  --primary-orange-glow: rgba(255, 107, 0, 0.45);
  --primary-orange-subtle: rgba(255, 107, 0, 0.12);
  --primary-orange-border: rgba(255, 107, 0, 0.35);

  /* Functional Status Accents */
  --accent-green: #10B981;
  --accent-green-glow: rgba(16, 185, 129, 0.35);
  --accent-cyan: #38BDF8;
  --accent-cyan-glow: rgba(56, 189, 248, 0.3);
  --accent-yellow: #F59E0B;

  /* Typography Color Scale */
  --text-white: #FFFFFF;
  --text-primary: #F8FAFC;
  --text-body: #94A3B8;
  --text-body-bright: #CBD5E1;
  --text-muted: #64748B;
  --text-dark-muted: #475569;
  
  /* High-Tech Borders & Inner Light Reflections */
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-card: rgba(255, 255, 255, 0.09);
  --border-card-hover: rgba(255, 107, 0, 0.5);
  --border-accent: rgba(255, 107, 0, 0.35);
  --border-glow: rgba(255, 107, 0, 0.7);
  --border-inner-light: rgba(255, 255, 255, 0.14);

  /* Typography Stacks */
  --font-heading: 'Outfit', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Geometry & Layout */
  --container-max: 1360px;
  --container-narrow: 1040px;
  --nav-height: 72px;
  --nav-height-mobile: 64px;
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows, Ambient Lighting & Neon Glows */
  --shadow-card: 0 16px 45px -10px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  --shadow-card-hover: 0 25px 65px -10px rgba(0, 0, 0, 0.9), 0 0 35px rgba(255, 107, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  --shadow-glow-orange: 0 0 25px rgba(255, 107, 0, 0.45), 0 4px 16px rgba(234, 88, 12, 0.35);
  --shadow-glow-orange-hover: 0 0 42px rgba(255, 107, 0, 0.8), 0 6px 24px rgba(234, 88, 12, 0.5);

  /* Physics Transitions */
  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   2. RESET & GLOBAL BASE
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-body);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
  letter-spacing: -0.01em;
  min-height: 100vh;
}

/* High-Tech Ambient Diffuse Glows & Micro Grid Pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 88% 10%, rgba(255, 107, 0, 0.09) 0%, transparent 45%),
    radial-gradient(circle at 10% 45%, rgba(56, 189, 248, 0.045) 0%, transparent 40%),
    radial-gradient(circle at 82% 80%, rgba(16, 185, 129, 0.045) 0%, transparent 45%),
    radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 36px 36px;
  pointer-events: none;
  z-index: -1;
}

/* Custom Selection & Scrollbar */
::selection {
  background: rgba(255, 107, 0, 0.38);
  color: #FFFFFF;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #07090E;
}

::-webkit-scrollbar-thumb {
  background: #1E293B;
  border-radius: var(--radius-full);
  border: 2px solid #07090E;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-orange);
}

/* ==========================================================================
   3. TYPOGRAPHY & GRADIENT MASKS
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-white);
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

h1 {
  font-size: clamp(2.15rem, 5.2vw + 0.8rem, 4.1rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h2 {
  font-size: clamp(1.65rem, 3.2vw + 0.5rem, 2.75rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: clamp(1.2rem, 2vw + 0.3rem, 1.65rem);
  letter-spacing: -0.015em;
}

h4 {
  font-size: clamp(1.02rem, 1.2vw + 0.2rem, 1.25rem);
}

p {
  color: var(--text-body);
  font-size: clamp(0.95rem, 0.4vw + 0.85rem, 1.05rem);
  line-height: 1.68;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
  touch-action: manipulation;
}

ul {
  list-style: none;
}

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

/* Layout Containers */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6.5rem 0;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.section-alt {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.section-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.45), transparent);
}

.section-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 3.5rem;
}

/* Badges & Pills */
.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.15rem;
  background: var(--primary-orange-subtle);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
  color: var(--primary-orange-bright);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 14px rgba(255, 107, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.badge-green {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--accent-green);
  box-shadow: 0 2px 14px rgba(16, 185, 129, 0.18);
}

.section-title {
  margin-bottom: 1.15rem;
  background: linear-gradient(180deg, #FFFFFF 20%, #E2E8F0 75%, #94A3B8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(0.98rem, 1vw + 0.75rem, 1.15rem);
  color: var(--text-body-bright);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

.highlight-orange {
  background: linear-gradient(135deg, #FFA338 0%, #FF6B00 50%, #EA580C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 14px rgba(255, 107, 0, 0.45));
  display: inline;
}

/* ==========================================================================
   4. BUTTONS SYSTEM (SHIMMER & GLOW)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: 1px solid transparent;
  text-align: center;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  box-sizing: border-box;
  touch-action: manipulation;
  min-height: 48px;
}

.btn-primary {
  background: linear-gradient(135deg, #FF8A00 0%, #FF6B00 50%, #EA580C 100%);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: var(--shadow-glow-orange);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: 0.6s ease;
}

.btn-primary:hover::before {
  left: 140%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #FFA338 0%, #FF8A00 50%, #FF6B00 100%);
  box-shadow: var(--shadow-glow-orange-hover);
  border-color: rgba(255, 255, 255, 0.4);
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border: 1px solid var(--border-card);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-outline-orange {
  background: rgba(255, 107, 0, 0.05);
  color: var(--primary-orange-bright);
  border: 1px solid var(--border-accent);
}

.btn-outline-orange:hover {
  background: var(--primary-orange-subtle);
  border-color: var(--primary-orange);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.25);
}

.btn-sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.86rem;
  border-radius: var(--radius-xs);
  min-height: 40px;
}

.btn-lg {
  padding: 1.05rem 2.25rem;
  font-size: 1.08rem;
  border-radius: var(--radius-md);
  min-height: 52px;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ==========================================================================
   5. HEADER & FLOATING NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(7, 9, 14, 0.85);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-smooth);
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), rgba(255, 107, 0, 0.45), rgba(255, 255, 255, 0.1), transparent);
}

.site-header.scrolled {
  background: rgba(4, 5, 8, 0.96);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
  border-bottom-color: rgba(255, 107, 0, 0.25);
}

.site-header .nav-container,
.nav-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  height: 42px;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-logo:hover {
  transform: scale(1.02);
}

.brand-logo img {
  height: 38px;
  width: 145px;
  aspect-ratio: 420 / 120;
  object-fit: contain;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-shrink: 1;
}

.nav-link {
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-xs);
  transition: all var(--transition-fast);
  position: relative;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav-link:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
  color: #FFFFFF;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.28);
  box-shadow: 0 0 12px rgba(255, 107, 0, 0.15);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

/* Language Switcher Pill (DE / EN) */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  background: rgba(14, 20, 34, 0.85);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 2px;
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  letter-spacing: 0.04em;
  line-height: 1;
  touch-action: manipulation;
}

.lang-btn:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

.lang-btn.active {
  background: var(--primary-orange);
  color: #FFFFFF;
  box-shadow: 0 0 12px rgba(255, 107, 0, 0.45);
}

.mobile-lang-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.nav-actions .btn-sm {
  padding: 0.45rem 1.05rem;
  font-size: 0.84rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-phone-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--primary-orange-bright);
  font-size: 0.82rem;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border-accent);
  background: rgba(255, 107, 0, 0.08);
  backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
  min-height: 38px;
}

.nav-phone-btn:hover {
  background: var(--primary-orange);
  color: #FFFFFF;
  border-color: var(--primary-orange);
  box-shadow: 0 4px 18px rgba(255, 107, 0, 0.4);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-card);
  color: var(--text-white);
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-xs);
  transition: all var(--transition-fast);
  touch-action: manipulation;
}

.mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-accent);
}

.mobile-nav-drawer {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  width: 100%;
  height: calc(100dvh - var(--nav-height));
  background: rgba(7, 9, 14, 0.98);
  backdrop-filter: blur(25px);
  padding: 1.75rem 1.25rem 3rem;
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
  overflow-y: auto;
  overscroll-behavior: contain;
  z-index: 999;
  border-top: 1px solid var(--border-subtle);
}

.mobile-nav-drawer.open {
  transform: translateX(0);
}

.mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 2rem;
}

.mobile-menu-list .nav-link {
  font-size: 1.1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
  display: block;
  white-space: normal;
  min-height: 48px;
  display: flex;
  align-items: center;
}

/* ==========================================================================
   6. HERO SECTION
   ========================================================================== */
.hero-section {
  padding-top: calc(var(--nav-height) + 3.5rem);
  padding-bottom: 5.5rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

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

.hero-title {
  margin-bottom: 1.5rem;
  background: linear-gradient(180deg, #FFFFFF 20%, #E2E8F0 70%, #94A3B8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
}

.hero-lead {
  color: var(--text-body-bright);
  margin-bottom: 2.25rem;
  max-width: 630px;
}

.hero-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
}

.pillar-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-card);
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  color: #E2E8F0;
  font-weight: 600;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: all var(--transition-fast);
}

.pillar-pill:hover {
  background: rgba(255, 107, 0, 0.08);
  border-color: var(--primary-orange-border);
  transform: translateY(-2px);
}

.pillar-pill .icon {
  color: var(--primary-orange);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--border-subtle);
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-subtle);
}

.trust-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-xs);
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(16, 185, 129, 0.25);
}

.trust-text h4 {
  font-size: 0.92rem;
  color: var(--text-white);
  margin-bottom: 0.15rem;
  font-weight: 700;
}

.trust-text p {
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--text-muted);
}

/* Hero Media Frame */
.hero-media {
  position: relative;
  width: 100%;
}

.hero-card-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-card);
  background: var(--bg-card);
  width: 100%;
}

.hero-card-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 14, 0) 35%, rgba(7, 9, 14, 0.95) 100%);
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--transition-smooth);
}

.hero-card-wrapper:hover .hero-image {
  transform: scale(1.025);
}

.hero-card-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 3;
}

.hero-quote-box {
  background: rgba(12, 17, 28, 0.85);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border-accent);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero-quote-box .quote-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--primary-orange-bright);
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
  display: block;
}

.hero-quote-box p {
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
}

.hero-floating-badge {
  position: absolute;
  top: -12px;
  right: 15px;
  background: rgba(12, 17, 28, 0.92);
  border: 1px solid var(--border-accent);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 4;
}

.hero-floating-badge .dot-pulse {
  width: 10px;
  height: 10px;
  background: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Quick Audit Strip */
.quick-audit-bar {
  background: linear-gradient(90deg, #0C111C 0%, #111827 50%, #0C111C 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.75rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.quick-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.quick-bar-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.quick-bar-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-orange-subtle);
  border: 1px solid var(--border-accent);
  color: var(--primary-orange-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.25);
}

.quick-bar-left h3 {
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.quick-bar-left p {
  font-size: 0.92rem;
  color: var(--text-body-bright);
  margin: 0;
}

/* ==========================================================================
   7. PHILOSOPHY & ABOUT
   ========================================================================== */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.75rem;
  align-items: center;
}

.philosophy-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card);
  background: var(--bg-card);
}

.philosophy-image-frame img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.philosophy-image-frame:hover img {
  transform: scale(1.025);
}

.role-notice-card {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.08) 0%, rgba(14, 20, 34, 0.85) 100%);
  border-left: 4px solid var(--primary-orange);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
  border-top: 1px solid var(--border-subtle);
  border-right: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.role-notice-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--primary-orange-bright);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.role-notice-card p {
  font-size: 0.95rem;
  color: var(--text-body-bright);
  line-height: 1.6;
}

.philosophy-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.philo-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.philo-point .icon-wrap {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-xs);
  background: rgba(255, 107, 0, 0.15);
  color: var(--primary-orange-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.philo-point h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.philo-point p {
  font-size: 0.85rem;
}

/* ==========================================================================
   8. SERVICES SECTION (BENTO GRID)
   ========================================================================== */
.services-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 3.5rem;
}

.tab-btn {
  background: rgba(14, 20, 34, 0.75);
  border: 1px solid var(--border-card);
  color: var(--text-body);
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  backdrop-filter: blur(10px);
  touch-action: manipulation;
  min-height: 44px;
}

.tab-btn:hover {
  color: var(--text-white);
  border-color: var(--border-accent);
  background: var(--bg-surface-elevated);
}

.tab-btn.active {
  background: var(--primary-orange);
  color: #FFFFFF;
  border-color: var(--primary-orange);
  box-shadow: 0 4px 20px var(--primary-orange-glow);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.85rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.6), transparent);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-card-hover);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-card-hover);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.service-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--primary-orange-subtle);
  border: 1px solid var(--border-accent);
  color: var(--primary-orange-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(255, 107, 0, 0.22);
}

.service-icon-box.green {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.35);
  color: var(--accent-green);
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.22);
}

.service-icon-box.blue {
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.35);
  color: var(--accent-cyan);
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.22);
}

.service-card h3 {
  font-size: 1.25rem;
  line-height: 1.3;
}

.service-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-body-bright);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.25rem;
}

.service-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-body-bright);
}

.service-features-list li .icon {
  color: var(--primary-orange);
  width: 1rem;
  height: 1rem;
  margin-top: 0.2rem;
}

.service-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.service-action-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary-orange-bright);
  cursor: pointer;
  transition: all var(--transition-fast);
  min-height: 40px;
}

.service-action-link:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

/* Flagship Box */
.flagship-box {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.08) 0%, rgba(14, 20, 34, 0.95) 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 3.25rem;
  margin-top: 4.5rem;
  position: relative;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
}

.flagship-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.flagship-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
  margin: 1.75rem 0;
}

.flagship-step-card {
  background: rgba(7, 9, 14, 0.65);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: all var(--transition-fast);
}

.flagship-step-card:hover {
  border-color: var(--border-accent);
  background: rgba(7, 9, 14, 0.9);
  transform: translateY(-2px);
}

.step-num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--primary-orange);
  width: 30px;
  height: 30px;
  background: var(--primary-orange-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* Showcase Banners */
.showcase-banner {
  background: linear-gradient(135deg, rgba(20, 29, 48, 0.92) 0%, rgba(7, 9, 14, 0.98) 100%);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 3.5rem 0;
  box-shadow: var(--shadow-card);
}

.showcase-banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.showcase-banner-img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  display: block;
}

.showcase-banner-content {
  padding: 3rem 2.5rem;
}

.showcase-banner-content h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  margin-bottom: 1rem;
}

.showcase-banner-content p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-body-bright);
}

.showcase-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.showcase-features-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #E2E8F0;
  font-weight: 500;
}

.showcase-features-list li .icon {
  color: var(--primary-orange);
}

/* Inspection & Environmental Section */
.inspection-audit-box {
  background: linear-gradient(135deg, rgba(14, 20, 34, 0.95) 0%, rgba(7, 9, 14, 0.95) 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 4rem 0 2rem;
  box-shadow: var(--shadow-card);
}

.inspection-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
}

.inspection-media {
  position: relative;
  overflow: hidden;
}

.inspection-media img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.inspection-content {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ==========================================================================
   9. PRAXIS & FLYER GALERIE
   ========================================================================== */
.flyer-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.flyer-card {
  background: linear-gradient(180deg, rgba(18, 25, 42, 0.88) 0%, rgba(10, 14, 24, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
  position: relative;
  display: flex;
  flex-direction: column;
}

.flyer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 0, 0.55);
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.85), 0 0 35px rgba(255, 107, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.flyer-image-wrap {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 480px;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flyer-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition-smooth), filter var(--transition-smooth);
}

.flyer-card:hover .flyer-image-wrap img {
  transform: scale(1.035);
  filter: brightness(1.05);
}

.flyer-image-wrap::after {
  content: '🔍 Vollbild-Ansicht';
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background: rgba(7, 9, 14, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-full);
  opacity: 0.9;
  transition: all var(--transition-fast);
}

.flyer-card:hover .flyer-image-wrap::after {
  opacity: 1;
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  box-shadow: 0 4px 18px rgba(255, 107, 0, 0.45);
  transform: translateY(-2px);
}

.flyer-body {
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.flyer-body h4 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
  letter-spacing: -0.015em;
}

.flyer-body p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-body-bright);
  flex-grow: 1;
}

/* ==========================================================================
   10. PROCESS PIPELINE
   ========================================================================== */
.pipeline-wrapper {
  position: relative;
  margin-top: 3.5rem;
}

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

.pipeline-step {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  position: relative;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
}

.pipeline-step:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

.pipeline-step-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--primary-orange);
  opacity: 0.45;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.pipeline-step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.pipeline-step p {
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ==========================================================================
   11. INDUSTRIES GRID
   ========================================================================== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
}

.industry-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.industry-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-orange-subtle);
  border: 1px solid var(--border-accent);
  color: var(--primary-orange-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.industry-info h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.industry-info p {
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-body-bright);
}

/* ==========================================================================
   12. PRICING SECTION
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
}

.pricing-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(24, 35, 60, 0.95) 0%, rgba(14, 20, 34, 0.98) 100%);
  border-color: var(--primary-orange);
  box-shadow: 0 20px 50px rgba(255, 107, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transform: scale(1.02);
}

.pricing-card.featured .popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-orange);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.4rem 1.15rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 18px rgba(255, 107, 0, 0.45);
}

.pricing-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-body-bright);
  margin-bottom: 1.5rem;
  min-height: 42px;
}

.price-box {
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.price-main {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-white);
}

.price-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #E2E8F0;
}

.pricing-features li .icon {
  color: var(--accent-green);
}

/* Extra Costs */
.extra-costs-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.extra-costs-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.extra-costs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.extra-cost-item {
  background: rgba(7, 9, 14, 0.65);
  border: 1px solid var(--border-subtle);
  padding: 1.25rem;
  border-radius: var(--radius-md);
}

.extra-cost-item h4 {
  font-size: 0.95rem;
  color: var(--primary-orange-bright);
  margin-bottom: 0.35rem;
}

.extra-cost-item p {
  font-size: 0.85rem;
  line-height: 1.45;
}

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

.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-card);
}

.case-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
}

.case-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-orange-bright);
  background: var(--primary-orange-subtle);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.case-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

.case-flow {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.case-step {
  padding-left: 1rem;
  border-left: 2px solid var(--border-subtle);
}

.case-step.problem { border-left-color: #EF4444; }
.case-step.solution { border-left-color: var(--primary-orange); }
.case-step.result { border-left-color: var(--accent-green); }

.case-step h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.case-step.problem h4 { color: #F87171; }
.case-step.solution h4 { color: var(--primary-orange-bright); }
.case-step.result h4 { color: var(--accent-green); }

.case-step p {
  font-size: 0.88rem;
  line-height: 1.45;
}

/* ==========================================================================
   13. DOWNLOADS & RESOURCES
   ========================================================================== */
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.85rem;
}

.download-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
}

.download-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-card-hover);
}

.download-icon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.download-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-green);
  background: rgba(16, 185, 129, 0.12);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.download-card h3 {
  font-size: 1.18rem;
  margin-bottom: 0.5rem;
}

.download-card p {
  font-size: 0.9rem;
  color: var(--text-body-bright);
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

/* ==========================================================================
   14. CONTACT SECTION & FORMS
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.75rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-card-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-card);
  min-height: 52px;
}

.contact-item:hover {
  border-color: var(--primary-orange);
  background: var(--bg-card-hover);
  transform: translateX(4px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-orange-subtle);
  color: var(--primary-orange-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(255, 107, 0, 0.22);
}

.contact-item h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.contact-item .value {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
}

.form-wrapper {
  background: linear-gradient(180deg, rgba(18, 25, 42, 0.92) 0%, rgba(10, 14, 24, 0.96) 100%);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.85rem 2.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.form-wrapper h3 {
  font-size: 1.55rem;
  margin-bottom: 0.5rem;
}

.form-wrapper p {
  font-size: 0.95rem;
  color: var(--text-body-bright);
  margin-bottom: 2rem;
}

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

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #E2E8F0;
  margin-bottom: 0.5rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(7, 9, 14, 0.88);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.15rem;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 16px; /* Prevents auto-zoom on iOS Safari */
  transition: all var(--transition-fast);
  min-height: 48px;
}

.form-textarea {
  min-height: 110px;
  resize: vertical;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px var(--primary-orange-glow);
  background: rgba(12, 17, 28, 0.96);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.services-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: #CBD5E1;
  background: rgba(7, 9, 14, 0.6);
  border: 1px solid var(--border-subtle);
  padding: 0.75rem 0.95rem;
  border-radius: var(--radius-xs);
  cursor: pointer;
  transition: all var(--transition-fast);
  min-height: 48px;
  touch-action: manipulation;
}

.checkbox-label:hover {
  border-color: var(--border-accent);
  background: rgba(255, 107, 0, 0.06);
}

.checkbox-label input[type="checkbox"] {
  accent-color: var(--primary-orange);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.form-checkbox-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 1rem;
  margin-bottom: 1.75rem;
}

.form-checkbox-consent input {
  margin-top: 0.2rem;
  accent-color: var(--primary-orange);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ==========================================================================
   15. FOOTER
   ========================================================================== */
.site-footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-subtle);
  padding: 5.5rem 0 2.5rem;
  position: relative;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  font-size: 0.92rem;
  color: var(--text-body-bright);
  margin: 1rem 0 1.5rem;
  max-width: 320px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  color: #FFFFFF;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--primary-orange-bright);
  transform: translateX(3px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-dark-muted);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a:hover {
  color: var(--text-white);
}

/* ==========================================================================
   16. SCROLL REVEAL & BACK TO TOP
   ========================================================================== */
.reveal-init {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(14, 20, 34, 0.85);
  border: 1px solid var(--border-accent);
  color: var(--primary-orange-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  z-index: 900;
  touch-action: manipulation;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-orange);
  color: #FFFFFF;
  border-color: var(--primary-orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(255, 107, 0, 0.4);
}

/* ==========================================================================
   17. ULTRA-RESPONSIVE MEDIA QUERIES (MOBILE-FIRST BREAKPOINTS)
   ========================================================================== */

/* Laptops & Narrow Desktops (<= 1240px) */
@media (max-width: 1240px) {
  .nav-menu, .nav-actions .btn, .nav-phone-btn {
    display: none;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pricing-grid {
    gap: 1.5rem;
  }
}

/* Tablets Landscape (<= 1040px) */
@media (max-width: 1040px) {
  .hero-grid,
  .philosophy-grid,
  .flagship-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }

  .hero-media {
    max-width: 650px;
    margin: 0 auto;
  }

  .hero-image {
    height: 420px;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto 3.5rem;
  }

  .pricing-card.featured {
    transform: none;
  }

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

/* Tablets Portrait (<= 920px) */
@media (max-width: 920px) {
  .showcase-banner-grid,
  .inspection-grid,
  .flyer-gallery-grid {
    grid-template-columns: 1fr;
  }

  .inspection-content,
  .showcase-banner-content {
    padding: 2.5rem 1.75rem;
  }

  .flyer-image-wrap {
    height: 380px;
  }

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

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

/* Mobile Devices (<= 768px) */
@media (max-width: 768px) {
  .back-to-top {
    bottom: calc(75px + env(safe-area-inset-bottom, 0px));
    right: 1.25rem;
  }
}

/* Standard Smartphones (<= 640px) */
@media (max-width: 640px) {
  .section {
    padding: 3.75rem 0;
  }

  .site-header {
    height: var(--nav-height-mobile);
  }

  .site-header .nav-container {
    padding: 0 1rem;
  }

  .brand-logo img {
    height: 34px;
    width: 125px;
    min-width: 125px;
  }

  .hero-section {
    padding-top: calc(var(--nav-height-mobile) + 1.5rem);
    padding-bottom: 3.5rem;
  }

  .hero-pillars {
    gap: 0.5rem;
  }

  .pillar-pill {
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .hero-image {
    height: 320px;
  }

  .hero-quote-box {
    padding: 1rem 1.15rem;
  }

  .hero-floating-badge {
    top: 10px;
    right: 10px;
    padding: 0.5rem 0.85rem;
    font-size: 0.78rem;
  }

  .flyer-image-wrap {
    height: 320px;
  }

  .flyer-body {
    padding: 1.5rem 1.25rem;
  }

  .pipeline-timeline {
    grid-template-columns: 1fr;
  }

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

  .service-card {
    padding: 1.75rem 1.25rem;
  }

  .flagship-box {
    padding: 2rem 1.25rem;
  }

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

  .pricing-card {
    padding: 2.25rem 1.5rem;
  }

  .form-wrapper {
    padding: 2rem 1.25rem;
  }

  .form-row-2,
  .services-checkbox-grid,
  .philosophy-points {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-legal-links {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* Small Smartphones (<= 480px) */
@media (max-width: 480px) {
  .container, .container-narrow {
    padding: 0 1rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.92rem;
  }

  .btn-lg {
    padding: 0.85rem 1.35rem;
    font-size: 0.96rem;
  }

  .quick-bar-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .badge-tag {
    font-size: 0.75rem;
    padding: 0.35rem 0.85rem;
  }

  .extra-costs-card {
    padding: 1.75rem 1.25rem;
  }
}
