@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --concrete-warm: #F5F3F0;
  --steel-gray: #E8E6E3;
  --safety-orange: #E85D04;
  --orange-light: #F56E1A;
  --asphalt-charcoal: #3D3D3C;
  --lime-highlight: #8A9A5B;
  --warm-white: #FAFAF8;
  --charcoal: #4A4A49;
  --light-steel: #9A9A97;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --shadow-sm: 0 4px 16px rgba(61,61,60,0.06);
  --shadow-md: 0 12px 40px rgba(61,61,60,0.08);
  --shadow-lg: 0 16px 48px rgba(61,61,60,0.1);
  --shadow-xl: 0 20px 56px rgba(61,61,60,0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition-fast: 0.2s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--concrete-warm);
  color: var(--charcoal);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

strong, p {
  color: inherit;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 48px;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245,243,240,0.95);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid rgba(232,93,4,0.12);
  padding: 20px 48px;
  transition: var(--transition-slow);
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg stroke='%23E85D04' stroke-opacity='0.05' stroke-width='1'%3E%3Cpath d='M0 0h60v60H0z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.site-header.scrolled {
  padding: 12px 40px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--asphalt-charcoal);
}

.logo-subtitle {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--light-steel);
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-command-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(232,93,4,0.08);
  border: 1px solid rgba(232,93,4,0.15);
  color: var(--safety-orange);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.header-command-btn:hover {
  background: rgba(232,93,4,0.12);
  box-shadow: 0 4px 16px rgba(232,93,4,0.1);
}

.header-command-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5px;
}

.command-shortcut {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(232,93,4,0.5);
  background: rgba(232,93,4,0.06);
  padding: 2px 6px;
  border-radius: 4px;
}

.header-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--safety-orange), var(--orange-light));
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.01em;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(232,93,4,0.25);
  transition: var(--transition-base);
  white-space: nowrap;
}

.header-cta-btn:hover {
  box-shadow: 0 8px 28px rgba(232,93,4,0.35);
  transform: translateY(-2px);
}

.command-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(245,243,240,0.98);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg stroke='%23E85D04' stroke-opacity='0.04' stroke-width='1'%3E%3Cpath d='M0 0h80v80H0z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.command-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.command-modal-close {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  color: var(--safety-orange);
}

.command-modal-close:hover {
  background: rgba(232,93,4,0.06);
}

.command-modal-close svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5px;
}

.command-modal-content {
  width: 100%;
  max-width: 560px;
  padding: 40px;
}

.command-nav-item {
  width: 100%;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-fast);
  color: var(--asphalt-charcoal);
}

.command-nav-item:hover {
  background: rgba(232,93,4,0.06);
}

.command-nav-item svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5px;
  color: var(--light-steel);
}

.command-nav-item span {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
}

.command-nav-item .nav-arrow {
  width: 16px;
  height: 16px;
}

.command-divider {
  height: 1px;
  background: rgba(232,93,4,0.1);
  margin: 16px 0;
}

.command-contact-info {
  text-align: center;
  padding-top: 24px;
}

.command-contact-phone {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--safety-orange);
  margin-bottom: 8px;
}

.command-contact-address {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--charcoal);
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--asphalt-charcoal);
}

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5px;
}

.mobile-nav-overlay {
  display: none;
}

@media (max-width: 1024px) {
  .site-header {
    padding: 16px 24px;
  }
  
  .header-actions {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-nav-overlay.active {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(245,243,240,0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
  }
  
  .mobile-nav-item {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 32px;
    color: var(--asphalt-charcoal);
    padding: 14px 32px;
    text-align: center;
  }
  
  .mobile-nav-line {
    height: 2px;
    width: 40px;
    background: var(--safety-orange);
    margin: 0 auto 14px;
  }
  
  .mobile-nav-contact {
    padding-top: 40px;
    text-align: center;
  }
  
  .mobile-nav-phone {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--safety-orange);
    margin-bottom: 8px;
  }
  
  .mobile-nav-address {
    font-size: 14px;
    color: var(--charcoal);
  }
  
  .mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--safety-orange);
  }
  
  .mobile-nav-close svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5px;
  }
}

.hero-section {
  min-height: 100vh;
  background: var(--steel-gray);
  position: relative;
  overflow: hidden;
  padding: 140px clamp(20px, 5vw, 80px) 80px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 120px 24px 60px;
    min-height: auto;
  }
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(232,93,4,0.2);
  animation: particleFloat 12s ease-in-out infinite alternate;
}

@keyframes particleFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.hero-glow {
  position: absolute;
  top: 20%;
  right: 15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,93,4,0.08) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(232,93,4,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,93,4,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 4vw, 48px);
  max-width: min(1280px, 100vw - 40px);
  margin: 0 auto;
}

.hero-left {
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 1024px) {
  .hero-left {
    grid-column: span 12;
    text-align: center;
    align-items: center;
  }
}

.hero-corner-decor {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}

.hero-corner-decor svg {
  width: 100%;
  height: 100%;
  stroke: rgba(232,93,4,0.5);
  stroke-width: 3;
  fill: none;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 60px;
  line-height: 0.88;
  letter-spacing: -0.01em;
  color: var(--asphalt-charcoal);
  max-width: 480px;
  animation: heroReveal 0.7s ease-out;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 40px;
  }
}

@keyframes heroReveal {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0% 0 0);
  }
}

.hero-subtitle {
  font-size: 17px;
  color: #6A6A68;
  line-height: 1.75;
  max-width: 440px;
  margin-top: 20px;
  animation: fadeIn 0.6s ease-out 0.4s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-markers {
  display: flex;
  gap: 8px;
  margin-top: 32px;
  animation: scaleIn 0.4s ease-out 0.3s both;
}

@keyframes scaleIn {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.hero-marker {
  width: 8px;
  height: 8px;
  background: var(--safety-orange);
  border-radius: 2px;
  filter: drop-shadow(0 4px 12px rgba(232,93,4,0.25));
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  animation: scaleIn 0.4s ease-out 0.6s both;
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 20px 44px;
  background: linear-gradient(135deg, var(--safety-orange), var(--orange-light));
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 28px rgba(232,93,4,0.25);
  transition: var(--transition-base);
  white-space: nowrap;
}

.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(232,93,4,0.35);
  transform: translateY(-3px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 18px 36px;
  background: transparent;
  border: 2px solid var(--asphalt-charcoal);
  color: var(--asphalt-charcoal);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: var(--safety-orange);
  color: var(--safety-orange);
}

.hero-right {
  grid-column: span 7;
  position: relative;
  height: 520px;
}

@media (max-width: 1024px) {
  .hero-right {
    display: none;
  }
}

.hero-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  height: 100%;
  animation: bentoReveal 0.8s ease-out 0.2s both;
}

@keyframes bentoReveal {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.bento-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.bento-item-large {
  grid-row: span 2;
}

.bento-item-tall {
  grid-row: span 1;
}

.hero-stat-card {
  position: absolute;
  background: rgba(250,250,248,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(232,93,4,0.1);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  animation: cardReveal 0.6s ease-out both;
  z-index: 10;
}

.hero-stat-card:nth-child(2) {
  top: 40px;
  right: 0px;
  animation-delay: 0.5s;
}

.hero-stat-card:nth-child(3) {
  bottom: 40px;
  right: 0px;
  animation-delay: 0.6s;
}

@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-card-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--asphalt-charcoal);
}

.stat-card-value {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--safety-orange);
  margin-top: 2px;
}

.page-hero {
  background: var(--concrete-warm);
  min-height: 280px;
  position: relative;
  overflow: hidden;
  padding: 120px 40px 60px;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 100px 24px 40px;
    min-height: 220px;
  }
}

.page-hero-particles {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.page-breadcrumbs {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--light-steel);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  animation: fadeIn 0.5s ease-out;
}

.page-title-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-title-decor {
  width: 24px;
  height: 24px;
  display: inline-block;
}

.page-title-decor svg {
  width: 100%;
  height: 100%;
  stroke: var(--safety-orange);
  stroke-width: 3;
  transform: rotate(-45deg);
}

.page-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 44px;
  color: var(--asphalt-charcoal);
  animation: slideFromLeft 0.6s ease-out;
}

@media (max-width: 768px) {
  .page-title {
    font-size: 32px;
  }
}

@keyframes slideFromLeft {
  from {
    transform: translateX(-24px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.page-title-markers {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  animation: scaleIn 0.4s ease-out 0.2s both;
}

.page-marker {
  width: 6px;
  height: 6px;
  background: var(--safety-orange);
  border-radius: 2px;
}

.section {
  padding: 100px 0;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}

.section-dark {
  background: var(--asphalt-charcoal);
}

.section-gray {
  background: var(--steel-gray);
}

.section-light {
  background: var(--concrete-warm);
}

.section-divider {
  height: 1px;
  background: rgba(232,93,4,0.08);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

@media (max-width: 768px) {
  .section-header {
    margin-bottom: 40px;
  }
}

.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--safety-orange);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  color: var(--asphalt-charcoal);
  line-height: 1.1;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
}

.section-title-light {
  color: white;
}

.section-subtitle {
  font-size: 16px;
  color: #6A6A68;
  margin-top: 16px;
  line-height: 1.7;
}

.section-subtitle-light {
  color: rgba(255,255,255,0.7);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

.reveal-fade.visible {
  opacity: 1;
}

.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.reveal-swiss {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal-swiss.visible {
  opacity: 1;
  transform: scale(1);
}

.node-graph-section {
  background: var(--steel-gray);
  position: relative;
}

.node-graph-container {
  position: relative;
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.node-graph-center {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(232,93,4,0.08);
  border: 2px solid var(--safety-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.node-graph-center svg {
  width: 64px;
  height: 64px;
  stroke: var(--asphalt-charcoal);
  stroke-width: 2;
  fill: none;
}

.node-graph-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.node-graph-lines svg {
  width: 100%;
  height: 100%;
}

.node-graph-line {
  stroke: rgba(232,93,4,0.15);
  stroke-width: 2;
  fill: none;
}

.node-graph-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  width: 100%;
  position: relative;
  z-index: 3;
}

@media (max-width: 1024px) {
  .node-graph-container {
    min-height: auto;
    padding: 20px;
  }
  
  .node-graph-center {
    display: none;
  }
  
  .node-graph-items {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .node-graph-line {
    display: none;
  }
}

.node-item {
  background: rgba(250,250,248,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(232,93,4,0.08);
  padding: 24px 28px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.node-item:hover {
  transform: scale(1.08);
  border-color: rgba(232,93,4,0.25);
  box-shadow: 0 20px 56px rgba(232,93,4,0.1);
  z-index: 10;
  position: relative;
}

.node-item-icon {
  margin-bottom: 12px;
}

.node-item-icon svg {
  width: 44px;
  height: 44px;
  stroke: var(--safety-orange);
  stroke-width: 2;
  fill: none;
}

.node-item-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--asphalt-charcoal);
  margin-bottom: 6px;
}

.node-item-text {
  font-size: 13px;
  color: #6A6A68;
  line-height: 1.6;
}

.split-section {
  background: var(--concrete-warm);
  position: relative;
  overflow: hidden;
}

.split-container {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 560px;
}

@media (max-width: 1024px) {
  .split-container {
    grid-template-columns: 1fr;
  }
}

.split-divider {
  position: absolute;
  left: 55%;
  top: 0;
  height: 100%;
  width: 2px;
  background: linear-gradient(180deg, var(--safety-orange), var(--lime-highlight), var(--safety-orange));
}

@media (max-width: 1024px) {
  .split-divider {
    display: none;
  }
}

.split-left {
  position: relative;
  overflow: hidden;
}

.split-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.split-left-decor {
  position: absolute;
  bottom: 40px;
  left: 40px;
}

.split-left-decor svg {
  width: 60px;
  height: 60px;
  stroke: rgba(232,93,4,0.3);
  stroke-width: 2;
  fill: none;
}

.split-right {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 1024px) {
  .split-right {
    padding: 60px 24px;
  }
}

.split-corner-decor {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}

.split-corner-decor svg {
  width: 100%;
  height: 100%;
  stroke: rgba(232,93,4,0.4);
  stroke-width: 3;
  fill: none;
}

.split-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  color: var(--asphalt-charcoal);
  line-height: 1.2;
}

.split-text {
  font-size: 15px;
  color: #5A5A58;
  line-height: 1.8;
  margin-top: 20px;
}

.split-cta {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--safety-orange), var(--orange-light));
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(232,93,4,0.2);
  transition: var(--transition-base);
  margin-top: 32px;
  width: fit-content;
}

.split-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,93,4,0.3);
}

.sticky-section {
  background: var(--steel-gray);
}

.sticky-container {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 100vh;
}

@media (max-width: 1024px) {
  .sticky-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

.sticky-left {
  position: sticky;
  top: 0;
  height: 100vh;
  background: rgba(250,250,248,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-right: 1px solid rgba(232,93,4,0.08);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 1024px) {
  .sticky-left {
    position: relative;
    height: auto;
    padding: 40px 24px;
  }
}

.sticky-decor {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
}

.sticky-decor svg {
  width: 100%;
  height: 100%;
  stroke: rgba(232,93,4,0.4);
  stroke-width: 2;
  fill: none;
}

.sticky-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  color: var(--asphalt-charcoal);
  line-height: 1.2;
}

.sticky-subtitle {
  font-size: 15px;
  color: #6A6A68;
  line-height: 1.8;
  margin-top: 16px;
}

.sticky-cta {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--safety-orange), var(--orange-light));
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(232,93,4,0.2);
  transition: var(--transition-base);
  margin-top: 32px;
  width: fit-content;
}

.sticky-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,93,4,0.3);
}

.sticky-right {
  padding: 80px;
}

@media (max-width: 1024px) {
  .sticky-right {
    padding: 40px 24px;
  }
}

.process-step {
  padding: 24px;
  border-bottom: 1px solid rgba(232,93,4,0.08);
  background: rgba(250,250,248,0.8);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  transition: var(--transition-base);
  display: flex;
  gap: 20px;
}

.process-step:hover {
  background: rgba(250,250,248,0.98);
  box-shadow: 0 8px 32px rgba(232,93,4,0.08);
  transform: translateX(8px);
}

.process-step-icon {
  flex-shrink: 0;
}

.process-step-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--safety-orange);
  stroke-width: 2;
  fill: none;
}

.process-step-content {
  flex: 1;
}

.process-step-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--asphalt-charcoal);
}

.process-step-text {
  font-size: 14px;
  color: #6A6A68;
  margin-top: 4px;
}

.process-step-image {
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-top: 16px;
  filter: saturate(1.05);
}

.process-step-decor {
  height: 3px;
  width: 40px;
  background: var(--safety-orange);
  border-radius: 3px;
  margin-top: 12px;
}

.overlapping-section {
  background: var(--asphalt-charcoal);
  padding: 100px 80px;
  overflow: visible;
}

@media (max-width: 768px) {
  .overlapping-section {
    padding: 60px 24px;
  }
}

.overlapping-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  position: relative;
}

.overlapping-card {
  width: 300px;
  background: rgba(250,250,248,0.98);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--safety-orange);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  overflow: hidden;
  transition: var(--transition-slow);
  margin-left: -32px;
}

.overlapping-card:first-child {
  margin-left: 0;
}

@media (max-width: 768px) {
  .overlapping-card {
    margin-left: 0;
    width: 100%;
    max-width: 320px;
  }
}

.overlapping-card:hover {
  transform: translateY(-12px) scale(1.03);
  z-index: 10;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
  background: white;
}

.overlapping-card-icon {
  margin-bottom: 16px;
}

.overlapping-card-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--safety-orange);
  stroke-width: 2;
  fill: none;
}

.overlapping-card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17px;
  color: var(--asphalt-charcoal);
  margin-bottom: 8px;
}

.overlapping-card-text {
  font-size: 14px;
  color: #5A5A58;
  line-height: 1.65;
}

.overlapping-card-decor {
  height: 2px;
  width: 30px;
  background: var(--lime-highlight);
  border-radius: 2px;
  margin-top: 12px;
}

.achievements-section {
  background: var(--concrete-warm);
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 1024px) {
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .achievements-grid {
    grid-template-columns: 1fr;
  }
}

.achievement-card {
  background: rgba(250,250,248,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(232,93,4,0.08);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}

.achievement-card:hover {
  flex-grow: 1.5;
  background: white;
  box-shadow: 0 20px 56px rgba(232,93,4,0.1);
  border-color: rgba(232,93,4,0.15);
}

.achievement-card:hover .achievement-icon svg {
  transform: scale(1.1);
}

.achievement-card:hover .achievement-value {
  color: var(--safety-orange);
}

.neighbor-card {
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

.neighbor-card:hover {
  flex-grow: 0.7;
  opacity: 0.85;
}

.achievement-icon {
  margin-bottom: 14px;
}

.achievement-icon svg {
  width: 44px;
  height: 44px;
  stroke: var(--safety-orange);
  stroke-width: 2;
  fill: none;
  transition: transform 0.3s ease;
}

.achievement-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 44px;
  color: var(--asphalt-charcoal);
  transition: color 0.3s ease;
  line-height: 1;
}

.achievement-label {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--light-steel);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

.achievement-decor {
  position: absolute;
  right: 20px;
  top: 20px;
}

.achievement-decor svg {
  width: 40px;
  height: 40px;
  stroke: rgba(232,93,4,0.3);
  stroke-width: 2;
  fill: none;
}

.masonry-section {
  background: var(--steel-gray);
}

.masonry-grid {
  columns: 3;
  column-gap: 20px;
}

@media (max-width: 1024px) {
  .masonry-grid {
    columns: 2;
  }
}

@media (max-width: 600px) {
  .masonry-grid {
    columns: 1;
  }
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
}

.masonry-card {
  background: rgba(250,250,248,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(232,93,4,0.08);
  overflow: hidden;
  transition: var(--transition-base);
}

.masonry-card:hover {
  transform: scale(1.03);
  border-color: rgba(232,93,4,0.15);
  box-shadow: 0 20px 56px rgba(232,93,4,0.1);
  z-index: 10;
  position: relative;
}

.masonry-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: saturate(1.05);
}

.masonry-card-body {
  padding: 20px;
}

.masonry-card-icon {
  margin-bottom: 12px;
}

.masonry-card-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--safety-orange);
  stroke-width: 2;
  fill: none;
}

.masonry-card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--asphalt-charcoal);
}

.masonry-card-subtitle {
  font-size: 12px;
  color: var(--safety-orange);
  margin-top: 4px;
}

.masonry-card-text {
  font-size: 13px;
  color: #6A6A68;
  margin-top: 8px;
  line-height: 1.6;
}

.masonry-card-decor {
  height: 3px;
  width: 40px;
  background: var(--safety-orange);
  border-radius: 3px;
  margin-top: 12px;
}

.faq-section {
  background: var(--concrete-warm);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 0 80px;
}

@media (max-width: 1024px) {
  .faq-grid {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
}

.faq-item {
  background: rgba(250,250,248,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(232,93,4,0.08);
  padding: 24px 28px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.faq-item:nth-child(even) {
  align-self: end;
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .faq-item:nth-child(even) {
    margin-top: 0;
  }
}

.faq-item.active {
  background: rgba(232,93,4,0.04);
  border-left: 4px solid var(--safety-orange);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.faq-question-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--asphalt-charcoal);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--light-steel);
  stroke-width: 2.5px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon svg {
  transform: rotate(45deg);
  stroke: var(--safety-orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1);
}

.faq-answer-text {
  font-size: 15px;
  color: #6A6A68;
  padding-top: 16px;
  line-height: 1.75;
}

.testimonials-section {
  background: var(--steel-gray);
  overflow: hidden;
}

.marquee-container {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}

.marquee-track {
  display: flex;
  gap: 24px;
  animation: marqueeLeft 40s linear infinite;
}

.marquee-track-reverse {
  animation: marqueeRight 35s linear infinite;
}

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

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

.testimonial-card {
  min-width: 320px;
  background: rgba(250,250,248,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(232,93,4,0.08);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.testimonial-icon {
  margin-bottom: 12px;
}

.testimonial-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--safety-orange);
  stroke-width: 2;
  fill: none;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--safety-orange);
}

.testimonial-text {
  font-size: 14px;
  font-style: italic;
  color: #5A5A58;
  line-height: 1.65;
  margin-bottom: 12px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  object-fit: cover;
  border: 1px solid rgba(232,93,4,0.2);
}

.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--asphalt-charcoal);
}

.testimonial-company {
  font-size: 11px;
  color: var(--light-steel);
}

.contact-section {
  background: var(--concrete-warm);
}

.contact-split {
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: 560px;
}

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

.contact-divider {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 2px;
  background: linear-gradient(180deg, var(--safety-orange), var(--lime-highlight), var(--safety-orange));
}

@media (max-width: 1024px) {
  .contact-divider {
    display: none;
  }
}

.contact-form-side {
  padding: 80px 60px;
}

@media (max-width: 768px) {
  .contact-form-side {
    padding: 60px 24px;
  }
}

.contact-form-decor {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}

.contact-form-decor svg {
  width: 100%;
  height: 100%;
  stroke: rgba(232,93,4,0.4);
  stroke-width: 3;
  fill: none;
}

.contact-form-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  color: var(--asphalt-charcoal);
}

.contact-form-subtitle {
  font-size: 14px;
  color: var(--light-steel);
  margin-bottom: 28px;
  margin-top: 8px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--light-steel);
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.form-input {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 2px solid rgba(61,61,60,0.12);
  background: transparent;
  font-size: 16px;
  color: var(--charcoal);
  transition: border-color 0.2s ease;
  border-radius: 0;
}

.form-input:focus {
  outline: none;
  border-bottom-color: var(--safety-orange);
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
  color: var(--safety-orange);
}

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

.form-submit {
  display: inline-flex;
  align-items: center;
  padding: 18px 44px;
  background: linear-gradient(135deg, var(--safety-orange), var(--orange-light));
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(232,93,4,0.2);
  transition: var(--transition-base);
  border: none;
  cursor: pointer;
}

.form-submit:hover {
  box-shadow: 0 8px 28px rgba(232,93,4,0.3);
}

.contact-info-side {
  background: rgba(250,250,248,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 80px 48px;
  border: 1px solid rgba(232,93,4,0.08);
  box-shadow: var(--shadow-md);
  margin: 40px;
}

@media (max-width: 1024px) {
  .contact-info-side {
    margin: 0 24px 40px;
    padding: 40px 24px;
  }
}

.contact-info-block {
  padding: 20px 0;
}

.contact-info-divider {
  height: 1px;
  background: rgba(232,93,4,0.1);
  margin: 20px 0;
}

.contact-info-icon {
  margin-bottom: 12px;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--safety-orange);
  stroke-width: 1.5px;
  fill: none;
}

.contact-info-label {
  font-size: 12px;
  color: var(--light-steel);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 15px;
  color: #5A5A58;
}

.contact-map {
  margin-top: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(61,61,60,0.05);
  filter: grayscale(100%);
}

.contact-map iframe {
  width: 100%;
  height: 200px;
  border: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: rgba(250,250,248,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(232,93,4,0.08);
  overflow: hidden;
  transition: var(--transition-base);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(232,93,4,0.15);
}

.service-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: saturate(1.05);
}

.service-card-body {
  padding: 24px;
}

.service-card-icon {
  margin-bottom: 12px;
}

.service-card-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--safety-orange);
  stroke-width: 2;
  fill: none;
}

.service-card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--asphalt-charcoal);
}

.service-card-text {
  font-size: 14px;
  color: #6A6A68;
  margin-top: 8px;
  line-height: 1.6;
}

.service-card-price {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--safety-orange);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(232,93,4,0.08);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--safety-orange);
  transition: gap 0.2s ease;
}

.service-card-link:hover {
  gap: 10px;
}

.service-card-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

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

.team-card-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  filter: saturate(1.05);
  transition: var(--transition-base);
}

.team-card:hover .team-card-image {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.team-card-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17px;
  color: var(--asphalt-charcoal);
}

.team-card-role {
  font-size: 13px;
  color: var(--safety-orange);
  margin-top: 4px;
}

.team-card-bio {
  font-size: 13px;
  color: #6A6A68;
  margin-top: 8px;
  line-height: 1.6;
}

.site-footer {
  background: var(--asphalt-charcoal);
  color: white;
  padding: 80px 0 40px;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 60px 0 30px;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-icon {
  width: 44px;
  height: 44px;
}

.footer-logo-icon svg {
  width: 100%;
  height: 100%;
}

.footer-logo-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: white;
}

.footer-logo-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 300px;
}

.footer-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
  display: inline-block;
  position: relative;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--safety-orange);
  transition: width 0.25s ease;
}

.footer-link:hover {
  color: var(--safety-orange);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-icon {
  flex-shrink: 0;
}

.footer-contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--safety-orange);
  stroke-width: 1.5px;
  fill: none;
}

.footer-contact-text {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-link {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s ease;
}

.footer-legal-link:hover {
  color: var(--safety-orange);
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: rgba(250,250,248,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(232,93,4,0.1);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  max-width: 400px;
  z-index: 9998;
  display: none;
}

.cookie-banner.visible {
  display: block;
}

@media (max-width: 480px) {
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
}

.cookie-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--asphalt-charcoal);
  margin-bottom: 8px;
}

.cookie-text {
  font-size: 13px;
  color: #6A6A68;
  line-height: 1.6;
  margin-bottom: 16px;
}

.cookie-links {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.cookie-link {
  font-size: 12px;
  color: var(--safety-orange);
  text-decoration: underline;
}

.cookie-link:hover {
  text-decoration: none;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  flex: 1;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--safety-orange), var(--orange-light));
  color: white;
  border: none;
}

.cookie-btn-accept:hover {
  box-shadow: 0 4px 12px rgba(232,93,4,0.25);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid rgba(61,61,60,0.2);
}

.cookie-btn-decline:hover {
  border-color: var(--charcoal);
}

.thank-you-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--concrete-warm);
  padding: 120px 24px 60px;
}

.thank-you-content {
  text-align: center;
  max-width: 560px;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  background: rgba(232,93,4,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--safety-orange);
  stroke-width: 2;
  fill: none;
}

.thank-you-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  color: var(--asphalt-charcoal);
  margin-bottom: 16px;
}

.thank-you-text {
  font-size: 18px;
  color: #6A6A68;
  line-height: 1.7;
  margin-bottom: 32px;
}

.thank-you-cta {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--safety-orange), var(--orange-light));
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(232,93,4,0.2);
  transition: var(--transition-base);
}

.thank-you-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,93,4,0.3);
}

.legal-page {
  padding: 120px 0 80px;
  background: var(--concrete-warm);
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  color: var(--asphalt-charcoal);
  margin-bottom: 32px;
}

.legal-section {
  margin-bottom: 32px;
}

.legal-section-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--asphalt-charcoal);
  margin-bottom: 12px;
}

.legal-section-text {
  font-size: 15px;
  color: #5A5A58;
  line-height: 1.8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: var(--transition-base);
  filter: saturate(1.05);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,61,60,0.8), transparent);
  opacity: 0;
  transition: var(--transition-base);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: white;
}

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

::-webkit-scrollbar-track {
  background: var(--steel-gray);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--safety-orange), var(--orange-light));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  opacity: 0.8;
}

.glow-torch {
  position: fixed;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(232,93,4,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
