/* ═══════════════════════════════════════
   FMS RAPTORSCAN — Stylesheet
   Dark · Metallic · Green accent
═══════════════════════════════════════ */

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

:root {
  /* Backgrounds — pure dark, zero green tint */
  --bg:   #090909;
  --bg2:  #0f0f0f;
  --bg3:  #141414;
  --bg4:  #1a1a1a;
  --bg5:  #202020;

  /* Brand green */
  --green:       #6bbf3e;
  --green-dim:   #4a8a29;
  --green-dark:  #1e3d12;
  --green-glow:  rgba(107, 191, 62, 0.14);
  --green-line:  rgba(107, 191, 62, 0.18);

  /* Metallic palette */
  --metal-hi:    #c8c8c8;
  --metal-mid:   #888888;
  --metal-low:   #444444;
  --metal-b1:    rgba(180, 180, 180, 0.18);
  --metal-b2:    rgba(100, 100, 100, 0.25);
  --metal-grad:  linear-gradient(145deg,
                   rgba(60,60,60,0.7)   0%,
                   rgba(160,160,160,0.3) 35%,
                   rgba(50,50,50,0.5)   55%,
                   rgba(130,130,130,0.25) 80%,
                   rgba(55,55,55,0.6)   100%);
  --metal-grad-hi: linear-gradient(145deg,
                   rgba(107,191,62,0.35)  0%,
                   rgba(180,180,180,0.5)  30%,
                   rgba(107,191,62,0.2)   55%,
                   rgba(200,200,200,0.4)  75%,
                   rgba(107,191,62,0.3)   100%);

  /* Text */
  --text:        #dde8d5;
  --text-mid:    #98b08a;
  --text-muted:  #5a7050;

  /* Grid */
  --grid-line:   rgba(100, 100, 100, 0.07);

  /* Misc */
  --radius:    8px;
  --radius-lg: 14px;
  --font-head: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
  --nav-h:     70px;
  --t:         0.3s ease;
}

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px)); }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-green { color: var(--green); }


/* ── Metallic border utility (mask technique) ── */
.metal-border {
  position: relative;
}
.metal-border::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--metal-grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: background var(--t);
}


/* ── Scroll-in animations ── */
[data-animate] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].in-view {
  opacity: 1;
  transform: none;
}


/* ══════════════════════════════════
   NAVBAR
══════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  /* Height grows to cover status bar on notched/edge-to-edge devices */
  height: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
  transition: background var(--t), box-shadow var(--t);
}
#navbar.scrolled {
  background: rgba(9, 9, 9, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(140, 140, 140, 0.1);
}
/* Always solid on mobile */
@media (max-width: 768px) {
  #navbar {
    background: rgba(9, 9, 9, 0.97) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 2px 0 rgba(107, 191, 62, 0.22);
  }
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  /* Push content below status bar; height stays --nav-h for the actual nav row */
  padding-top: env(safe-area-inset-top, 0px);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-logo { flex-shrink: 0; }
.nav-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(107, 191, 62, 0.25));
  transition: filter var(--t);
}
.nav-logo:hover img {
  filter: drop-shadow(0 0 14px rgba(107, 191, 62, 0.45));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links li a {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: color var(--t), background var(--t);
}
.nav-links li a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-links li a.active { color: var(--green); }

.nav-cta {
  background: var(--green) !important;
  color: #0a100a !important;
  font-weight: 700 !important;
  padding: 7px 20px !important;
}
.nav-cta:hover { background: #7dd44a !important; }

/* FMS suite sibling link */
.nav-suite-link {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  flex-shrink: 0;
  transition: color 0.3s ease;
}
.nav-suite-link:hover { color: var(--green); }

/* Language switcher */
.lang-switcher {
  display: flex;
  gap: 2px;
  background: var(--bg4);
  border: 1px solid rgba(140,140,140,0.15);
  border-radius: 7px;
  padding: 3px;
  flex-shrink: 0;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  background: none;
  border: none;
  border-radius: 5px;
  padding: 5px 9px;
  cursor: pointer;
  text-decoration: none;
  transition: color var(--t), background var(--t);
  line-height: 1;
}
.lang-btn.active {
  background: var(--green);
  color: #0a100a;
}
.lang-btn:hover:not(.active) {
  color: var(--text);
  background: rgba(255,255,255,0.07);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 60px) 24px 110px;
}

/* Drone photo base layer */
.hero-bg-img {
  position: absolute;
  inset: 0;
  background: url('images/hero.webp') center 40% / cover no-repeat;
  opacity: 0.22;
  z-index: 0;
  /* Fade out toward left where text lives */
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 40%, black 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 40%, black 100%);
}

/* Neutral grid background — no green tint */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-color: var(--bg);
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 85% 70% at 45% 45%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 70% at 45% 45%, black 20%, transparent 100%);
}

/* Metallic sheen overlay on hero */
#hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 55%; height: 65%;
  background: radial-gradient(ellipse, rgba(180,180,180,0.025) 0%, transparent 65%);
  pointer-events: none;
}

/* Scan line */
.scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(107,191,62,0.5) 50%, transparent 95%);
  opacity: 0;
  animation: scan 6s linear infinite;
}
@keyframes scan {
  0%   { top: -2%; opacity: 0; }
  5%   { opacity: 0.7; }
  95%  { opacity: 0.7; }
  100% { top: 102%; opacity: 0; }
}

/* Crosshair */
.hero-crosshair {
  position: absolute;
  right: 7%;
  top: 50%;
  transform: translateY(-50%);
  width: min(400px, 36vw);
  color: var(--green);
  animation: rotate-slow 35s linear infinite;
  pointer-events: none;
  opacity: 0.55;
  filter: drop-shadow(0 0 12px rgba(107,191,62,0.15));
}
@keyframes rotate-slow {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--green);
  /* Metallic + green border */
  background: linear-gradient(135deg, rgba(107,191,62,0.07), rgba(180,180,180,0.04));
  border: 1px solid;
  border-image: linear-gradient(135deg, rgba(107,191,62,0.45), rgba(160,160,160,0.3), rgba(107,191,62,0.35)) 1;
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 28px;
}
/* border-image doesn't work with border-radius; use outline trick */
.hero-badge {
  border: none;
  box-shadow: 0 0 0 1px rgba(107,191,62,0.35), inset 0 0 0 1px rgba(120,120,120,0.1);
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2.2s ease infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50%     { opacity:0.35; transform:scale(0.55); }
}

#hero h1 {
  font-family: var(--font-head);
  font-size: clamp(50px, 8vw, 94px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.72;
  max-width: 520px;
  margin-bottom: 42px;
}

/* ── Campaign hero ── */
.campaign-badge {
  box-shadow: 0 0 0 1px rgba(107,191,62,0.55),
              inset 0 0 0 1px rgba(120,120,120,0.1),
              0 0 22px rgba(107,191,62,0.18) !important;
}
.camp-discount {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin: 4px 0 26px;
}
.camp-discount-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(46px, 8vw, 72px);
  line-height: 0.9;
  color: var(--green);
  letter-spacing: -0.01em;
  text-shadow: 0 0 28px rgba(107,191,62,0.35);
}
.camp-pct { font-size: 0.55em; margin-left: 2px; }
.camp-discount-label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  max-width: 220px;
  line-height: 1.4;
}

/* SEO keyword lede under the H1 */
.hero-lede {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 600px;
  margin: 14px 0 30px;
}

/* Campaign promo block (demoted from H1 to a callout) */
.camp-promo {
  position: relative;
  border: 1px solid var(--green-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(107,191,62,0.07), rgba(20,20,20,0.25));
  padding: 22px 24px;
  max-width: 560px;
  margin-bottom: 34px;
}
.camp-flag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.camp-promo .camp-discount {
  align-items: center;
  gap: 16px;
  margin: 0 0 14px;
}
.camp-promo-text { display: flex; flex-direction: column; gap: 3px; }
.camp-subhead {
  font-family: var(--font-head);
  font-size: clamp(19px, 2.6vw, 24px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.12;
  margin: 0;
}
.camp-promo .camp-discount-label { max-width: none; font-size: 14px; }
.camp-promo .hero-sub { font-size: 15px; margin: 0; max-width: none; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-strip .dot { color: var(--green); opacity: 0.4; }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 38px; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(60,60,60,0.5), rgba(140,140,140,0.15));
  box-shadow: 0 0 0 1px rgba(130,130,130,0.2);
  animation: bounce 2.6s ease infinite;
}
.scroll-hint span {
  display: block;
  width: 8px; height: 8px;
  border-right: 2px solid var(--metal-mid);
  border-bottom: 2px solid var(--metal-mid);
  transform: rotate(45deg) translateY(-2px);
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0);   opacity: 0.6; }
  50%     { transform: translateX(-50%) translateY(7px); opacity: 1;   }
}


/* ══════════════════════════════════
   BUTTONS
══════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--green);
  color: #090f09;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.btn-primary:hover {
  background: #7dd44a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(107,191,62,0.28);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(145deg, rgba(40,40,40,0.6), rgba(25,25,25,0.4));
  color: var(--text-mid);
  padding: 14px 26px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(130,130,130,0.2);
  transition: color var(--t), box-shadow var(--t), background var(--t);
}
.btn-ghost:hover {
  color: var(--text);
  box-shadow: 0 0 0 1px rgba(180,180,180,0.35);
  background: linear-gradient(145deg, rgba(55,55,55,0.7), rgba(35,35,35,0.5));
}
.btn-full { width: 100%; justify-content: center; }


/* ══════════════════════════════════
   SECTION SHARED
══════════════════════════════════ */
section { padding: 104px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  /* Metallic pill border */
  background: linear-gradient(135deg, rgba(107,191,62,0.06), rgba(150,150,150,0.04));
  box-shadow: 0 0 0 1px rgba(107,191,62,0.3), inset 0 0 0 1px rgba(100,100,100,0.08);
  border-radius: 100px;
  padding: 5px 15px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
/* Metallic underline on section titles */
.section-header h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 2px;
  margin: 14px auto 0;
  background: linear-gradient(90deg,
    transparent,
    var(--metal-mid) 20%,
    var(--green) 50%,
    var(--metal-mid) 80%,
    transparent
  );
}
.section-header p {
  font-size: 15px;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto;
}


/* ══════════════════════════════════
   SERVICES
══════════════════════════════════ */
#services { background: var(--bg2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

/* Card base */
.service-card {
  background: var(--bg3);
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}

/* Metallic gradient border via mask */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--metal-grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: background var(--t);
}

/* Green top shimmer on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green) 50%, transparent);
  opacity: 0;
  transition: opacity var(--t);
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5);
}
.service-card:hover::after  { background: var(--metal-grad-hi); }
.service-card:hover::before { opacity: 1; }

/* Icon */
.service-icon {
  width: 50px; height: 50px;
  background: linear-gradient(145deg, rgba(50,50,50,0.8), rgba(30,30,30,0.6));
  box-shadow: 0 0 0 1px rgba(120,120,120,0.18), inset 0 1px 0 rgba(180,180,180,0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--green);
  transition: box-shadow var(--t);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card:hover .service-icon {
  box-shadow: 0 0 0 1px rgba(107,191,62,0.35), 0 0 12px rgba(107,191,62,0.1);
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.service-card p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 18px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.service-tags li {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(107,191,62,0.07);
  box-shadow: 0 0 0 1px rgba(107,191,62,0.18);
  border-radius: 4px;
  padding: 3px 8px;
}

/* DJI badge */
.dji-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--metal-mid);
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(30,30,30,0.8), rgba(20,20,20,0.6));
  box-shadow: 0 0 0 1px rgba(100,100,100,0.15);
  border-radius: 8px;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.dji-badge svg { color: var(--metal-mid); opacity: 0.7; }


/* ══════════════════════════════════
   CLIENTS
══════════════════════════════════ */
#clients {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* ── Clients background video ── */
.clients-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.14;
  filter: blur(4px);
  transform: scale(1.04); /* prevents blur edge bleed */
  z-index: 0;
  pointer-events: none;
}
/* Dark gradient overlay so cards stay legible */
.clients-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(9,9,9,0.70) 0%,
    rgba(9,9,9,0.50) 40%,
    rgba(9,9,9,0.70) 100%
  );
  z-index: 1;
  pointer-events: none;
}
/* Content sits on top */
#clients .container { position: relative; z-index: 2; }

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .clients-video-bg { display: none; }
  .clients-video-overlay { display: none; }
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
}

.client-card {
  background: var(--bg2);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: transform var(--t), box-shadow var(--t);
}
.client-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--metal-grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: background var(--t);
}
.client-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}
.client-card:hover::after { background: var(--metal-grad-hi); }

.client-icon {
  width: 62px; height: 62px;
  background: linear-gradient(145deg, rgba(40,40,40,0.9), rgba(25,25,25,0.7));
  box-shadow: 0 0 0 1px rgba(110,110,110,0.16), inset 0 1px 0 rgba(160,160,160,0.07);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  color: var(--green);
}
.client-icon svg { width: 28px; height: 28px; }

.client-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.client-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}


/* ══════════════════════════════════
   WORK / PORTFOLIO
══════════════════════════════════ */
#work { background: var(--bg2); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}

.work-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--bg3);
  transition: transform var(--t), box-shadow var(--t);
}
/* Metallic border on work items */
.work-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--metal-grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
  transition: background var(--t);
}
.work-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.5);
}
.work-item:hover::after { background: var(--metal-grad-hi); }

.work-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg4);
}
.work-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.work-item:hover .work-img-wrap img { transform: scale(1.05); }

.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(9,9,9,0.96) 0%,
    rgba(9,9,9,0.45) 50%,
    transparent 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity var(--t);
}
.work-item:hover .work-overlay { opacity: 1; }

.work-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(107,191,62,0.12);
  box-shadow: 0 0 0 1px rgba(107,191,62,0.3);
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 8px;
  width: fit-content;
}
.work-overlay p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}

.work-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 18px;
  background: var(--bg4);
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.work-acc { color: var(--green); font-weight: 600; }

/* More card */
.work-more { min-height: 210px; display: flex; }
.work-more .work-more-inner {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; width: 100%; padding: 40px;
  color: var(--text-muted); text-align: center;
  transition: color var(--t);
}
.work-more-inner:hover { color: var(--text-mid); }
.work-more-inner p { font-size: 15px; font-weight: 500; color: var(--text-mid); }
.work-more-inner span { font-size: 13px; color: var(--text-muted); }
.work-more-icon { color: var(--metal-mid); opacity: 0.45; transition: opacity var(--t); }
.work-more-inner:hover .work-more-icon { opacity: 0.85; }


/* ══════════════════════════════════
   ABOUT
══════════════════════════════════ */
#about { background: var(--bg); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-tag { display: inline-block; margin-bottom: 16px; }

.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.about-text p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-drone-img {
  margin: 28px 0 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.about-drone-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.5s ease;
}
.about-drone-img:hover img { transform: scale(1.03); }
/* Metallic border */
.about-drone-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--metal-grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.about-drone-caption {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 10px;
}

.about-langs {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.lang-tag {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--bg3);
  box-shadow: 0 0 0 1px rgba(110,110,110,0.18);
  border-radius: 6px;
  padding: 6px 14px;
  transition: color var(--t), box-shadow var(--t);
}
.lang-tag:hover {
  color: var(--text);
  box-shadow: 0 0 0 1px rgba(180,180,180,0.3);
}

/* Stat cards */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.stat-card {
  background: var(--bg2);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: transform var(--t), box-shadow var(--t);
}
.stat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--metal-grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: background var(--t);
}
.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.stat-card:hover::after { background: var(--metal-grad-hi); }

.stat-val {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  /* Metallic-green gradient text */
  background: linear-gradient(135deg, var(--green) 0%, #a0e065 45%, var(--green-dim) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-lbl {
  font-size: 12.5px;
  color: var(--text-muted);
}


/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */
#contact {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  top: -220px; right: -180px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(107,191,62,0.04) 0%, transparent 65%);
  pointer-events: none;
}
#contact::after {
  content: '';
  position: absolute;
  bottom: -180px; left: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(150,150,150,0.025) 0%, transparent 65%);
  pointer-events: none;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-info .section-tag { display: inline-block; margin-bottom: 16px; }

.contact-info h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.contact-info > p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-details { display: flex; flex-direction: column; gap: 12px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14.5px;
  color: var(--text-mid);
  padding: 13px 16px;
  background: linear-gradient(145deg, rgba(25,25,25,0.9), rgba(18,18,18,0.7));
  border-radius: var(--radius);
  box-shadow: 0 0 0 1px rgba(100,100,100,0.16);
  transition: color var(--t), box-shadow var(--t);
}
a.contact-item:hover {
  color: var(--text);
  box-shadow: 0 0 0 1px rgba(180,180,180,0.28);
}
.contact-icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, rgba(40,40,40,0.9), rgba(25,25,25,0.7));
  box-shadow: 0 0 0 1px rgba(107,191,62,0.28), inset 0 1px 0 rgba(180,180,180,0.05);
  border-radius: 7px;
  color: var(--green);
  flex-shrink: 0;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(145deg, rgba(22,22,22,0.95), rgba(15,15,15,0.9));
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  box-shadow: 0 0 0 1px rgba(100,100,100,0.15);
}
/* Metallic border on form */
.contact-form::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--metal-grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  box-shadow: 0 0 0 1px rgba(90,90,90,0.25);
  border: none;
  outline: none;
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 14px;
  transition: box-shadow var(--t);
  width: 100%;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group select option { background: var(--bg3); color: var(--text); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 1px var(--green), 0 0 0 4px rgba(107,191,62,0.08);
}

.form-note {
  font-size: 11.5px;
  color: var(--text-muted);
  text-align: center;
  margin-top: -4px;
}


/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
  background: var(--bg);
  border-top: 1px solid rgba(100,100,100,0.12);
  padding: 60px 0 32px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-brand { max-width: 240px; }
.footer-logo {
  height: 150px; width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 8px rgba(107, 191, 62, 0.2));
}
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--t);
}
.footer-nav a:hover { color: var(--green); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--t);
}
.footer-contact a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid rgba(100,100,100,0.1);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 11.5px;
  color: var(--text-muted);
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--t);
}
.footer-legal a:hover { color: var(--green); }

/* GDPR note above contact submit */
.form-gdpr {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.form-gdpr a {
  color: var(--text-muted);
  text-decoration: underline;
  transition: color var(--t);
}
.form-gdpr a:hover { color: var(--green); }


/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */

/* Better touch targets globally */
@media (hover: none) and (pointer: coarse) {
  button, a, select, input, textarea {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  .btn-primary, .btn-ghost, .nav-links li a, .contact-item {
    min-height: 44px;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .scan-line { display: none; }
}

/* ══════════════════════════════════
   PRICING
══════════════════════════════════ */
#pricing { background: var(--bg2); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto 24px;
}
.price-card {
  position: relative;
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  border: 1px solid rgba(140,140,140,0.1);
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border-color: var(--green-line);
  background: linear-gradient(160deg, rgba(107,191,62,0.06), rgba(20,20,20,0.25));
}
.price-label {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 18px;
}
.price-amount {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-head);
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}
.price-pre  { font-size: 15px; font-weight: 600; color: var(--text-mid); }
.price-num  { font-size: clamp(34px, 5vw, 46px); font-weight: 700; }
.price-word { font-size: clamp(24px, 3.5vw, 30px); font-weight: 700; }
.price-unit { font-size: 15px; font-weight: 500; color: var(--text-mid); }
.price-vat  { font-size: 12.5px; color: var(--text-muted); margin-bottom: 22px; }
.price-list { display: flex; flex-direction: column; gap: 11px; margin-top: auto; }
.price-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.45;
}
.price-list li svg { flex-shrink: 0; color: var(--green); margin-top: 3px; }
.pricing-note {
  max-width: 720px;
  margin: 0 auto 26px;
  text-align: center;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}
.pricing-cta { text-align: center; }

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

/* ══════════════════════════════════
   PROCESS / HOW IT WORKS
══════════════════════════════════ */
#process { background: var(--bg); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-step {
  position: relative;
  background: var(--bg2);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  border: 1px solid rgba(140,140,140,0.08);
}
.process-step::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--metal-grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.5;
}
.process-num {
  display: block;
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 9px;
}
.process-step p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.62;
}

/* ══════════════════════════════════
   FAQ
══════════════════════════════════ */
#faq { background: var(--bg2); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(140,140,140,0.12);
  border-radius: var(--radius);
  background: var(--bg);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--t);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 400;
  color: var(--green);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--t);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--green); }
.faq-answer { padding: 0 22px 20px; }
.faq-answer p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
}

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

/* ── Tablet landscape ── */
@media (max-width: 980px) {
  .about-inner,
  .contact-inner  { grid-template-columns: 1fr; gap: 48px; }
  .hero-crosshair { display: none; }
  .services-grid  { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

  /* Hero image on tablet — fade from bottom instead of side */
  .hero-bg-img {
    mask-image: linear-gradient(to top, transparent 0%, rgba(0,0,0,0.5) 40%, black 100%);
    -webkit-mask-image: linear-gradient(to top, transparent 0%, rgba(0,0,0,0.5) 40%, black 100%);
    opacity: 0.18;
  }
}

/* ── Tablet portrait ── */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  section { padding: 64px 0; }
  .container { padding: 0 18px; }

  /* Nav — hamburger layout */
  .nav-links {
    position: fixed;
    top: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
    left: 0; right: 0;
    background: rgba(9,9,9,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(100,100,100,0.14);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 20px;
    transform: translateY(-110%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
    z-index: 999;
  }
  .nav-links.open   { transform: translateY(0); pointer-events: all; }
  .nav-links li a   { display: block; padding: 13px 16px; font-size: 18px; border-radius: var(--radius); }
  .nav-links li a:hover { background: rgba(255,255,255,0.05); }
  .nav-cta          { margin-top: 10px; text-align: center; border-radius: var(--radius) !important; }
  .nav-toggle       { display: flex; }

  /* Lang switcher stays in navbar, compact */
  .lang-switcher    { margin-left: 0; }
  .lang-btn         { padding: 4px 7px; font-size: 10px; }

  /* Hero */
  #hero {
    min-height: 100dvh;
    align-items: flex-start;
    padding: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 80px) 18px 60px;
  }
  .hero-badge       { width: fit-content; max-width: 100%; white-space: normal; margin-bottom: 20px; }
  #hero h1          { font-size: clamp(38px, 10vw, 56px); margin-bottom: 16px; }
  .hero-sub         { font-size: 15px; margin-bottom: 28px; }
  .hero-sub br      { content: ''; display: block; margin-top: 6px; }
  .hero-actions     { flex-direction: column; gap: 12px; margin-bottom: 28px; }
  .btn-primary,
  .btn-ghost        { width: 100%; justify-content: center; padding: 15px 24px; }
  .hero-strip       { gap: 5px 10px; font-size: 10px; }
  .hero-bg-img      { opacity: 0.14; }
  .scroll-hint      { display: none; }

  /* Services */
  .services-grid    { grid-template-columns: 1fr 1fr; gap: 14px; }
  .service-card     { padding: 26px 20px; }
  .dji-badge        { font-size: 10px; padding: 10px 16px; text-align: center; }

  /* Clients */
  .client-grid      { grid-template-columns: 1fr; gap: 14px; }
  .client-card      { padding: 28px 24px; }

  /* Work */
  .work-grid        { grid-template-columns: 1fr 1fr; gap: 14px; }
  .work-more        { min-height: 160px; }

  /* About */
  .about-drone-img img { height: 160px; }
  .about-stats      { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card        { padding: 22px 18px; }
  .stat-val         { font-size: 28px; }

  /* Contact */
  .contact-form     { padding: 24px 20px; }
  .form-row         { grid-template-columns: 1fr; gap: 14px; }

  /* Footer */
  .footer-inner     { flex-direction: column; gap: 28px; }
  .footer-logo      { height: 100px; }
  .footer-bottom    { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* ── Phone ── */
@media (max-width: 540px) {
  section           { padding: 52px 0; }
  .container        { padding: 0 14px; }

  #hero             { padding: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 60px) 14px 60px; }
  #hero h1          { font-size: clamp(34px, 10vw, 48px); line-height: 1; }
  .hero-badge       { font-size: 10px; padding: 5px 12px; }

  .section-header   { margin-bottom: 40px; }
  .section-header h2 { font-size: clamp(26px, 7vw, 36px); }

  /* Services — 1 column on small phones */
  .services-grid    { grid-template-columns: 1fr; }
  .service-card     { padding: 24px 18px; }

  /* Work — 1 column */
  .work-grid        { grid-template-columns: 1fr; }
  .work-img-wrap    { aspect-ratio: 16/9; }

  /* About */
  .about-stats      { grid-template-columns: 1fr 1fr; }
  .about-drone-img img { height: 140px; }

  /* Footer */
  .footer-logo      { height: 80px; }
  .footer-inner     { text-align: center; align-items: center; }
  .footer-nav,
  .footer-contact   { align-items: center; }

  /* Form */
  .contact-form     { padding: 20px 16px; }
}

/* ── Small phone ── */
@media (max-width: 380px) {
  :root             { --nav-h: 60px; }
  #hero h1          { font-size: 32px; }
  .about-stats      { grid-template-columns: 1fr; }
  .lang-btn         { padding: 3px 6px; }
  .nav-logo img     { height: 40px; }
}
