:root {
  --bg: #0A1628;
  --bg-2: #0F1F36;
  --bg-card: #122338;
  --fg: #E8F4F8;
  --fg-muted: #7A9CB5;
  --accent: #00E5C8;
  --accent-dim: rgba(0, 229, 200, 0.12);
  --accent-glow: rgba(0, 229, 200, 0.2);
  --navy: #0A1628;
  --white: #FFFFFF;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 229, 200, 0.1);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon { display: flex; }
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 120px 32px 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.hero-bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,200,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,200,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}
.hero-glow {
  position: fixed;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,229,200,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,200,0.3);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--fg);
}
.hero-headline .highlight {
  color: var(--accent);
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-val {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
}
.stat-label {
  display: block;
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.stat-sep {
  width: 1px; height: 36px;
  background: rgba(0,229,200,0.2);
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 1;
}

/* Machine Card */
.machine-card {
  background: var(--bg-card);
  border: 1px solid rgba(0,229,200,0.2);
  border-radius: 20px;
  padding: 32px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 0 60px rgba(0,229,200,0.06), 0 20px 60px rgba(0,0,0,0.4);
}
.machine-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  margin-bottom: 24px;
}
.machine-body {
  display: flex;
  align-items: center;
  gap: 8px;
}
.machine-hopper {
  width: 50px; height: 80px;
  background: linear-gradient(180deg, #1a3a55, #0F2740);
  border: 1px solid rgba(0,229,200,0.3);
  border-radius: 6px 6px 0 0;
  position: relative;
}
.machine-hopper::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid rgba(0,229,200,0.4);
}
.machine-body-main {
  width: 120px; height: 90px;
  background: linear-gradient(135deg, #1a3a55, #0D2540);
  border: 1px solid rgba(0,229,200,0.25);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.machine-screen {
  width: 100%; height: 30px;
  background: #001a1a;
  border: 1px solid rgba(0,229,200,0.2);
  border-radius: 4px;
  box-shadow: inset 0 0 10px rgba(0,229,200,0.15);
  background-image: repeating-linear-gradient(
    0deg, transparent, transparent 4px,
    rgba(0,229,200,0.05) 4px, rgba(0,229,200,0.05) 5px
  );
}
.machine-controls {
  display: flex;
  gap: 8px;
  align-items: center;
}
.ctrl {
  width: 16px; height: 16px;
  border-radius: 50%;
}
.btn-red { background: #FF4757; box-shadow: 0 0 6px rgba(255,71,87,0.5); }
.btn-blue { background: #2D9CDB; box-shadow: 0 0 6px rgba(45,156,219,0.5); }
.btn-green { background: #00E5C8; box-shadow: 0 0 6px rgba(0,229,200,0.5); }

.machine-hose {
  position: absolute;
  right: 60px;
  top: 50%;
  width: 100px; height: 4px;
  background: linear-gradient(90deg, #1a3a55, #2a5a7a);
  border-radius: 2px;
  transform: rotate(-15deg);
  transform-origin: left center;
}

.blast-particles {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.blast-particles span {
  display: block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin: 4px 0;
  opacity: 0.6;
  box-shadow: 0 0 8px var(--accent);
  animation: float 1.5s ease-in-out infinite;
}
.blast-particles span:nth-child(2) { animation-delay: 0.2s; width: 5px; height: 5px; }
.blast-particles span:nth-child(3) { animation-delay: 0.4s; width: 4px; height: 4px; }
.blast-particles span:nth-child(4) { animation-delay: 0.6s; width: 5px; height: 5px; }
.blast-particles span:nth-child(5) { animation-delay: 0.8s; }
@keyframes float {
  0% { transform: translateX(0) translateY(0); opacity: 0.6; }
  100% { transform: translateX(20px) translateY(-10px); opacity: 0; }
}

.machine-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--fg);
  text-align: center;
  margin-bottom: 10px;
}
.machine-specs {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.machine-specs span {
  font-size: 11px;
  color: var(--fg-muted);
  background: rgba(0,229,200,0.06);
  border: 1px solid rgba(0,229,200,0.15);
  border-radius: 4px;
  padding: 3px 8px;
}

.service-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.badge {
  background: rgba(0,229,200,0.08);
  border: 1px solid rgba(0,229,200,0.2);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

/* ── SECTIONS ── */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section-header { margin-bottom: 56px; }
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--fg);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-sub {
  color: var(--fg-muted);
  font-size: 16px;
  margin-top: 12px;
  max-width: 500px;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid rgba(0,229,200,0.08);
  border-bottom: 1px solid rgba(0,229,200,0.08);
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 180px;
  padding: 24px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(0,229,200,0.1);
  border-radius: 12px;
  margin: 4px;
}
.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: rgba(0,229,200,0.2);
  margin-bottom: 12px;
}
.step-content h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--fg);
}
.step-content p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.step-connector {
  display: flex;
  align-items: center;
  padding: 0 4px;
  padding-top: 24px;
}

.method-table {
  border: 1px solid rgba(0,229,200,0.15);
  border-radius: 12px;
  overflow: hidden;
  font-size: 13px;
}
.method-row {
  display: grid;
  grid-template-columns: 2fr repeat(5, 1fr);
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0,229,200,0.06);
}
.method-row:last-child { border-bottom: none; }
.method-row.header {
  background: rgba(0,229,200,0.05);
  color: var(--fg-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.method-row.row-highlight { background: rgba(0,229,200,0.04); }
.method-row span { display: flex; align-items: center; }
.check svg { display: block; }
.cross { color: rgba(122,156,181,0.4); font-size: 16px; }

/* ── INDUSTRIES ── */
.industries { padding: 100px 0; }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.industry-card {
  background: var(--bg-card);
  border: 1px solid rgba(0,229,200,0.1);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.industry-card:hover {
  border-color: rgba(0,229,200,0.3);
  transform: translateY(-2px);
}
.ind-icon { margin-bottom: 16px; }
.industry-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}
.industry-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.ind-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ind-tags span {
  font-size: 11px;
  color: var(--accent);
  background: var(--accent-dim);
  border-radius: 4px;
  padding: 3px 8px;
}

/* ── WHY US ── */
.why-us {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid rgba(0,229,200,0.08);
  border-bottom: 1px solid rgba(0,229,200,0.08);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-body {
  font-size: 16px;
  color: var(--fg-muted);
  margin-top: 20px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.why-highlights { display: flex; flex-direction: column; gap: 24px; }
.wh-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,200,0.15);
  border-radius: 10px;
}
.wh-num {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--accent);
  min-width: 80px;
}
.wh-text { font-size: 14px; color: var(--fg-muted); }

.benefit-cards { display: flex; flex-direction: column; gap: 16px; }
.benefit {
  background: var(--bg-card);
  border: 1px solid rgba(0,229,200,0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.benefit-icon { flex-shrink: 0; margin-top: 2px; }
.benefit h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.benefit p { font-size: 13px; color: var(--fg-muted); line-height: 1.5; }

/* ── PRICING ── */
.pricing { padding: 100px 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid rgba(0,229,200,0.1);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}
.price-card.featured {
  border-color: rgba(0,229,200,0.4);
  background: linear-gradient(180deg, rgba(0,229,200,0.05) 0%, var(--bg-card) 100%);
  box-shadow: 0 0 40px rgba(0,229,200,0.08);
}
.pc-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pc-tier {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.pc-price {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 4px;
}
.pc-per {
  display: block;
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.pc-features {
  list-style: none;
  margin-bottom: 20px;
}
.pc-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,229,200,0.06);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pc-features li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.pc-note {
  font-size: 12px;
  color: var(--fg-muted);
  font-style: italic;
}
.pricing-footer {
  text-align: center;
  font-size: 13px;
  color: var(--fg-muted);
}

/* ── CLOSING ── */
.closing { padding: 100px 0; }
.closing-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--fg);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.closing-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.closing-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,200,0.3);
  border-radius: 12px;
  padding: 20px 28px;
  text-align: left;
}
.cta-icon {
  width: 40px; height: 40px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.closing-cta strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}
.closing-cta p { font-size: 13px; color: var(--fg-muted); }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid rgba(0,229,200,0.1);
  padding: 48px 0 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
}
.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.footer-meta { display: flex; flex-direction: column; gap: 10px; }
.footer-location, .footer-contact, .footer-service-area {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px 0;
  border-top: 1px solid rgba(0,229,200,0.06);
  font-size: 12px;
  color: var(--fg-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 100px; }
  .hero-visual { order: -1; }
  .hero-stats { justify-content: flex-start; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .method-row { grid-template-columns: 1fr 1.5fr 1fr 1fr 1fr; font-size: 11px; }
  .method-row.header { display: none; }
  .method-row span:first-child { font-weight: 600; }
  .footer-inner { grid-template-columns: 1fr; }
  .steps { gap: 12px; }
  .step-connector { display: none; }
  .step { margin: 0; }
}
@media (max-width: 600px) {
  .industry-grid { grid-template-columns: 1fr; }
  .nav-tagline { display: none; }
  .section-inner { padding: 0 20px; }
  .hero { padding: 100px 20px 60px; }
}