/* ============================================
   SMS GÖNDER - Modern CSS Framework
   Koyu tema, industrial futurism design
   ============================================ */

/* CSS Custom Properties */
:root {
  /* Renk Paleti */
  --camo-green: #8B956D;
  --army-green: #4B5320;
  --olive-drab: #6B8E23;
  --military-khaki: #F0E68C;
  --concrete-ash: #B0B0B0;
  --pavement-grey: #707070;
  --industrial-zinc: #C8C8C8;
  --alert-crimson: #C0392B;
  --signal-blue: #3B5998;
  --bg-primary: #1a1a1a;
  --bg-secondary: #111111;
  --bg-card: #1e1e1e;
  --text-primary: #e8e8e8;
  --text-secondary: #a0a0a0;
  --text-muted: #707070;
  --border-color: rgba(139, 149, 109, 0.3);
  --border-hover: #8B956D;
  --gradient-overlay: linear-gradient(180deg, rgba(17,17,17,0.9) 0%, rgba(34,34,34,0.3) 100%);
  --gradient-camo: linear-gradient(135deg, #8B956D 0%, #6B8E23 100%);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 20px rgba(139, 149, 109, 0.15);

  /* Tipografi */
  --font-heading: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
  --font-mono: 'Space Mono', monospace;

  /* Boşluklar */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;

  /* Border Radius */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;

  /* Z-index */
  --z-loader: 9999;
  --z-nav: 1000;
  --z-cursor: 9998;
  --z-modal: 500;
  --z-content: 10;
}

/* Application integration */
.nav-bar-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.nav-bar-progress .progress-bar-fill {
  width: 0;
}

.footer-column span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-brand .logo span {
  color: var(--text-primary);
}

.notice {
  border: 1px solid var(--border-color);
  background: rgba(139, 149, 109, 0.08);
  color: var(--text-secondary);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.notice-error {
  border-color: rgba(192, 57, 43, 0.5);
  color: #e5aca5;
}

.notice-warning {
  border-color: rgba(240, 230, 140, 0.45);
  color: var(--military-khaki);
}

.content-copy {
  max-width: 860px;
}

.content-copy p,
.content-copy li {
  margin-bottom: 1rem;
}

.content-copy ul,
.content-copy ol {
  padding-left: 1.5rem;
  color: var(--text-secondary);
}

.service-media {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
}

.service-detail h1,
.service-detail h2,
.service-detail h3,
.service-detail h4 {
  margin: 2rem 0 1rem;
}

.service-detail p,
.service-detail ul,
.service-detail ol {
  margin-bottom: 1rem;
}

.service-detail ul,
.service-detail ol {
  padding-left: 1.5rem;
  color: var(--text-secondary);
}

.service-thumb {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
}

.field-error {
  color: #e5aca5;
  font-size: .9rem;
  margin-top: .35rem;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1rem;
}

.checkbox-row input {
  margin-top: .35rem;
  accent-color: var(--camo-green);
}

.form-input option {
  color: var(--text-primary);
  background: var(--bg-card);
}

.hero-title {
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  max-width: 800px;
  margin: 0 auto 1rem;
  overflow-wrap: anywhere;
}

@media (max-width: 480px) {
  .section-full {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-full > .container {
    flex: 0 0 calc(100vw - 2rem);
    width: calc(100vw - 2rem);
    max-width: calc(100vw - 2rem);
  }

  .hero-copy {
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .hero-label {
    font-size: .62rem;
    gap: .5rem;
  }

  .hero-title {
    font-size: 1rem;
    line-height: 1.45;
    max-width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: min(100%, 285px);
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

::selection {
  background: var(--camo-green);
  color: var(--bg-secondary);
}

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

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--camo-green);
  border-radius: 3px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.5rem, 8vw, 6rem); }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.8rem); }

p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

a {
  color: var(--camo-green);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--olive-drab);
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */

.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 1px solid var(--camo-green);
  border-radius: 50%;
  pointer-events: none;
  z-index: var(--z-cursor);
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, border-radius 0.3s ease;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.cursor.hover {
  width: 50px;
  height: 50px;
  border-color: var(--camo-green);
  background: rgba(139, 149, 109, 0.1);
}

.cursor-dot {
  position: fixed;
  width: 4px;
  height: 4px;
  background: var(--camo-green);
  border-radius: 50%;
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
}

@media (pointer: coarse) {
  .cursor, .cursor-dot { display: none; }
  body { cursor: auto; }
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: 1rem 2rem;
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.4s ease;
}

.navbar.scrolled {
  padding: 0.6rem 2rem;
  background: rgba(17, 17, 17, 0.95);
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--camo-green);
  letter-spacing: 0.1em;
}

.nav-logo span {
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding: 0.3rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--camo-green);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--camo-green);
}

.nav-cta {
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--camo-green);
  background: transparent;
  color: var(--camo-green);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: none;
  transition: all 0.3s ease;
  border-radius: var(--radius-sm);
}

.nav-cta:hover {
  background: var(--camo-green);
  color: var(--bg-secondary);
  box-shadow: 0 0 20px rgba(139, 149, 109, 0.3);
}

/* Mobil Menü */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  background: none;
  border: none;
  padding: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--camo-green);
  transition: all 0.3s ease;
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 17, 17, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }

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

  .nav-links a {
    font-size: 1.2rem;
  }

  .cursor, .cursor-dot { display: none; }
  body { cursor: auto; }
}

/* ============================================
   LOADER
   ============================================ */

.loader {
  position: fixed;
  inset: 0;
  z-index: var(--z-loader);
  background: var(--bg-secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.loader.hidden {
  animation: loaderExit 0.8s ease forwards;
}

@keyframes loaderExit {
  0% { clip-path: inset(0 0 0 0); }
  100% { clip-path: inset(0 0 100% 0); }
}

.loader-text {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--camo-green);
  letter-spacing: 0.2em;
  animation: loaderPulse 1.5s ease infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.loader-line {
  width: 200px;
  height: 2px;
  background: var(--border-color);
  position: relative;
  overflow: hidden;
}

.loader-line::after {
  content: '';
  position: absolute;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--camo-green);
  animation: loaderSlide 1.5s ease infinite;
}

@keyframes loaderSlide {
  0% { left: -100%; }
  100% { left: 100%; }
}

.loader-status {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 1px solid var(--camo-green);
  background: transparent;
  color: var(--camo-green);
  cursor: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--camo-green);
  transform: translateX(-101%);
  transition: transform 0.4s ease;
  z-index: -1;
}

.btn:hover::before {
  transform: translateX(0);
}

.btn:hover {
  color: var(--bg-secondary);
  box-shadow: 0 0 30px rgba(139, 149, 109, 0.3);
}

.btn-primary {
  background: var(--camo-green);
  color: var(--bg-secondary);
}

.btn-primary:hover {
  background: var(--olive-drab);
  border-color: var(--olive-drab);
  box-shadow: 0 0 30px rgba(107, 142, 35, 0.4);
}

.btn-sm {
  padding: 0.6rem 1.5rem;
  font-size: 0.7rem;
}

.btn-lg {
  padding: 1.2rem 3rem;
  font-size: 0.9rem;
}

/* ============================================
   CARDS
   ============================================ */

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-camo);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

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

.card-icon {
  width: 60px;
  height: 60px;
  border: 1px solid var(--camo-green);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--camo-green);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.card-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  position: relative;
  padding: var(--space-xl) 2rem;
  overflow: hidden;
}

.section-full {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.section-dark {
  background: var(--bg-secondary);
}

.section-gradient {
  background: var(--gradient-overlay);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* Section Header */
.section-header {
  margin-bottom: var(--space-lg);
  position: relative;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--camo-green);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--camo-green);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
}

/* ============================================
   GRID SYSTEM
   ============================================ */

.grid {
  display: grid;
  gap: 2rem;
}

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

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

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

/* ============================================
   TEKNIK ELEMENTLER
   ============================================ */

.tech-border {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  position: relative;
}

.tech-border::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 20px;
  width: 60px;
  height: 1px;
  background: var(--camo-green);
}

.tech-box {
  background: rgba(30, 30, 30, 0.8);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  position: relative;
}

.tech-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 30px;
  background: var(--camo-green);
}

.coordinate {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* Scanline efekti */
.scanlines {
  position: relative;
}

.scanlines::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(139, 149, 109, 0.03) 2px,
    rgba(139, 149, 109, 0.03) 4px
  );
  pointer-events: none;
}

/* Grid arka plan */
.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 149, 109, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 149, 109, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* ============================================
   FORMS
   ============================================ */

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

.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--camo-green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(30, 30, 30, 0.8);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--camo-green);
  box-shadow: 0 0 10px rgba(139, 149, 109, 0.1);
}

.form-input::placeholder {
  color: var(--text-muted);
}

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

/* ============================================
   ACCORDION
   ============================================ */

.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: var(--border-hover);
}

.accordion-header {
  width: 100%;
  padding: 1.5rem;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1rem;
  text-align: left;
  letter-spacing: 0.05em;
}

.accordion-header .icon {
  font-size: 1.5rem;
  color: var(--camo-green);
  transition: transform 0.3s ease;
}

.accordion-item.active .icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-body {
  max-height: 500px;
}

.accordion-content {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: var(--space-xl) 2rem var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand .logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--camo-green);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 300px;
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--camo-green);
}

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

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

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

/* ============================================
   UTILITIES
   ============================================ */

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

.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

.gap-1 { gap: var(--space-xs); }
.gap-2 { gap: var(--space-sm); }
.gap-3 { gap: var(--space-md); }
.gap-4 { gap: var(--space-lg); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.hidden { display: none; }

/* ============================================
   ANIMATIONS
   ============================================ */

/* Fade In Up */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
}

.fade-in-up.visible {
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade In Left */
.fade-in-left {
  opacity: 0;
  transform: translateX(-60px);
}

.fade-in-left.visible {
  animation: fadeInLeft 0.8s ease forwards;
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Fade In Right */
.fade-in-right {
  opacity: 0;
  transform: translateX(60px);
}

.fade-in-right.visible {
  animation: fadeInRight 0.8s ease forwards;
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scale In */
.scale-in {
  opacity: 0;
  transform: scale(0.9);
}

.scale-in.visible {
  animation: scaleIn 0.6s ease forwards;
}

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

/* Stagger delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* Pulse glow */
.pulse-glow {
  animation: pulseGlow 3s ease infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(139, 149, 109, 0.2); }
  50% { box-shadow: 0 0 25px rgba(139, 149, 109, 0.4); }
}

/* Floating animation */
.float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Glitch effect for text */
.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.glitch:hover::before {
  animation: glitch1 0.3s ease;
  color: var(--alert-crimson);
  opacity: 0.8;
}

.glitch:hover::after {
  animation: glitch2 0.3s ease;
  color: var(--signal-blue);
  opacity: 0.8;
}

@keyframes glitch1 {
  0% { clip-path: inset(0 0 90% 0); transform: translate(-2px, 0); }
  20% { clip-path: inset(20% 0 60% 0); transform: translate(2px, 0); }
  40% { clip-path: inset(40% 0 40% 0); transform: translate(-2px, 0); }
  60% { clip-path: inset(60% 0 20% 0); transform: translate(2px, 0); }
  80% { clip-path: inset(80% 0 0 0); transform: translate(-2px, 0); }
  100% { clip-path: inset(0 0 100% 0); transform: translate(0, 0); }
}

@keyframes glitch2 {
  0% { clip-path: inset(90% 0 0 0); transform: translate(2px, 0); }
  20% { clip-path: inset(60% 0 20% 0); transform: translate(-2px, 0); }
  40% { clip-path: inset(40% 0 40% 0); transform: translate(2px, 0); }
  60% { clip-path: inset(20% 0 60% 0); transform: translate(-2px, 0); }
  80% { clip-path: inset(0 0 80% 0); transform: translate(2px, 0); }
  100% { clip-path: inset(100% 0 0 0); transform: translate(0, 0); }
}

/* Particle canvas container */
.particle-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* Counter animation */
.counter {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 4rem);
  color: var(--camo-green);
}

/* Status indicator */
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--camo-green);
  display: inline-block;
  animation: statusPulse 2s ease infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Progress bar */
.progress-bar {
  width: 100%;
  height: 2px;
  background: var(--border-color);
  position: relative;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--camo-green);
  transition: width 0.5s ease;
}

/* Price tag */
.price-tag {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--camo-green);
}

.price-tag .currency {
  font-size: 1rem;
  vertical-align: super;
}

.price-tag .period {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.8rem;
  background: rgba(139, 149, 109, 0.1);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--camo-green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Horizontal scroll container */
.horizontal-scroll {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
}

.horizontal-scroll > * {
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* Table styles */
.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.data-table th {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--camo-green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(139, 149, 109, 0.05);
}

.data-table td {
  font-family: var(--font-body);
  color: var(--text-secondary);
}

.data-table tr:hover td {
  background: rgba(139, 149, 109, 0.03);
  color: var(--text-primary);
}

/* Blog card */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.4s ease;
}

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

.blog-card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.blog-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(17,17,17,0.8) 100%);
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.blog-card-meta span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Service card large */
.service-card-lg {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 3rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card-lg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-camo);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card-lg:hover::before {
  transform: scaleX(1);
}

.service-card-lg:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
}

/* Page banner */
.page-banner {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(139,149,109,0.08) 0%, transparent 70%);
}

.page-banner h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  margin-bottom: 1rem;
  position: relative;
}

.page-banner p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* Contract text styling */
.contract-text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.contract-text h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}

.contract-text p {
  margin-bottom: 1rem;
}

/* Public reference cards */
.reference-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.reference-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 210px;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: border-color .35s ease, transform .35s ease, box-shadow .35s ease;
}

.reference-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.reference-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 92px;
  padding: .85rem;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border-color);
}

.reference-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .82;
  transition: filter .35s ease, opacity .35s ease;
}

.reference-card:hover .reference-logo img {
  filter: grayscale(0);
  opacity: 1;
}

.reference-name {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-primary);
}

.reference-card p {
  margin: 0;
  font-size: .95rem;
  color: var(--text-secondary);
}

.reference-link {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--camo-green);
  text-transform: uppercase;
}

.reference-grid-compact .reference-card {
  min-height: 150px;
}

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

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