:root {
  --navy: #020c45;
  --navy-2: #07145a;
  --navy-3: #0b1b68;
  --gold: #d4af37;
  --gold-soft: #ead88d;
  --orange: #ffa51f;
  --mist: #eef0f3;
  --warm-white: #f6f7f5;
  --white: #ffffff;
  --graphite: #1d2333;
  --muted: #697083;
  --line: rgba(2, 12, 69, 0.12);
  --shadow-sm: 0 14px 35px rgba(2, 12, 69, 0.08);
  --shadow-lg: 0 28px 70px rgba(2, 12, 69, 0.16);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
}

body {
  margin: 0;
  color: var(--graphite);
  background: var(--warm-white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.08;
}

h1 em,
h2 em {
  color: var(--gold);
  font-style: normal;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 86px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 8px;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 19px;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.82);
}

.section-heading h2,
.video-copy h2,
.contact-copy h2,
.drone-copy h2 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 4.4vw, 4rem);
  letter-spacing: -0.045em;
}

.section-heading > p {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading-centered {
  max-width: 800px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading-centered .eyebrow {
  justify-content: center;
}

.section-heading-centered h2,
.section-heading-centered > p {
  margin-inline: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.2;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.main-nav a:focus-visible,
.whatsapp-float:focus-visible {
  outline: 3px solid rgba(255, 165, 31, 0.65);
  outline-offset: 4px;
}

.button svg,
.text-link svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.25);
}

.button-primary:hover {
  box-shadow: 0 17px 36px rgba(212, 175, 55, 0.34);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.button-large {
  min-height: 58px;
  padding: 17px 28px;
  gap: 11px;
}

.button-small {
  min-height: 42px;
  padding: 11px 19px;
  font-size: 0.86rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-soft);
  font-weight: 750;
}

.text-link svg {
  transition: transform 0.25s ease;
}

.text-link:hover svg {
  transform: translateX(5px);
}

.text-link-dark {
  color: var(--navy);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: var(--header-height);
  color: var(--navy);
  background: rgba(246, 247, 245, 0.92);
  border-bottom: 1px solid rgba(2, 12, 69, 0.08);
  backdrop-filter: blur(14px);
  transition: height 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  height: 72px;
  color: var(--graphite);
  background: rgba(248, 248, 246, 0.96);
  border-bottom-color: rgba(2, 12, 69, 0.08);
  box-shadow: 0 8px 30px rgba(2, 12, 69, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 205px;
  height: 58px;
  padding: 8px 13px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(2, 12, 69, 0.08);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(2, 12, 69, 0.06);
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav > a:not(.button) {
  position: relative;
  color: inherit;
  font-size: 0.88rem;
  font-weight: 650;
}

.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav > a:not(.button):hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: calc(var(--header-height) + 34px) 0 44px;
  overflow: hidden;
  color: var(--graphite);
  background:
    radial-gradient(circle at 86% 25%, rgba(212, 175, 55, 0.16), transparent 25%),
    radial-gradient(circle at 7% 88%, rgba(2, 12, 69, 0.06), transparent 30%),
    #f3f5f6;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(2, 12, 69, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 12, 69, 0.22) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to right, black, transparent 62%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -155px;
  width: 68%;
  height: 220px;
  border-top: 22px solid rgba(212, 175, 55, 0.13);
  transform: skewY(-6deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(370px, 0.82fr);
  align-items: center;
  gap: clamp(48px, 7vw, 88px);
}

.hero-copy h1 {
  max-width: 690px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(2.75rem, 4.7vw, 4.45rem);
  letter-spacing: -0.055em;
}

.hero-copy p {
  max-width: 660px;
  max-width: 625px;
  margin-bottom: 28px;
  color: #50596b;
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  color: var(--navy);
  font-size: 0.79rem;
  font-weight: 700;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-points .check {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  z-index: 1;
  width: min(100%, 435px);
  margin-left: auto;
}

.hero-frame {
  position: relative;
  aspect-ratio: 0.79;
  padding: 8px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(2, 12, 69, 0.12);
  border-radius: 42px;
  box-shadow: 0 28px 70px rgba(2, 12, 69, 0.15);
  isolation: isolate;
}

.hero-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 35px;
}

.image-accent {
  position: absolute;
  top: 24px;
  right: -18px;
  z-index: -1;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(212, 175, 55, 0.78);
  border-radius: 42px;
}

.hero-caption {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  gap: 18px;
  padding: 16px 19px;
  background: rgba(2, 12, 69, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  backdrop-filter: blur(12px);
}

.hero-caption div:not(.caption-divider) {
  display: flex;
  flex-direction: column;
}

.hero-caption strong {
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.86rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-caption span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.69rem;
}

.caption-divider {
  height: 34px;
  background: rgba(255, 255, 255, 0.19);
}

.hero .button-ghost {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(2, 12, 69, 0.2);
  backdrop-filter: blur(8px);
}

.hero .button-ghost:hover {
  background: var(--white);
  border-color: rgba(2, 12, 69, 0.36);
}

.scroll-cue {
  position: absolute;
  bottom: 13px;
  left: 50%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(2, 12, 69, 0.5);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  width: 1px;
  height: 30px;
  background: linear-gradient(var(--gold), transparent);
}

/* Introduction */
.intro {
  background: var(--warm-white);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px;
  align-items: center;
}

.intro .section-heading h2 {
  max-width: 560px;
  margin-bottom: 0;
  font-size: clamp(2.3rem, 3.6vw, 3.5rem);
}

.intro-copy {
  padding-top: 8px;
}

.intro-copy p {
  color: var(--muted);
}

.intro-copy .lead {
  color: var(--graphite);
  font-size: 1.16rem;
  line-height: 1.58;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 52px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.trust-strip div {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 105px;
  padding: 26px 30px;
  background: var(--white);
  border-top: 4px solid var(--gold);
}

.trust-strip div + div {
  border-left: 1px solid var(--line);
}

.trust-strip strong {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy);
  background: rgba(212, 175, 55, 0.26);
  border-radius: 12px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.95rem;
}

.trust-strip span {
  color: var(--navy);
  font-weight: 750;
}

/* Services */
.services {
  background: #f0f1f4;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 440px;
  padding: 42px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(2, 12, 69, 0.13);
  border-top: 5px solid var(--gold);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 34px rgba(2, 12, 69, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -75px;
  bottom: -90px;
  width: 180px;
  height: 180px;
  border: 26px solid rgba(212, 175, 55, 0.08);
  transform: rotate(45deg);
}

.service-card:hover {
  z-index: 1;
  border-color: rgba(212, 175, 55, 0.44);
  box-shadow: var(--shadow-lg);
  transform: translateY(-7px);
}

.service-card.featured {
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy);
  border-color: var(--navy);
  border-top-color: var(--gold);
}

.service-card.featured h3 {
  color: var(--white);
}

.service-number {
  position: absolute;
  top: 25px;
  right: 31px;
  color: rgba(2, 12, 69, 0.16);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
}

.featured .service-number {
  color: rgba(255, 255, 255, 0.1);
}

.service-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 40px;
  place-items: center;
  color: var(--navy);
  background: rgba(212, 175, 55, 0.23);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 18px;
}

.featured .service-icon {
  color: var(--navy);
  background: var(--gold);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-card h3 {
  max-width: 390px;
  margin-bottom: 15px;
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
}

.service-card p {
  max-width: 500px;
  color: var(--muted);
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.67);
}

.service-card ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 25px 0 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding: 10px 12px 10px 29px;
  color: var(--navy);
  background: #f2f4f8;
  border: 1px solid rgba(2, 12, 69, 0.09);
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 700;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.service-card.featured li {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
}

/* Drone feature */
.drone-feature {
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}

.drone-feature::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -170px;
  width: 520px;
  height: 520px;
  border: 80px solid rgba(212, 175, 55, 0.05);
  border-radius: 50%;
}

.drone-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(60px, 9vw, 120px);
}

.drone-photo {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  background: #08134f;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.drone-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 12, 69, 0.94) 0%, rgba(2, 12, 69, 0.15) 48%, transparent 72%);
  pointer-events: none;
}

.drone-photo > img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: 52% center;
  transition: transform 0.7s cubic-bezier(.2,.7,.25,1);
}

.drone-photo:hover > img {
  transform: scale(1.025);
}

.drone-photo-overlay {
  position: absolute;
  right: 36px;
  bottom: 49px;
  left: 36px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drone-photo-overlay span {
  color: var(--gold-soft);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.drone-photo-overlay strong {
  max-width: 460px;
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.25rem, 2.3vw, 1.85rem);
  line-height: 1.18;
}

.drone-photo figcaption {
  position: absolute;
  right: 20px;
  bottom: 14px;
  left: 36px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.58rem;
  line-height: 1.35;
}

.drone-photo figcaption a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.drone-copy h2 {
  color: var(--white);
}

.drone-copy > p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.04rem;
}

.feature-list {
  margin: 34px 0 30px;
}

.feature-list > div {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 14px;
  align-items: start;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.feature-list > div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.feature-list span {
  color: var(--gold);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
}

.feature-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
}

.feature-list strong {
  color: var(--white);
}

.drone-cta {
  min-width: 275px;
  box-shadow: 0 16px 38px rgba(255, 165, 31, 0.32);
}

.drone-cta:hover {
  box-shadow: 0 20px 46px rgba(255, 165, 31, 0.44);
}

/* Video */
.video-section {
  background: var(--warm-white);
}

.video-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 70px;
}

.video-frame {
  padding: 10px;
  background: var(--navy);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.video-frame video {
  width: 100%;
  max-height: 590px;
  background: #000;
  border-radius: 16px;
}

/* Method */
.method {
  background: var(--warm-white);
}

.method-top {
  display: grid;
  grid-template-columns: 1.08fr 0.72fr;
  gap: 52px;
  align-items: center;
  margin-bottom: 38px;
}

.method-top .section-heading h2 {
  max-width: 660px;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 3.65vw, 3.55rem);
}

.method-top p {
  max-width: 470px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: steps;
}

.method-steps li {
  position: relative;
  min-height: 225px;
  padding: 28px 26px 26px;
  background: var(--white);
  border: 1px solid rgba(2, 12, 69, 0.13);
  border-top: 5px solid var(--gold);
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(2, 12, 69, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.method-steps li:first-child {
  border-radius: 18px;
}

.method-steps li:last-child {
  border-radius: 18px;
}

.method-steps li:hover {
  z-index: 1;
  border-top-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.method-steps > li > span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 27px;
  place-items: center;
  color: var(--navy);
  background: rgba(212, 175, 55, 0.28);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 12px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
}

.method-steps h3 {
  margin-bottom: 11px;
  font-size: 1.3rem;
}

.method-steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

/* Experience */
.experience {
  padding: 86px 0;
  background: #eceef2;
}

.experience-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 90px;
}

.experience-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 4vw, 3.65rem);
  letter-spacing: -0.045em;
}

.experience-copy p {
  max-width: 530px;
  color: var(--muted);
}

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

.sector-grid > div {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 175px;
  padding: 24px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(2, 12, 69, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  isolation: isolate;
}

.sector-grid > div:hover {
  z-index: 1;
  box-shadow: 0 20px 42px rgba(2, 12, 69, 0.2);
  transform: translateY(-4px);
}

.sector-grid > div > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.55s cubic-bezier(.2,.7,.25,1);
}

.sector-grid > div:hover > img {
  transform: scale(1.07);
}

.sector-grid > div::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(155deg, rgba(2, 12, 69, 0.67) 0%, rgba(2, 12, 69, 0.83) 55%, rgba(2, 12, 69, 0.97) 100%);
}

.sector-grid > div::after {
  content: "";
  position: absolute;
  right: -37px;
  bottom: -42px;
  width: 105px;
  height: 105px;
  z-index: 2;
  border: 20px solid rgba(212, 175, 55, 0.22);
  transform: rotate(45deg);
}

.sector-grid span {
  position: relative;
  z-index: 3;
  color: var(--gold);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
}

.sector-grid strong {
  position: relative;
  z-index: 3;
  max-width: 170px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.25;
}

/* Team */
.about {
  background: var(--warm-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.team-card {
  display: grid;
  grid-template-columns: minmax(225px, 0.84fr) 1fr;
  min-height: 485px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.team-photo {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #f3f5f6;
}

.team-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(2, 12, 69, 0.34));
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
}

.team-photo-camila img {
  object-position: 50% 35%;
}

.team-index {
  position: absolute;
  bottom: 18px;
  left: 20px;
  z-index: 1;
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
}

.team-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 37px 32px;
}

.team-content > span {
  margin-bottom: 11px;
  color: #947417;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.team-content h3 {
  margin-bottom: 18px;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
}

.team-content p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Coverage */
.coverage {
  padding-top: 0;
  background: var(--warm-white);
}

.coverage-card {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  align-items: center;
  gap: 35px;
  padding: 48px 52px;
  color: rgba(255, 255, 255, 0.7);
  background: linear-gradient(125deg, var(--navy), #0a1b68);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.coverage-symbol {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
  border-radius: 50%;
}

.coverage-symbol svg {
  width: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.coverage-card .eyebrow {
  margin-bottom: 10px;
}

.coverage-card h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  letter-spacing: -0.04em;
}

.coverage-card p {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* FAQ */
.faq {
  background: #f0f1f4;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
  align-items: start;
}

.faq .section-heading {
  position: sticky;
  top: 115px;
}

.faq-list {
  border-top: 1px solid rgba(2, 12, 69, 0.18);
}

.faq-list details {
  border-bottom: 1px solid rgba(2, 12, 69, 0.18);
}

.faq-list summary {
  position: relative;
  padding: 28px 48px 28px 0;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 750;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 18px;
  height: 2px;
  background: var(--gold);
  transform: translateY(-50%);
  transition: transform 0.25s ease;
}

.faq-list summary span::after {
  content: "";
  top: 0;
  right: 0;
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 670px;
  padding: 0 40px 25px 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Contact */
.contact {
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.contact-pattern {
  position: absolute;
  top: -210px;
  right: -100px;
  width: 620px;
  height: 620px;
  opacity: 0.08;
  background: url("../img/padrao-setas.png") center / contain no-repeat;
  transform: rotate(-8deg);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 90px;
  align-items: center;
}

.contact-copy h2 {
  max-width: 680px;
  color: var(--white);
}

.contact-copy > p {
  max-width: 610px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.04rem;
}

.contact-details {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.contact-details > a,
.contact-details > div {
  display: flex;
  flex-direction: column;
  padding: 22px 27px;
  transition: background 0.2s ease;
}

.contact-details > * + * {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-details > a:hover {
  background: rgba(255, 255, 255, 0.07);
}

.contact-details span {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-details strong {
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 650;
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, 0.58);
  background: #01072c;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 48px;
  padding-bottom: 42px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  padding: 4px;
  object-fit: contain;
  background: var(--warm-white);
  border-radius: 10px;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.03rem;
}

.footer-brand span {
  font-size: 0.72rem;
}

.footer-top nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 0.79rem;
  font-weight: 600;
}

.footer-top nav a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-top: 20px;
  padding-bottom: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.69rem;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: #25d366;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  box-shadow: 0 17px 36px rgba(0, 0, 0, 0.28);
  transform: translateY(-4px) scale(1.03);
}

.whatsapp-float svg {
  width: 30px;
  fill: currentColor;
}

/* Cookie consent */
.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 980px;
  padding: 20px 22px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 22px 65px rgba(2, 12, 69, 0.23);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.9rem;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.5;
}

.cookie-banner p a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-shrink: 0;
  gap: 9px;
}

.cookie-actions button {
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 750;
  cursor: pointer;
}

.cookie-primary {
  color: var(--navy);
  background: var(--gold);
  border: 1px solid var(--gold);
}

.cookie-secondary {
  color: var(--graphite);
  background: transparent;
  border: 1px solid var(--line);
}

/* Motion */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.7,.25,1);
}

.js [data-reveal][data-delay="1"] { transition-delay: 0.09s; }
.js [data-reveal][data-delay="2"] { transition-delay: 0.18s; }
.js [data-reveal][data-delay="3"] { transition-delay: 0.27s; }

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Privacy and 404 pages */
.inner-page {
  min-height: 100vh;
  background: var(--warm-white);
}

.inner-header {
  position: static;
  height: 84px;
  color: var(--graphite);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.inner-main {
  padding: 90px 0 110px;
}

.legal-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(0, 1.36fr);
  gap: 85px;
  align-items: start;
}

.legal-title {
  position: sticky;
  top: 35px;
}

.legal-title h1 {
  margin-bottom: 17px;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  letter-spacing: -0.055em;
}

.legal-title p {
  color: var(--muted);
}

.legal-content {
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.legal-content h2 {
  margin: 38px 0 13px;
  font-size: 1.28rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 0.91rem;
}

.legal-content a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
}

.not-found {
  display: grid;
  min-height: calc(100vh - 84px);
  padding: 70px 20px;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 70% 20%, rgba(212, 175, 55, 0.18), transparent 27%),
    var(--navy);
}

.not-found-content {
  max-width: 660px;
}

.not-found .code {
  display: block;
  color: var(--gold);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(5rem, 15vw, 9rem);
  font-weight: 800;
  line-height: 1;
}

.not-found h1 {
  margin: 12px 0 18px;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.7rem);
}

.not-found p {
  margin-bottom: 30px;
  color: rgba(255,255,255,.68);
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(335px, 0.75fr);
    gap: 50px;
  }

  .team-card {
    grid-template-columns: minmax(205px, 0.78fr) 1fr;
  }

  .team-content {
    padding: 32px 25px;
  }

  .coverage-card {
    grid-template-columns: 75px 1fr;
  }

  .coverage-card .button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (min-width: 921px) and (max-height: 820px) {
  :root {
    --header-height: 72px;
  }

  .hero {
    padding: calc(var(--header-height) + 24px) 0 32px;
  }

  .hero-copy h1 {
    margin-bottom: 17px;
    font-size: clamp(2.65rem, 4.15vw, 3.75rem);
  }

  .hero-copy p {
    margin-bottom: 21px;
    font-size: 1rem;
  }

  .hero-points {
    margin-top: 18px;
  }

  .hero-visual {
    width: min(100%, 385px);
  }

  .button-large {
    min-height: 52px;
    padding: 14px 24px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 74px;
  }

  .section {
    padding: 72px 0;
  }

  .menu-toggle {
    z-index: 2;
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 14px;
    padding: 100px 30px 45px;
    color: var(--white);
    background: rgba(2, 12, 69, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a:not(.button) {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(1.5rem, 7vw, 2.2rem);
    font-weight: 750;
  }

  .main-nav .nav-cta {
    margin-top: 18px;
  }

  .menu-toggle[aria-expanded="true"] {
    color: var(--white);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 55px) 0 82px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(100%, 440px);
    margin-inline: auto;
  }

  .intro-grid,
  .drone-grid,
  .method-top,
  .experience-grid,
  .faq-grid,
  .contact-grid,
  .video-grid,
  .legal-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .method-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .method-steps li,
  .method-steps li:first-child,
  .method-steps li:last-child {
    border: 1px solid rgba(2, 12, 69, 0.13);
    border-top: 5px solid var(--gold);
    border-radius: 18px;
  }

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

  .team-card {
    grid-template-columns: 0.7fr 1fr;
  }

  .faq .section-heading,
  .legal-title {
    position: static;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 62px 0;
  }

  .brand {
    width: 174px;
    height: 51px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 48px);
  }

  .hero::before {
    background-size: 52px 52px;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 10.8vw, 3.5rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-points {
    flex-direction: column;
  }

  .hero-visual {
    width: calc(100% - 16px);
  }

  .hero-caption {
    right: 15px;
    bottom: 15px;
    left: 15px;
    gap: 11px;
    padding: 12px;
  }

  .scroll-cue {
    display: none;
  }

  .intro-grid {
    gap: 28px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .trust-strip div {
    min-height: 78px;
    padding: 20px 24px;
  }

  .trust-strip div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-grid,
  .sector-grid,
  .method-steps {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 32px 25px;
  }

  .service-icon {
    margin-bottom: 32px;
  }

  .drone-photo {
    min-height: 410px;
  }

  .drone-photo > img {
    height: 410px;
  }

  .drone-photo-overlay {
    right: 22px;
    bottom: 57px;
    left: 22px;
  }

  .drone-photo figcaption {
    right: 18px;
    bottom: 14px;
    left: 22px;
  }

  .method-top {
    gap: 22px;
    margin-bottom: 30px;
  }

  .method-steps li {
    min-height: 225px;
  }

  .method-steps > li > span {
    margin-bottom: 24px;
  }

  .drone-cta {
    width: 100%;
    min-width: 0;
  }

  .team-card {
    grid-template-columns: 1fr;
  }

  .team-photo {
    min-height: 430px;
  }

  .coverage-card {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 34px 25px;
  }

  .coverage-card .button {
    grid-column: 1;
    width: 100%;
  }

  .coverage-symbol {
    width: 68px;
    height: 68px;
  }

  .coverage-symbol svg {
    width: 35px;
  }

  .faq-grid {
    gap: 35px;
  }

  .contact-grid {
    gap: 52px;
  }

  .contact-copy .button {
    width: 100%;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top nav {
    gap: 13px 20px;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions button {
    flex: 1;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
    width: 54px;
    height: 54px;
  }

  .legal-content {
    padding: 29px 23px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
