:root {
  --bg: #080c0a;
  --bg2: #0d1210;
  --bg3: #111917;
  --surface: #141f1a;
  --border: #1e2e28;
  --border2: #253830;
  --green: #00e676;
  --green-dim: #00c853;
  --green-glow: rgba(0, 230, 118, 0.15);
  --green-glow2: rgba(0, 230, 118, 0.06);
  --cyan: #18ffff;
  --cyan-dim: #00e5ff;
  --text: #e8f5e9;
  --text2: #a5c4ac;
  --text3: #5a7a62;
  --mono: 'JetBrains Mono', monospace;
  --sans: 'Syne', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* CUSTOM CURSOR */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s;
  box-shadow: 0 0 12px var(--green), 0 0 24px var(--green-glow);
}
.cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 1px solid rgba(0,230,118,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.15s ease;
  transform: translate(-50%, -50%);
}

/* SCANLINES OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.03) 2px,
    rgba(0,0,0,0.03) 4px
  );
  pointer-events: none;
  z-index: 1000;
}

/* NOISE TEXTURE */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.5;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 0 2rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8,12,10,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--green);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo span { color: var(--text3); }
.nav-logo strong { color: var(--green); }

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

.nav-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: 0.75rem;
  padding: 0.4rem 0.75rem;
  border-radius: 3px;
  transition: all 0.2s;
  letter-spacing: 0.05em;
  position: relative;
}
.nav-links a::before {
  content: attr(data-index);
  color: var(--text3);
  font-size: 0.65rem;
  margin-right: 0.25rem;
}
.nav-links a:hover { color: var(--green); background: var(--green-glow2); }
.nav-links a.active { color: var(--green); }

.nav-cta {
  font-size: 0.75rem !important;
  border: 1px solid var(--green) !important;
  color: var(--green) !important;
  padding: 0.4rem 1rem !important;
}
.nav-cta:hover { background: var(--green-glow) !important; }

/* PAGES */
.page { padding-top: 60px; min-height: 100vh; }

/* =================== HOME PAGE =================== */
#hero {
  min-height: calc(100vh - 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 4rem 4rem 4rem 6rem;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,230,118,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-tag {
  font-size: 0.7rem;
  color: var(--green);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-tag::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--green);
}

.hero-title {
  font-family: var(--sans);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-title .accent { color: var(--green); }
.hero-title .dim { color: var(--text3); }

.hero-desc {
  font-size: 0.85rem;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 440px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--green);
  color: var(--bg);
  border: none;
  padding: 0.75rem 1.75rem;
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: none;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: var(--cyan); box-shadow: 0 0 20px rgba(24,255,255,0.3); }

.btn-ghost {
  border: 1px solid var(--border2);
  color: var(--text2);
  background: none;
  padding: 0.75rem 1.75rem;
  font-family: var(--mono);
  font-size: 0.8rem;
  cursor: none;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  text-decoration: none;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); }

/* TERMINAL PANEL */
.hero-terminal {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0,230,118,0.06), inset 0 1px 0 rgba(255,255,255,0.03);
}

.terminal-bar {
  background: var(--bg3);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.terminal-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.td1 { background: #ff5f57; }
.td2 { background: #febc2e; }
.td3 { background: #28c840; }
.terminal-title {
  margin-left: 0.5rem;
  font-size: 0.7rem;
  color: var(--text3);
  letter-spacing: 0.05em;
}

.terminal-body {
  padding: 1.25rem 1.5rem;
  font-size: 0.78rem;
  line-height: 2;
  min-height: 320px;
}

.t-line { display: flex; gap: 0.5rem; }
.t-prompt { color: var(--green); flex-shrink: 0; }
.t-cmd { color: var(--text); }
.t-out { color: var(--text2); padding-left: 1.2rem; }
.t-out.green { color: var(--green); }
.t-out.cyan { color: var(--cyan); }
.t-out.dim { color: var(--text3); }
.t-spacer { height: 0.5rem; }

.blink {
  display: inline-block;
  width: 8px; height: 1em;
  background: var(--green);
  vertical-align: text-bottom;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* STATS BAR */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 6rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  background: var(--bg2);
}

.stat-item { text-align: center; }
.stat-num {
  font-family: var(--sans);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.7rem;
  color: var(--text3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* SECTIONS */
section { padding: 6rem 6rem; }
.section-header {
  margin-bottom: 4rem;
}
.section-tag {
  font-size: 0.68rem;
  color: var(--green);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-tag::before { content: '//'; color: var(--text3); }
.section-title {
  font-family: var(--sans);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-title .accent { color: var(--green); }

/* SERVICES */
#services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--bg);
  padding: 2.5rem;
  position: relative;
  transition: background 0.3s;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover { background: var(--bg3); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  display: block;
}
.service-num {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 0.65rem;
  color: var(--border2);
  letter-spacing: 0.1em;
}
.service-name {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.service-desc {
  font-size: 0.75rem;
  color: var(--text3);
  line-height: 1.8;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.25rem;
}
.stag {
  font-size: 0.65rem;
  padding: 0.2rem 0.6rem;
  border: 1px solid var(--border2);
  color: var(--text3);
  letter-spacing: 0.05em;
}

/* TRUSTED */

#trusted { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trusted-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}
.trust-card {
  background: var(--bg2);
  padding: 2rem;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.trust-card:hover { background: var(--surface); }
.trust-domain {
  font-size: 0.8rem;
  color: var(--cyan);
  letter-spacing: 0.02em;
}
.trust-name {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
}
.trust-desc {
  font-size: 0.72rem;
  color: var(--text3);
  line-height: 1.7;
}
.trust-badge {
  margin-top: 0.5rem;
  font-size: 0.65rem;
  color: var(--green);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.trust-badge::before { content: '▸'; }

/* DRONE SECTION */
#drone {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
#drone::before {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(24,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.drone-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.drone-visual {
  background: var(--bg2);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.drone-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(24,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,255,255,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}
.drone-crosshair {
  position: relative;
  z-index: 1;
  width: 80px; height: 80px;
  border: 1px solid rgba(24,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.drone-crosshair::before, .drone-crosshair::after {
  content: '';
  position: absolute;
  background: rgba(24,255,255,0.4);
}
.drone-crosshair::before { width: 100%; height: 1px; }
.drone-crosshair::after { width: 1px; height: 100%; }
.drone-icon { font-size: 2rem; position: relative; z-index: 2; animation: hover-float 3s ease-in-out infinite; }
@keyframes hover-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
.drone-corner {
  position: absolute;
  width: 12px; height: 12px;
  border-color: var(--cyan);
  border-style: solid;
}
.dc-tl { top: 8px; left: 8px; border-width: 1px 0 0 1px; }
.dc-tr { top: 8px; right: 8px; border-width: 1px 1px 0 0; }
.dc-bl { bottom: 8px; left: 8px; border-width: 0 0 1px 1px; }
.dc-br { bottom: 8px; right: 8px; border-width: 0 1px 1px 0; }
.drone-label {
  position: absolute;
  bottom: 1rem; left: 1rem;
  font-size: 0.65rem;
  color: var(--cyan);
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.drone-list {
  list-style: none;
  margin-top: 1.5rem;
}
.drone-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text2);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.drone-list li::before { content: '→'; color: var(--cyan); flex-shrink: 0; }

/* PROCESS */
#process { background: var(--bg2); border-top: 1px solid var(--border); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 24px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), var(--green-dim), var(--border2), transparent);
}
.process-step {
  padding: 0 1rem;
  text-align: center;
  position: relative;
}
.step-num {
  width: 48px; height: 48px;
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--green);
  margin: 0 auto 1.25rem;
  background: var(--bg2);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.process-step:hover .step-num {
  border-color: var(--green);
  background: var(--green-glow);
  box-shadow: 0 0 20px var(--green-glow);
}
.step-name {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.step-desc {
  font-size: 0.68rem;
  color: var(--text3);
  line-height: 1.7;
}

/* CTA */
#cta-section {
  padding: 6rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4rem;
}
.cta-text .section-title { font-size: 2rem; }
.cta-text p {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--text3);
  line-height: 1.8;
}

/* =================== CV PAGE =================== */
.cv-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.cv-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  gap: 2rem;
}

.cv-name {
  font-family: var(--sans);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.cv-name span { color: var(--green); }

.cv-role {
  font-size: 0.8rem;
  color: var(--text3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.cv-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.cv-contact-item {
  font-size: 0.72rem;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.cv-contact-item span { color: var(--green); }

.cv-download {
  background: var(--green);
  color: var(--bg);
  border: none;
  padding: 0.6rem 1.25rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  cursor: none;
  white-space: nowrap;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  transition: all 0.2s;
  letter-spacing: 0.05em;
}
.cv-download:hover { background: var(--cyan); }

.cv-section { margin-bottom: 3rem; }
.cv-section-title {
  font-size: 0.65rem;
  color: var(--green);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cv-section-title::before { content: '§'; color: var(--text3); }

.cv-entry {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: start;
}
.cv-date {
  font-size: 0.68rem;
  color: var(--text3);
  line-height: 1.6;
  padding-top: 0.2rem;
}
.cv-entry-title {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.cv-entry-org {
  font-size: 0.72rem;
  color: var(--green);
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}
.cv-entry-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.cv-entry-list li {
  font-size: 0.73rem;
  color: var(--text2);
  line-height: 1.7;
  display: flex;
  gap: 0.75rem;
}
.cv-entry-list li::before { content: '▸'; color: var(--text3); flex-shrink: 0; margin-top: 0.05em; }

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.skill-chip {
  font-size: 0.72rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border2);
  color: var(--text2);
  letter-spacing: 0.03em;
  transition: all 0.2s;
}
.skill-chip:hover { border-color: var(--green); color: var(--green); }

.langs-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.lang-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.lang-name {
  width: 100px;
  font-size: 0.75rem;
  color: var(--text2);
}
.lang-bar {
  flex: 1;
  height: 2px;
  background: var(--border);
  position: relative;
}
.lang-fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  background: var(--green);
}
.lang-level {
  width: 80px;
  font-size: 0.65rem;
  color: var(--text3);
  text-align: right;
  letter-spacing: 0.05em;
}

/* =================== ABOUT PAGE =================== */
.about-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: center;
}
.about-photo-frame {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--bg2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  
}
.about-photo-frame::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px dashed var(--border2);
  pointer-events: none;
}
.about-photo-placeholder {
  font-size: 5rem;
  opacity: 0.3;
}
.about-photo-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.65rem;
  color: var(--text3);
  letter-spacing: 0.1em;
}

.about-intro-tag {
  font-size: 0.65rem;
  color: var(--green);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.about-intro-tag::before { content: '//'; color: var(--text3); }
.about-h1 {
  font-family: var(--sans);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.about-h1 .accent { color: var(--green); }
.about-lead {
  font-size: 0.8rem;
  color: var(--text2);
  line-height: 2;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}
.story-block h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}
.story-block p {
  font-size: 0.76rem;
  color: var(--text2);
  line-height: 2;
}

.timeline {
  margin-bottom: 5rem;
}
.timeline-title {
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.tl-year {
  font-size: 0.68rem;
  color: var(--green);
  padding-top: 0.2rem;
}
.tl-event {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.tl-desc {
  font-size: 0.72rem;
  color: var(--text3);
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 5rem;
}
.value-card {
  background: var(--bg);
  padding: 2rem;
}
.value-icon { font-size: 1.5rem; margin-bottom: 1rem; }
.value-name {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.value-desc {
  font-size: 0.72rem;
  color: var(--text3);
  line-height: 1.7;
}

/* =================== CONTACT PAGE =================== */
.contact-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.contact-header {
  margin-bottom: 4rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.contact-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.contact-item-label {
  font-size: 0.65rem;
  color: var(--text3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-item-value {
  font-size: 0.8rem;
  color: var(--text2);
}
.contact-item-value a {
  color: var(--green);
  text-decoration: none;
  cursor: none;
}
.contact-item-value a:hover { text-decoration: underline; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
  font-size: 0.65rem;
  color: var(--text3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.form-input, .form-textarea, .form-select {
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.78rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--green); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-select { cursor: none; }
option { background: var(--bg2); }

.form-submit {
  background: var(--green);
  color: var(--bg);
  border: none;
  padding: 0.85rem;
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: none;
  letter-spacing: 0.05em;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: all 0.2s;
}
.form-submit:hover { background: var(--cyan); }

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg2);
}
.footer-copy {
  font-size: 0.68rem;
  color: var(--text3);
}
.footer-copy span { color: var(--green); }
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 0.68rem;
  color: var(--text3);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  cursor: none;
}
.footer-links a:hover { color: var(--green); }

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  nav { padding: 0 1rem; }
  #hero { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .hero-terminal { display: none; }
  .stats-bar { grid-template-columns: repeat(2,1fr); padding: 2rem 1.5rem; }
  section { padding: 4rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .drone-layout { grid-template-columns: 1fr; }
  .drone-visual { display: none; }
  #cta-section { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 2rem; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps::before { display: none; }
  footer { padding: 1.5rem; flex-direction: column; gap: 1rem; text-align: center; }
  .cv-entry { grid-template-columns: 1fr; gap: 0.5rem; }
  .about-hero { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-links li:not(:last-child) { display: none; }
}