@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/Lato/lato-light.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Lato/lato-regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/29550bb7-0206-4e1f-b4f3-e7625af974ee.woff2") format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/9bd481fb-925b-44d4-9220-fe48ff2fddd8.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --surface2: #f4f4f5;
  --ink: #111827;
  --ink2: #374151;
  --cyan: oklch(0.55 0.12 195);
  --cyan-light: oklch(0.95 0.03 195);
  --cyan-mid: oklch(0.65 0.14 195);
  --gold: oklch(0.6 0.14 65);
  --gold-light: oklch(0.96 0.04 65);
  --muted: #6b7280;
  --border: rgba(17, 24, 39, 0.08);
  --border-strong: rgba(17, 24, 39, 0.15);
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Poppins", sans-serif;
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);
  --radius: 12px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  background: var(--bg);
  color: var(--muted);
  font-family: var(--font-body) !important;
  overflow-x: hidden;
  line-height: 1.6;
}
p {
  color: var(--muted);
  font-weight: 300;
}
strong {
  color: var(--ink);
}
body.nav-open {
  overflow: hidden;
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--cyan-mid);
  border-radius: 2px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

.navbar {
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.8) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  padding-top: 0.8rem !important;
  padding-bottom: 0.8rem !important;
}

/* ─── HERO ─── */

#hero {
  height: 82vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-img {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero.webp");
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(17, 24, 39, 0.7) 0%,
      rgba(17, 24, 39, 0.4) 50%,
      rgba(17, 24, 39, 0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  max-width: 780px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s ease forwards;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan-mid);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.6);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 8rem);
  line-height: 0.9;
  color: #ffffff;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s ease forwards;
}

.hero-title .stroke {
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.5);
  color: transparent;
  display: block;
}

.hero-title .teal {
  color: oklch(0.75 0.15 195);
}

.hero-sub {
  margin-top: 1.8rem;
  max-width: 480px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s ease forwards;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s ease forwards;
}

.btn-brand {
  background: var(--cyan);
  color: white;
  padding: 0.95rem 2.2rem;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition:
    background 0.3s,
    transform 0.2s,
    box-shadow 0.3s;
  border-radius: var(--radius);
  border: none;
}

.btn-brand:hover {
  background: oklch(0.42 0.17 195);
  transform: translateY(-2px);
  /* box-shadow: 0 8px 30px rgba(0, 140, 130, 0.5); */
}

.btn-ghost-light {
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: white;
  padding: 0.95rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition:
    border-color 0.3s,
    background 0.3s;
  border-radius: var(--radius);
}

.btn-ghost-light:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

.btn-ghost {
  border: 1.5px solid var(--border-strong);
  color: var(--ink);
  padding: 0.95rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition:
    border-color 0.3s,
    color 0.3s;
  border-radius: var(--radius);
}

.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 3rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
  animation: fadeUp 1s 1.3s ease forwards;
}

.hero-scroll .line {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.hero-img-credit {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  z-index: 2;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.3);
  font-style: italic;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

/* ─── STATS BAND ─── */
.stats-band {
  background: var(--ink);
  color: white;
}
.stat-item {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--cyan-mid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.stat-item.visible::before {
  transform: scaleX(1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: white;
  line-height: 1;
  display: block;
}

.stat-number .unit {
  color: oklch(0.7 0.14 195);
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.5rem;
}

/* ─── SECTION UTILS ─── */
section {
  padding: 60px 0;
}

.section-tag {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-tag::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--cyan);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 72px);
  line-height: 0.95;
  color: var(--ink);
  font-weight: 500;
}

.section-title .outline {
  -webkit-text-stroke: 1.5px rgba(13, 12, 26, 0.25);
  color: transparent;
}

.section-title .teal {
  color: var(--cyan);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.35s;
}

.reveal-delay-4 {
  transition-delay: 0.5s;
}

/* ─── ABOUT ─── */
#about {
  padding: 80px 0;
}

.about-inner {
  max-width: 1300px;
  margin-inline: auto;


  gap: 7rem;
  align-items: center;
}

.about-text p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-top: 1.4rem;
  font-weight: 300;
}

.about-text p strong {
  color: var(--ink2);
  font-weight: 500;
}

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.chip {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--cyan-light);
  color: var(--cyan);
  padding: 0.35rem 0.9rem;
  font-weight: 600;
  border-radius: 100px;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
  color: var(--cyan);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition:
    gap 0.3s,
    border-color 0.3s;
}

.about-link:hover {
  gap: 1rem;
  border-color: var(--cyan);
}

.about-link::after {
  content: "→";
}

.about-visual {
  position: relative;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 4/4.2;
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
}

.about-img-float {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 55%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--surface);
  border-radius: var(--radius);
}

.about-badge {
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  background: var(--cyan);
  color: white;
  padding: 1.2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-badge .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
}

.about-badge .lbl {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.2rem;
  opacity: 0.85;
}

/* ─── SERVICES ─── */
/* ─── SOLUTIONS ─── */
#services {
  background: var(--bg)
}

.solutions-inner {
  max-width: 1300px;
  margin-inline: auto;
}

.solutions-header {
  margin-bottom: 3rem;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 14px;
}

/* Each tile */
.sol-tile {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  background: var(--surface2);
}

/* Image */
.sol-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.sol-tile:hover .sol-img {
  transform: scale(1.07);
}

/* Permanent gradient overlay — stronger at bottom */
.sol-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 20, 0.72) 0%,
    rgba(10, 10, 20, 0.18) 45%,
    transparent 70%
  );
  transition: background 0.45s ease;
}

.sol-tile:hover .sol-overlay {
  background: linear-gradient(
    to top,
    rgba(10, 10, 20, 0.82) 0%,
    rgba(10, 10, 20, 0.25) 45%,
    transparent 70%
  );
}

/* Cyan accent line that grows in on hover */
.sol-tile::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sol-tile:hover::after {
  transform: scaleX(1);
}

/* Label area */
.sol-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.sol-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--cyan);
  line-height: 1;
  transition: opacity 0.3s;
}

.sol-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  color: #ffffff;
  line-height: 1.1;
  transition: letter-spacing 0.35s ease;
}

.sol-tile:hover .sol-title {
  letter-spacing: 0.07em;
}

/* ─── INDUSTRIES ─── */
#industries {
  background: var(--ink);
  color: white;
}

.industries-inner {
  max-width: 1300px;
  margin-inline: auto;
}

.industries-header {
  margin-bottom: 3rem;
}

.industries-header .section-tag {
  color: oklch(0.7 0.14 195);
  font-weight: 600;
}

.industries-header .section-title {
  color: white;
}

.industries-header .section-title .outline {
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.2);
}

.industries-grid {
  background: transparent;
}

.industry-card {
  background: var(--ink);
  padding: 2.5rem;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(135deg, oklch(0.2 0.06 195) 0%, transparent 60%); */
  opacity: 0;
  transition: opacity 0.4s;
}

.industry-card:hover {
  background: oklch(0.12 0.04 220);
}

.industry-card:hover::after {
  opacity: 1;
}

.industry-icon {
  margin-bottom: 1.5rem;
}

.industry-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: white;
  margin-bottom: 0.7rem;
}

.industry-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  font-weight: 300;
}

.industry-tag {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: oklch(0.7 0.14 195);
  font-weight: 500;
}

/* ─── DRONE IN ACTION (full-bleed) ─── */
.drone-action-strip {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.drone-action-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.drone-action-strip:hover img {
  transform: scale(1);
}

.drone-action-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(13, 12, 26, 0.8) 0%,
      rgba(13, 12, 26, 0.3) 60%,
      transparent 100%);
  display: flex;
  align-items: center;
}

.drone-action-text {
  max-width: 800px;
  width: 100%;
  color: white;
}

.drone-action-text h3 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 6rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.drone-action-text p {
  color: rgba(255, 255, 255, 1);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 300;
  max-width: 380px;
  font-family: var(--font-body);
}

.drone-action-text .btn-brand {
  margin-top: 2rem;
  display: inline-block;
  border-radius: var(--radius);
}

/* ─── WHY US ─── */
#why {
  background: var(--bg);
}

.why-inner {
  max-width: 1300px;
  margin-inline: auto;
}

.why-header {
  margin-bottom: 3rem;
}

.why-grid {}

.why-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem;
  border: 1px solid var(--border);
  background: var(--surface);
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  border-radius: var(--radius);
  height: 100%;
}

.why-item:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-sm);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: var(--cyan-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-content h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.why-content p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}

/* ─── WORK ─── */

.work-grid {
  display: grid;
  grid-template-columns: 5fr 3fr 3fr;
  grid-template-rows: 280px 280px;
  gap: 1.5px;
  background: var(--border);
}

.work-item:first-child {
  grid-row: span 2;
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

#work {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.work-inner {
  max-width: 1300px;
  margin-inline: auto;
}

.work-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.work-grid {
  background: transparent;
}

.work-item {
  position: relative;
  overflow: hidden;
  background: var(--surface2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  /* aspect-ratio: 4 / 3; */
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.work-item:hover img {
  transform: scale(1.1);
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(13, 12, 26, 0.9) 0%,
      rgba(13, 12, 26, 0.4) 30%,
      transparent 70%);
  transition: background 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.work-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.work-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: white;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

/* ─── TESTIMONIALS ─── */
#testimonials {
  background: var(--bg);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.testi-inner {
  max-width: 1300px;
  margin-inline: auto;
}

.testi-header {
  margin-bottom: 3rem;
}

.testi-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Google badge */
.testi-google-badge {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1.4rem;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: box-shadow 0.3s, transform 0.3s;
  flex-shrink: 0;
}

.testi-google-badge:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.tgb-glogo {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.tgb-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.tgb-top {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.tgb-score {
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}

.tgb-stars {
  color: #FBBC04;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.tgb-label {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* Track wrapper — clips overflow */
.testi-track-wrap {
  overflow: hidden;
}

.testi-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  align-items: stretch;
  cursor: grab;
  user-select: none;
}

.testi-track.is-dragging {
  cursor: grabbing;
  transition: none;
}

/* Cards */
.testi-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 2rem 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.testi-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testi-reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--surface2);
  border: 1px solid var(--border);
  overflow: hidden;
  object-fit: cover;
}
.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testi-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.2;
}

.testi-g-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.85;
}

.testi-stars-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testi-stars {
  color: #FBBC04;
  font-size: 1.05rem;
  letter-spacing: 2px;
  line-height: 1;
}

.testi-verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #4285F4;
  border-radius: 50%;
  flex-shrink: 0;
}

.testi-verified svg {
  width: 10px;
  height: 10px;
}

.testi-text {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
  flex: 1;
  position: relative;
}

/* Nav row */
.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.75rem;
}

.testi-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: var(--border-strong);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  padding: 0;
}

.testi-dot.active {
  width: 28px;
  background: var(--cyan);
}

.testi-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--ink2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
}

.testi-arrow svg {
  width: 18px;
  height: 18px;
}

.testi-arrow:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #fff;
}

.testi-arrow:disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* ─── FAQ ─── */
#faq {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.faq-inner {
  max-width: 900px;
  margin-inline: auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--border-strong);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--muted);
  transition:
    background 0.3s,
    border-color 0.3s,
    color 0.3s,
    transform 0.3s;
}

.faq-item.open .faq-icon {
  background: var(--cyan);
  border-color: var(--cyan);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
}

/* ─── CLIENTS ─── */
#clients {
  overflow: hidden;
  padding: 60px 0;
  background: var(--surface);
}

.clients-header {
  text-align: center;
  padding: 0 3rem;
  margin-bottom: 2.5rem;
}

.clients-header p {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.marquee-wrap {
  position: relative;
}

.marquee-wrap::before,
.marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--surface), transparent);
}

.marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--surface), transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
  align-items: center;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee-track img {
  height: 65px;
  width: auto;
  margin: 0 40px;
  transition: all 0.4s ease;
  object-fit: contain;
}

.marquee-track img:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.1);
}

.client-name::after {
  content: "·";
  color: var(--cyan);
  font-size: 1.4rem;
}

.client-name:hover {
  color: var(--ink);
}

/* ─── CTA ─── */
#cta {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/f44b2a9e-0d6c-4bbf-84b1-ca55c09dde9c.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.7);
}

.cta-inner {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.cta-inner .section-tag {
  justify-content: center;
  color: oklch(0.7 0.14 195);
  font-weight: 600;
}

.cta-inner .section-tag::before {
  background: oklch(0.7 0.14 195);
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.9;
  color: white;
  margin-bottom: 1.5rem;
}

.cta-title .teal {
  color: oklch(0.75 0.15 195);
}

.cta-sub {
  color: rgba(255, 255, 255, 1);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-divider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 3rem;
}

.cta-contact-item {
  padding: 0 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-contact-item:last-child {
  border-right: none;
}

.cta-contact-item .lbl {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.4rem;
}

.cta-contact-item a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.cta-contact-item a:hover {
  color: oklch(0.75 0.15 195);
}

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  color: white;
  padding: 5rem 3rem 2rem;
}

.footer-grid {
  max-width: 1300px;
  margin-inline: auto;


  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.footer-brand-dot {
  width: 8px;
  height: 8px;
  background: oklch(0.7 0.14 195);
  border-radius: 50%;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.88rem;
  line-height: 1.8;
  font-weight: 300;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.72rem;
  transition:
    border-color 0.3s,
    color 0.3s;
}

.footer-social a:hover {
  border-color: oklch(0.7 0.14 195);
  color: oklch(0.7 0.14 195);
}

.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 300;
  transition: color 0.3s;
}

.footer-col ul a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1300px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.78rem;
  font-weight: 300;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  font-size: 0.78rem;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: white;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about-badge {
    right: 1rem;
  }

  .solutions-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 240px);
  }

  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .testi-card {
    flex: 0 0 calc(50% - 0.75rem);
  }

  .stats-band {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .work-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .work-item:first-child {
    grid-row: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }

  nav.scrolled {
    padding: 0.8rem 1.5rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: relative;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--surface);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: right 0.4s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: flex;
  }

  .nav-open .nav-links {
    right: 0;
  }

  .nav-links li {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
  }

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

  .nav-open .nav-links li:nth-child(1) {
    transition-delay: 0.1s;
  }

  .nav-open .nav-links li:nth-child(2) {
    transition-delay: 0.2s;
  }

  .nav-open .nav-links li:nth-child(3) {
    transition-delay: 0.3s;
  }

  .nav-open .nav-links li:nth-child(4) {
    transition-delay: 0.4s;
  }

  .nav-open .nav-links li:nth-child(5) {
    transition-delay: 0.5s;
  }

  .nav-cta {
    display: none;
  }

  .nav-actions .nav-cta {
    display: flex;
  }

  section {
    padding: 5rem 1.5rem;
  }

  .hero-content {
    padding-top: 5rem;
  }

  .hero-scroll {
    left: 1.5rem;
  }

  .stats-band {
    grid-template-columns: 1fr 1fr;
    padding: 0;
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }

  .testi-card {
    flex: 0 0 calc(100% - 0rem);
  }

  .testi-title-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .work-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .cta-divider {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cta-contact-item {
    border-right: none;
    padding: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .drone-action-overlay {
    padding: 0;
  }

  .about-img-float {
    display: none;
    border-radius: var(--radius);
  }
  #about {
    padding: 40px 0;
  }
  .solutions-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 220px);
  }

  .work-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ─── MOBILE NAV TOGGLE ─── */
/* Ensure toggler icon is always white (works with/without navbar-dark) */
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.45);
  padding: 0.4rem 0.6rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C255%2C255%2C0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
}

/* Mobile collapsed nav gets a solid background so links are legible */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(10, 10, 20, 0.97);
    backdrop-filter: blur(12px);
    margin: 0 -1.5rem;
    padding: 1.5rem 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 0.75rem;
  }

  .navbar-collapse .nav-link {
    padding: 0.65rem 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.95rem;
  }

  .navbar-collapse .dropdown-menu {
    background: rgba(255, 255, 255, 0.06);
    border: none;
    border-radius: 8px;
    padding: 0.5rem 0;
    box-shadow: none;
    margin-top: 0.25rem;
  }

  .navbar-collapse .dropdown-item {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }

  .navbar-collapse .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
  }

  .navbar-collapse .btn-quote {
    margin-top: 1.25rem;
    width: 100%;
    justify-content: center;
  }
}

/* ─── EXTRA SMALL (< 480px) ─── */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  section,
  footer {
    padding: 40px 0;
  }

  .hero-content {
    padding-top: 4rem;
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-actions .btn-brand,
  .hero-actions .btn-ghost-light {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .stats-band {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.75rem 1.5rem;
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .solutions-grid {
    grid-template-rows: repeat(6, 200px);
    gap: 10px;
  }

  .sol-title {
    font-size: 1.2rem;
  }

  .testi-card {
    padding: 1.5rem;
  }

  .testi-nav {
    gap: 0.75rem;
    margin-top: 2rem;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 1.25rem 0;
  }

  .drone-action-text h3 {
    font-size: clamp(2rem, 12vw, 3.5rem);
  }

  .drone-action-text p {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: clamp(2.2rem, 11vw, 3.5rem);
  }

  .testi-google-badge {
    width: 100%;
  }

  .footer-grid {
    gap: 2rem;
  }
}

/* ─── WHATSAPP STICKY ─── */
.whatsapp-sticky {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transition: transform 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
}

.whatsapp-sticky:hover {
  transform: scale(1.1);
  background-color: #128c7e;
  color: white;
}

.whatsapp-sticky svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* ─── NAV QUOTE BUTTON ─── */
.btn-quote {
  background: #f48d30;
  color: #000;
  font-weight: 605;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  /* box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2); */
  font-size: 14px;
  text-transform: uppercase;
}

.btn-quote:hover {
  /* background: ; */
  color: #000;
  transform: translateY(-2px);
}

.dropdown-hover:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

.btn-quote:active {
  transform: translateY(0);
}

/* ─── NAV PREMIUM ─── */
.navbar-premium {
  background: transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-premium .nav-link {
  transition: color 0.3s;
}
.nav-link {
  font-size: 16px;
}
.navbar-premium .navbar-brand img {
  filter: brightness(0) invert(1);
  transition: filter 0.4s;
}

.navbar-premium .navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

.navbar-premium:hover {
  background: white !important;
  box-shadow: var(--shadow-md);
}

.navbar-premium:hover .nav-link {
  color: var(--ink) !important;
}

.navbar-premium:hover .nav-link:hover {
  color: var(--cyan) !important;
}

.navbar-premium:hover .navbar-brand img {
  filter: none;
}

.navbar-premium:hover .navbar-toggler-icon {
  filter: none;
}

/* Ensure dropdown menu works on hover with transparent nav */
.navbar-premium .dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  margin-top: 10px;
}

.navbar-premium:hover .navbar-brand img {
  filter: none;
}

.navbar-premium:hover .navbar-toggler-icon {
  filter: none;
}

/* Ensure dropdown menu works on hover with transparent nav */
.navbar-premium .dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  margin-top: 10px;
}

/* ─── QUOTE MODAL ─── */
#quoteModal .modal-content {
  background: #0d121f;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
}

#quoteModal .form-control,
#quoteModal .form-select {
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-top: none;
  border-left: none;
  border-right: none;
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 0;
}

#quoteModal .form-control:focus,
#quoteModal .form-select:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--cyan);
  box-shadow: none;
  outline: none;
}

#quoteModal .form-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 0.5rem;
}

#quoteModal .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}

#quoteModal .btn-brand {
  background: var(--cyan);
  border: none;
  border-radius: 12px;
  transition: all 0.3s;
}

#quoteModal .btn-brand:hover {
  background: oklch(0.6 0.14 195);
  transform: translateY(-2px);
}

/* ─── NEW FOOTER ─── */
.footer {
  background: #11141b;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
}

.footer-description {
  font-size: 15px;
  line-height: 1.6;
}

.footer-title {
  color: white;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 700;
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--cyan);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 12px;
}

.footer-list a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  transition: all 0.3s;
  display: inline-block;
}

.footer-list a:hover {
  color: white;
  transform: translateX(5px);
}

.contact-item {
  font-size: 15px;
}

.contact-icon {
  color: var(--cyan);
}

.contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: white;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  transform: translateY(-3px);
  color: white;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.4);
}