:root {
  --bg-primary: #0d1117;
  --bg-secondary: #161b22;
  --bg-card: #1c2333;
  --accent-green: #39ff14;
  --accent-cyan: #00e5ff;
  --accent-magenta: #ff00aa;
  --text-primary: #e6edf3;
  --text-secondary: #8b949e;
  --text-muted: #6e7681;
  --border: #30363d;
  --nav-height: 70px;
  --font-mono: 'Courier New', Courier, monospace;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3), 0 1px 2px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4), 0 2px 4px rgba(0,0,0,0.2);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.5), 0 4px 16px rgba(0,0,0,0.3);
  --shadow-cyan: 0 0 20px rgba(0,229,255,0.15), 0 4px 16px rgba(0,0,0,0.3);
  --shadow-green: 0 0 20px rgba(57,255,20,0.2), 0 4px 16px rgba(0,0,0,0.3);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-cyan); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--accent-green); }
address { font-style: normal; }

.font-mono { font-family: var(--font-mono); }
.text-cyan { color: var(--accent-cyan); }
.text-muted { color: var(--text-muted); }
.accent-text { color: var(--accent-green); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-green);
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.25s ease;
  border: 2px solid var(--accent-green);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover {
  background: transparent;
  color: var(--accent-green);
  box-shadow: var(--shadow-green);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--accent-cyan);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 2px solid rgba(0,229,255,0.4);
  transition: all 0.25s ease;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.btn-secondary:hover {
  border-color: var(--accent-cyan);
  background: rgba(0,229,255,0.08);
  box-shadow: var(--shadow-cyan);
  transform: translateY(-2px);
  color: var(--accent-cyan);
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 24px;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent-cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.section-sub {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-top: 12px;
}

h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; }

.hero-geo-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(0,229,255,0.08) 1px, transparent 1px),
    linear-gradient(rgba(57,255,20,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,255,20,0.03) 1px, transparent 1px);
  background-size: 40px 40px, 80px 80px, 80px 80px;
  z-index: 0;
}
.hero-scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,229,255,0.015) 2px,
    rgba(0,229,255,0.015) 4px
  );
  z-index: 1;
  pointer-events: none;
}


.global-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}
.global-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,229,255,0.08), 0 2px 8px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img { height: 36px; width: auto; }
.nav-logo span {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--accent-cyan);
  letter-spacing: 0.05em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--accent-cyan);
  background: rgba(0,229,255,0.08);
}
.nav-cta {
  background: var(--accent-green) !important;
  color: var(--bg-primary) !important;
  font-weight: 600;
  padding: 8px 18px !important;
  border-radius: var(--radius-sm) !important;
  transition: all 0.2s ease !important;
}
.nav-cta:hover {
  background: #2de010 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(57,255,20,0.3);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
  z-index: 1100;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent-cyan);
  transition: all 0.3s ease;
  border-radius: 2px;
}


.mobile-menu-flip {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1050;
  perspective: 1200px;
}
.mobile-menu-flip.active {
  display: block;
  height: auto;
  min-height: var(--nav-height);
}
.flip-card-inner {
  position: relative;
  width: 100%;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.flip-card-inner.flipped {
  transform: rotateX(-180deg);
}
.flip-front, .flip-back {
  width: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.flip-front {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
}
.flip-front-bar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flip-back {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  transform: rotateX(180deg);
  padding: 24px;
  min-height: 100vh;
}
.flip-close-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 1rem;
}
.flip-close-btn:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}
.flip-close-back {
  display: block;
  margin-left: auto;
  margin-bottom: 24px;
}
.flip-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.flip-nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  border-left: 2px solid transparent;
}
.flip-nav a:hover {
  color: var(--accent-cyan);
  background: rgba(0,229,255,0.08);
  border-left-color: var(--accent-cyan);
}


.home-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}
.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0,229,255,0.06) 0%, transparent 70%);
  z-index: 0;
}
.home-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}
.hero-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent-cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.hero-label::before, .hero-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent-cyan);
  opacity: 0.5;
}
.home-hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.home-hero h1 .accent {
  color: var(--accent-green);
  text-shadow: 0 0 30px rgba(57,255,20,0.4);
}
.hero-cursor {
  display: inline-block;
  width: 3px;
  height: 0.9em;
  background: var(--accent-green);
  margin-left: 4px;
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


.page-hero-inner {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height) + 80px) 24px 80px;
  text-align: center;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}
.page-hero-content h1 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}
.page-hero-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}


.home-zigzag {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.home-zigzag:nth-child(even) {
  background: var(--bg-primary);
}
.zigzag-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.home-zigzag--right .zigzag-inner {
  direction: rtl;
}
.home-zigzag--right .zigzag-inner > * {
  direction: ltr;
}
.zigzag-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0,229,255,0.05);
}
.zigzag-image-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.zigzag-image-wrap:hover img {
  transform: scale(1.03);
}
.zigzag-img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(13,17,23,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.zigzag-img-badge .font-mono {
  color: var(--accent-cyan);
}
.zigzag-text h2 {
  margin-bottom: 20px;
}
.zigzag-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.75;
}
.zigzag-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.chip {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(0,229,255,0.3);
  color: var(--accent-cyan);
  background: rgba(0,229,255,0.05);
  letter-spacing: 0.05em;
}


.home-services-scroll {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
}
.hscroll-track {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-cyan) var(--bg-card);
  cursor: grab;
  margin: 0 -24px;
  padding: 0 24px;
}
.hscroll-track:active { cursor: grabbing; }
.hscroll-track::-webkit-scrollbar { height: 4px; }
.hscroll-track::-webkit-scrollbar-track { background: var(--bg-card); border-radius: 2px; }
.hscroll-track::-webkit-scrollbar-thumb { background: var(--accent-cyan); border-radius: 2px; }
.hscroll-inner {
  display: flex;
  gap: 20px;
  padding-bottom: 16px;
  width: max-content;
}
.hscroll-card {
  width: 280px;
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.hscroll-card:hover {
  border-color: rgba(0,229,255,0.4);
  box-shadow: var(--shadow-cyan);
  transform: translateY(-4px);
}
.hscroll-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,229,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent-cyan);
  margin-bottom: 16px;
  transition: all 0.3s ease;
}
.hscroll-card:hover .hscroll-card-icon {
  background: rgba(57,255,20,0.1);
  color: var(--accent-green);
}
.hscroll-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.hscroll-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.hscroll-hint {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 16px;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
}


.home-features {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}
.home-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.feature-item {
  display: flex;
  gap: 20px;
  padding: 32px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background 0.2s ease;
}
.feature-item:nth-child(even) { border-right: none; }
.feature-item:nth-last-child(-n+2) { border-bottom: none; }
.feature-item:hover { background: rgba(0,229,255,0.03); }
.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(57,255,20,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent-green);
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.feature-item:hover .feature-icon {
  background: rgba(57,255,20,0.2);
  box-shadow: 0 0 12px rgba(57,255,20,0.2);
}
.feature-body h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.feature-body p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}


.home-faq {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item:hover {
  border-color: rgba(0,229,255,0.3);
}
.faq-item.open {
  border-color: rgba(0,229,255,0.4);
  box-shadow: var(--shadow-cyan);
}
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  transition: color 0.2s ease;
  min-height: 44px;
}
.faq-question:hover { color: var(--accent-cyan); }
.faq-icon {
  color: var(--accent-cyan);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  font-size: 0.875rem;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}
.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}


.home-cta, .about-cta, .services-cta, .reviews-contact-cta {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}
.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 24px;
  position: relative;
  text-align: center;
}
.cta-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57,255,20,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,255,20,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.cta-content h2 { margin-bottom: 16px; }
.cta-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 40px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


.about-story { background: var(--bg-primary); }
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-story-text h2 { margin-bottom: 20px; }
.about-story-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0,229,255,0.05);
}
.about-story-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-equipment { background: var(--bg-secondary); border-top: 1px solid var(--border); }
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.equipment-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.equipment-card:hover {
  border-color: rgba(0,229,255,0.4);
  box-shadow: var(--shadow-cyan);
  transform: translateY(-4px);
}
.equipment-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.equipment-card-body { padding: 24px; }
.equipment-card-body h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}
.equipment-card-body p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.about-principles { background: var(--bg-primary); border-top: 1px solid var(--border); }
.principles-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.principle-row {
  display: flex;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.principle-row:last-child { border-bottom: none; }
.principle-num {
  font-size: 2rem;
  font-weight: 700;
  flex-shrink: 0;
  width: 60px;
  line-height: 1;
  padding-top: 4px;
}
.principle-body h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.principle-body p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}


.services-full-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.service-card-full {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.service-card-full:hover {
  border-color: rgba(0,229,255,0.3);
  box-shadow: var(--shadow-cyan);
}
.service-card-full--accent {
  border-color: rgba(255,0,170,0.3);
  background: linear-gradient(135deg, var(--bg-card), rgba(255,0,170,0.04));
}
.service-card-full--accent:hover {
  border-color: rgba(255,0,170,0.6);
  box-shadow: 0 0 24px rgba(255,0,170,0.1), var(--shadow-md);
}
.service-card-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px 0;
}
.service-icon-lg {
  width: 56px;
  height: 56px;
  background: rgba(0,229,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent-cyan);
  flex-shrink: 0;
}
.service-card-full--accent .service-icon-lg {
  background: rgba(255,0,170,0.1);
  color: var(--accent-magenta);
}
.service-card-header h2 {
  font-size: 1.2rem;
  margin-top: 8px;
}
.service-card-body {
  padding: 20px 32px 28px;
}
.service-card-body p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 12px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.tag {
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: var(--bg-secondary);
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
}

.services-process { background: var(--bg-secondary); border-top: 1px solid var(--border); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
  transition: all 0.3s ease;
}
.process-step:hover {
  border-color: rgba(57,255,20,0.3);
  box-shadow: var(--shadow-green);
  transform: translateY(-3px);
}
.step-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-green);
  opacity: 0.6;
  margin-bottom: 16px;
  line-height: 1;
}
.step-body h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.step-body p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}


.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.approach-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all 0.3s ease;
}
.approach-card:hover {
  border-color: rgba(0,229,255,0.3);
  box-shadow: var(--shadow-cyan);
}
.approach-icon {
  width: 52px;
  height: 52px;
  background: rgba(0,229,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent-cyan);
  margin-bottom: 20px;
}
.approach-card h3 { font-size: 1.05rem; margin-bottom: 12px; }
.approach-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.reviews-types { background: var(--bg-secondary); border-top: 1px solid var(--border); }
.reviews-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.reviews-col-text h2 { margin-bottom: 20px; }
.reviews-col-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.75;
}
.reviews-col-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.reviews-col-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.reviews-faq { background: var(--bg-primary); border-top: 1px solid var(--border); }


.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
.contact-form-wrap h2 { margin-bottom: 8px; }
.contact-form-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 32px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}
.required-star { color: var(--accent-magenta); }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s ease;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(0,229,255,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-checkbox-group { flex-direction: row; align-items: flex-start; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--accent-cyan);
  margin-top: 2px;
}
.checkbox-label a { color: var(--accent-cyan); }
.form-submit-btn {
  align-self: flex-start;
  min-height: 48px;
}
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-bottom: 24px;
}
.contact-info-card h3 { margin-bottom: 24px; font-size: 1.1rem; }
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item i {
  width: 36px;
  height: 36px;
  background: rgba(0,229,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.contact-info-item strong {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  font-family: var(--font-mono);
}
.contact-info-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.contact-info-item a {
  color: var(--accent-cyan);
  transition: color 0.2s;
}
.contact-info-item a:hover { color: var(--accent-green); }
.contact-map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}


.global-footer {
  background: #080b10;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 64px 0 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 280px;
}
.footer-nav-col h5, .footer-contact-col h5 {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: var(--accent-cyan);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-nav-col ul { list-style: none; }
.footer-nav-col ul li { margin-bottom: 8px; }
.footer-nav-col ul a {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: color 0.2s ease;
  text-decoration: none;
}
.footer-nav-col ul a:hover { color: var(--accent-cyan); }
.footer-contact-col address p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.footer-contact-col address i {
  color: var(--accent-cyan);
  font-size: 0.8rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-col address a {
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-contact-col address a:hover { color: var(--accent-cyan); }
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal-links {
  display: flex;
  gap: 20px;
}
.footer-legal-links a {
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-legal-links a:hover { color: var(--accent-cyan); }


.legal-main {
  padding-top: var(--nav-height);
}
.legal-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}
.legal-header {
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.legal-header h1 { margin-bottom: 12px; }
.legal-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}
.legal-intro {
  margin-bottom: 48px;
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent-cyan);
}
.legal-intro p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.75;
}
.legal-qa {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.legal-q-block h2 {
  font-size: 1.05rem;
  color: var(--accent-cyan);
  font-family: var(--font-mono);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.legal-q-block p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal-q-block p:last-child { margin-bottom: 0; }
.legal-contact-list {
  list-style: none;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal-contact-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.legal-numbered {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.legal-numbered-item {
  display: flex;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.legal-numbered-item:last-child { border-bottom: none; }
.legal-num {
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  width: 48px;
  line-height: 1.4;
}
.legal-num-body { flex: 1; }
.legal-num-body h2 {
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.legal-num-body p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal-num-body p:last-child { margin-bottom: 0; }
.legal-num-body ul {
  padding-left: 20px;
  margin: 12px 0;
}
.legal-num-body ul li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 6px;
}


.cookie-table-section,
.cookie-categories,
.cookie-management,
.cookie-contact {
  margin-bottom: 48px;
}
.cookie-table-section h2,
.cookie-categories h2,
.cookie-management h2,
.cookie-contact h2 {
  font-size: 1.1rem;
  color: var(--accent-cyan);
  font-family: var(--font-mono);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.cookie-table-section p,
.cookie-management p,
.cookie-contact p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 12px;
}
.cookie-cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 20px;
}
.cookie-cat-card--required {
  border-color: rgba(57,255,20,0.3);
}
.cookie-cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-cat-header h3 {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-cat-header h3 i { color: var(--accent-cyan); }
.cookie-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.cookie-badge--required {
  border-color: rgba(57,255,20,0.4);
  color: var(--accent-green);
  background: rgba(57,255,20,0.05);
}
.cookie-cat-card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}
.cookie-table th {
  text-align: left;
  padding: 8px 12px;
  background: var(--bg-secondary);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.cookie-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(48,54,61,0.5);
  color: var(--text-secondary);
  vertical-align: top;
}
.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table .font-mono { color: var(--accent-cyan); }
.cookie-contact ul { list-style: none; margin: 12px 0; }
.cookie-contact ul li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 6px;
}


.ksc-consent-card {
  position: fixed;
  top: 90px;
  left: 20px;
  z-index: 9999;
  width: 300px;
  background: var(--bg-card);
  border: 1px solid rgba(0,229,255,0.3);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-lg), 0 0 32px rgba(0,229,255,0.08);
  transform: translateX(-340px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.ksc-consent-card.visible {
  transform: translateX(0);
}
.ksc-consent-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.ksc-consent-header i {
  color: var(--accent-cyan);
  font-size: 1rem;
}
.ksc-consent-header strong {
  font-size: 0.85rem;
  color: var(--text-primary);
  font-family: var(--font-mono);
}
.ksc-consent-text {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 16px;
}
.ksc-consent-text a { color: var(--accent-cyan); font-size: 0.78rem; }
.ksc-consent-btns {
  display: flex;
  gap: 8px;
}
.ksc-btn-accept {
  flex: 1;
  background: var(--accent-green);
  color: var(--bg-primary);
  border: none;
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s ease;
  min-height: 36px;
}
.ksc-btn-accept:hover { background: #2de010; }
.ksc-btn-settings {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  font-size: 0.78rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s ease;
  min-height: 36px;
  white-space: nowrap;
}
.ksc-btn-settings:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}
.ksc-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.ksc-modal-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.ksc-modal {
  background: var(--bg-card);
  border: 1px solid rgba(0,229,255,0.3);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(0,229,255,0.1);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.ksc-modal-overlay.visible .ksc-modal {
  transform: scale(1);
}
.ksc-modal h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.ksc-modal > p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}
.ksc-cat-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.ksc-cat-item:last-of-type { border-bottom: none; }
.ksc-cat-info h4 { font-size: 0.9rem; margin-bottom: 4px; }
.ksc-cat-info p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }
.ksc-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.ksc-toggle input { opacity: 0; width: 0; height: 0; }
.ksc-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.ksc-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: var(--text-muted);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.ksc-toggle input:checked + .ksc-toggle-slider {
  background: var(--accent-cyan);
}
.ksc-toggle input:checked + .ksc-toggle-slider::before {
  transform: translateX(20px);
  background: var(--bg-primary);
}
.ksc-toggle input:disabled + .ksc-toggle-slider {
  opacity: 0.7;
  cursor: not-allowed;
}
.ksc-modal-footer {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.ksc-btn-save {
  flex: 1;
  background: var(--accent-cyan);
  color: var(--bg-primary);
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s ease;
  min-height: 44px;
}
.ksc-btn-save:hover { background: #00ccee; }
.ksc-btn-reject {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  font-size: 0.875rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s ease;
  min-height: 44px;
}
.ksc-btn-reject:hover { border-color: var(--accent-magenta); color: var(--accent-magenta); }


.fade-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .equipment-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-wrap { max-width: 600px; }
  .approach-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section-inner { padding: 64px 20px; }
  .zigzag-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 64px 20px;
  }
  .home-zigzag--right .zigzag-inner { direction: ltr; }
  .zigzag-image-wrap img { height: 280px; }
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-story-image img { height: 280px; }
  .equipment-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .home-features-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none; }
  .feature-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .feature-item:last-child { border-bottom: none; }
  .reviews-two-col { grid-template-columns: 1fr; gap: 40px; }
  .reviews-col-image img { height: 280px; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { padding: 64px 20px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .service-card-header { flex-direction: column; gap: 12px; }
  .legal-numbered-item { flex-direction: column; gap: 12px; }
  .legal-num { width: auto; }
  .ksc-consent-card { width: calc(100vw - 40px); }
  .ksc-modal { padding: 24px; }
}

@media (max-width: 480px) {
  .section-inner { padding: 48px 16px; }
  .nav-inner { padding: 0 16px; }
  .nav-logo span { display: none; }
  .page-hero-inner { padding: calc(var(--nav-height) + 48px) 16px 48px; }
  .cta-inner { padding: 48px 16px; }
  .hscroll-card { width: 240px; }
  .cookie-cat-header { flex-direction: column; align-items: flex-start; }
  .ksc-consent-btns { flex-direction: column; }
}