:root {
  --ink: #0d1b2a;
  --ink-soft: #2c3e52;
  --ink-muted: #6a7f94;
  --bg: #f8fafc;
  --bg-cool: #eef3f8;
  --card: #ffffff;
  --navy: #1a3a8f;
  --navy-mid: #2550c0;
  --navy-dark: #122a6e;
  --blue-glow: #6aa3ff;
  --line: #dde5f0;
  --line-strong: #c5d8ff;
  --shadow-sm: 0 2px 12px rgba(13, 27, 42, 0.06);
  --shadow-md: 0 12px 36px rgba(13, 27, 42, 0.12);
  --shadow-lg: 0 26px 70px rgba(13, 27, 42, 0.18);
  --radius: 8px;
  --radius-lg: 14px;
  --max: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Barlow", Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

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

.skip-link,
.sr-only,
.hidden-field {
  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:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 999;
  padding: 12px 16px;
  background: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 250, 252, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 178px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-links .nav-cta {
  padding: 10px 18px;
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  place-items: center;
  gap: 4px;
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.hero {
  width: min(var(--max), calc(100% - 40px));
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: 72px 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  align-items: center;
  gap: 56px;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--navy-mid);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Barlow Condensed", Arial, sans-serif;
  line-height: 1.04;
  text-transform: uppercase;
}

h1 {
  max-width: 620px;
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2.35rem, 5vw, 4.1rem);
  font-weight: 850;
  letter-spacing: 0;
}

h3 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.hero-lede,
.section-heading p,
.section-split > div > p,
.about-copy p,
.booking-copy p,
.cta-section p {
  color: var(--ink-muted);
  font-size: 1.04rem;
}

.hero-lede {
  max-width: 540px;
  margin: 24px 0 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(26, 58, 143, 0.28);
}

.button-primary:hover {
  background: var(--navy-dark);
}

.button-secondary {
  color: var(--navy);
  background: #fff;
  border-color: var(--line-strong);
}

.button-light {
  color: var(--navy);
  background: #fff;
}

.button-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.36);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 42px 0 0;
}

.hero-stats div {
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.hero-stats dt {
  color: var(--navy);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 850;
  line-height: 1;
}

.hero-stats dd {
  margin: 6px 0 0;
  color: var(--ink-muted);
  font-size: 0.84rem;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 28px -18px -18px 28px;
  z-index: -1;
  background: var(--navy);
  border-radius: var(--radius-lg);
}

.hero-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.section {
  padding: 92px max(20px, calc((100vw - var(--max)) / 2));
}

.section-heading {
  max-width: 730px;
  margin-bottom: 44px;
}

.section-heading p {
  max-width: 620px;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.strip-item {
  padding: 26px 28px;
  background: var(--navy);
  color: #fff;
}

.strip-item strong,
.strip-item span {
  display: block;
}

.strip-item strong {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.strip-item span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.section-split,
.about-section,
.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 64px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.feature-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
}

.feature-list span,
.process-grid span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: #eef3ff;
  border-radius: 999px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-weight: 850;
}

.feature-list p,
.process-grid p,
.benefit-grid p,
.price-card p,
.addon-card p,
.drone-callout p,
.travel-card p {
  margin: 8px 0 0;
  color: var(--ink-muted);
}

.video-card {
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.video-card img,
.picmotion-video {
  border-radius: var(--radius);
}

.picmotion-video {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #07101d;
}

.pricing-section,
.about-section {
  background: var(--bg-cool);
  border-block: 1px solid var(--line);
}

.pricing-block + .pricing-block,
.travel-card {
  margin-top: 54px;
}

.step-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.step-label > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 850;
}

.step-label p {
  margin: 3px 0 0;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.price-card,
.addon-card,
.process-grid article,
.benefit-grid article,
.travel-card,
.booking-form,
.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.price-card,
.addon-card {
  position: relative;
  padding: 24px;
}

.price-card.featured,
.addon-card.featured {
  border-color: var(--navy);
  box-shadow: 0 0 0 2px rgba(26, 58, 143, 0.08), var(--shadow-sm);
}

.badge {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 5px 10px;
  color: #fff !important;
  background: var(--navy-mid);
  border-radius: 999px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  margin: 14px 0 12px !important;
  color: var(--navy) !important;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1;
}

.text-price {
  font-size: 1.65rem;
}

.price-card ul,
.cred-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li,
.cred-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.price-card li + li,
.cred-list li + li {
  margin-top: 8px;
}

.price-card li::before,
.cred-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--navy-mid);
  border-radius: 50%;
}

.drone-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.drone-callout strong {
  color: var(--navy);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 2.7rem;
  line-height: 1;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.addon-card strong {
  display: block;
  margin-top: 14px;
  color: var(--navy);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}

.travel-card {
  padding: 28px;
}

.travel-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.travel-pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
}

.travel-pills strong {
  color: var(--navy);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.1rem;
}

.process-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-grid article,
.benefit-grid article {
  padding: 26px;
}

.process-grid h3 {
  margin-top: 24px;
}

.why-section {
  background: var(--bg);
}

.about-media {
  max-width: 410px;
}

.about-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-copy p + p {
  margin-top: 16px;
}

.booking-section {
  align-items: start;
}

.booking-copy {
  position: sticky;
  top: 104px;
}

.contact-card {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 22px;
}

.contact-card p {
  margin: 0 0 6px;
  color: var(--ink-muted);
}

.contact-card a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: 30px;
}

.form-grid.two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.booking-form label,
.booking-form legend {
  display: grid;
  gap: 6px;
  color: var(--ink-soft);
  font-weight: 700;
}

.booking-form label span {
  color: var(--navy-mid);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(37, 80, 192, 0.12);
}

.booking-form fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.booking-form .check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.booking-form .check input {
  width: 16px;
  height: 16px;
  accent-color: var(--navy);
}

.booking-form .check strong {
  margin-left: auto;
  color: var(--navy);
  font-family: "Barlow Condensed", Arial, sans-serif;
}

.form-note {
  margin: -4px 0 0;
  color: var(--ink-muted);
  font-size: 0.8rem;
  text-align: center;
}

.cta-section {
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: 92px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
}

.cta-section h2 {
  max-width: 760px;
}

.cta-section p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.7);
}

.cta-section .eyebrow {
  color: var(--blue-glow);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px max(20px, calc((100vw - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.5);
  background: var(--ink);
}

.footer-brand img {
  width: 190px;
}

.footer-brand {
  display: inline-flex;
  padding: 10px 14px;
  background: #fff;
  border-radius: var(--radius);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
}

.site-footer p {
  margin: 0;
  font-size: 0.84rem;
}

.sticky-book {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(13, 27, 42, 0.28);
  font-weight: 800;
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.sticky-book.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--bg-cool);
}

.thanks-card {
  width: min(680px, 100%);
  padding: 44px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.thanks-card img {
  width: 230px;
  margin-bottom: 40px;
}

.thanks-card h1 {
  font-size: clamp(2.5rem, 7vw, 4.2rem);
}

.thanks-card p:not(.eyebrow) {
  color: var(--ink-muted);
  font-size: 1.05rem;
}

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

  .addon-grid,
  .process-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 120;
    display: grid;
    gap: 0;
    padding: 14px 20px 20px;
    background: rgba(248, 250, 252, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

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

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-links .nav-cta {
    margin-top: 12px;
    padding: 13px 18px;
    text-align: center;
    border-bottom: 0;
  }

  .nav-open .sticky-book {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
  }

  .hero,
  .section-split,
  .about-section,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-media {
    order: -1;
  }

  .booking-copy {
    position: static;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .nav,
  .hero {
    width: min(calc(100% - 32px), var(--max));
  }

  .brand img {
    width: 152px;
  }

  .section {
    padding-block: 66px;
  }

  .hero-stats,
  .intro-strip,
  .price-grid,
  .addon-grid,
  .process-grid,
  .benefit-grid,
  .form-grid.two {
    grid-template-columns: 1fr;
  }

  .hero-media::before {
    inset: 16px -8px -8px 16px;
  }

  .drone-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-form,
  .thanks-card {
    padding: 24px;
  }

  .sticky-book {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
}

/* Motion-forward redesign: closer to the original dark Boxey template, with production-safe CSS motion. */
.hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 72px);
  margin: 0;
  padding: 0 24px;
  overflow: hidden;
  display: block;
  background:
    linear-gradient(135deg, rgba(13, 27, 42, 0.96), rgba(7, 14, 26, 0.98) 58%, rgba(18, 42, 110, 0.92)),
    var(--ink);
}

.hero-bg,
.hero-grid,
.hero-scanline {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 36%, rgba(106, 163, 255, 0.18) 45%, transparent 54% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 35%);
  transform: translateX(-22%);
  animation: heroLightSweep 14s ease-in-out infinite;
}

.hero-grid {
  opacity: 0.8;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  animation: gridDrift 36s linear infinite;
}

.hero-scanline {
  width: 1px;
  left: 12%;
  background: linear-gradient(180deg, transparent, rgba(106, 163, 255, 0.8), transparent);
  box-shadow: 0 0 24px rgba(106, 163, 255, 0.45);
  animation: scanAcross 10s cubic-bezier(0.6, 0, 0.2, 1) infinite;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: 86px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1fr);
  align-items: center;
  gap: 64px;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 24px;
  padding: 7px 14px;
  color: var(--blue-glow);
  background: rgba(37, 80, 192, 0.18);
  border: 1px solid rgba(106, 163, 255, 0.34);
  border-radius: 999px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--blue-glow);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(106, 163, 255, 0.95);
}

.hero h1 {
  max-width: 680px;
  color: #fff;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.hero h1 em {
  color: var(--blue-glow);
  font-style: normal;
}

.hero-lede {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.hero .button-primary {
  background: var(--navy-mid);
  box-shadow: 0 12px 32px rgba(37, 80, 192, 0.45);
}

.hero .button-secondary {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: none;
}

.hero-stats dt {
  color: #fff;
}

.hero-stats dd {
  color: rgba(255, 255, 255, 0.54);
}

.hero-stage {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  perspective: 1000px;
}

.media-frame {
  position: relative;
  width: min(100%, 620px);
  padding: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
  transform: rotateX(5deg) rotateY(-8deg);
  animation: heroFloat 6s ease-in-out infinite;
}

.media-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
}

.media-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-120%);
  animation: frameSweep 4.8s ease-in-out infinite;
}

.media-progress {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  height: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.media-progress::before {
  content: "";
  display: block;
  width: 42%;
  height: 100%;
  background: var(--blue-glow);
  box-shadow: 0 0 16px rgba(106, 163, 255, 0.78);
  border-radius: inherit;
  animation: progressSlide 3.8s ease-in-out infinite;
}

.corner {
  position: absolute;
  z-index: 4;
  width: 28px;
  height: 28px;
  border-color: var(--blue-glow);
  opacity: 0.95;
}

.corner-tl {
  top: 28px;
  left: 28px;
  border-top: 3px solid;
  border-left: 3px solid;
}

.corner-tr {
  top: 28px;
  right: 28px;
  border-top: 3px solid;
  border-right: 3px solid;
}

.corner-bl {
  bottom: 28px;
  left: 28px;
  border-bottom: 3px solid;
  border-left: 3px solid;
}

.corner-br {
  right: 28px;
  bottom: 28px;
  border-right: 3px solid;
  border-bottom: 3px solid;
}

.motion-card {
  position: absolute;
  z-index: 5;
  width: min(240px, 46vw);
  padding: 16px 18px;
  color: #fff;
  background: rgba(13, 27, 42, 0.82);
  border: 1px solid rgba(106, 163, 255, 0.32);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
}

.motion-card span {
  display: block;
  color: var(--blue-glow);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.motion-card strong {
  display: block;
  margin-top: 3px;
  font-size: 0.92rem;
  line-height: 1.25;
}

.card-video {
  top: 42px;
  left: 8px;
  animation: cardFloatA 5s ease-in-out infinite;
}

.card-drone {
  right: 0;
  bottom: 112px;
  animation: cardFloatB 5.6s ease-in-out infinite;
}

.card-delivery {
  left: 72px;
  bottom: 32px;
  animation: cardFloatC 6.2s ease-in-out infinite;
}

.intro-strip {
  box-shadow: 0 -1px rgba(255, 255, 255, 0.08) inset;
}

.strip-item {
  background:
    linear-gradient(135deg, rgba(37, 80, 192, 0.88), rgba(18, 42, 110, 0.98)),
    var(--navy);
}

.video-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(13, 27, 42, 0.98), rgba(18, 42, 110, 0.96));
  border-color: rgba(106, 163, 255, 0.2);
}

.video-card img,
.picmotion-video {
  opacity: 0.94;
}

.motion-timeline {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 0.65fr;
  gap: 8px;
}

.motion-timeline span {
  height: 7px;
  background: rgba(106, 163, 255, 0.28);
  border-radius: 999px;
  overflow: hidden;
}

.motion-timeline span::before {
  content: "";
  display: block;
  width: 46%;
  height: 100%;
  background: var(--blue-glow);
  border-radius: inherit;
  animation: timelinePulse 2.8s ease-in-out infinite;
}

.motion-timeline span:nth-child(2)::before {
  animation-delay: 0.25s;
}

.motion-timeline span:nth-child(3)::before {
  animation-delay: 0.5s;
}

.motion-timeline span:nth-child(4)::before {
  animation-delay: 0.75s;
}

.price-card,
.addon-card,
.process-grid article,
.benefit-grid article,
.travel-card,
.booking-form,
.contact-card,
.video-card {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.price-card:hover,
.addon-card:hover,
.process-grid article:hover,
.benefit-grid article:hover,
.video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 80, 192, 0.45);
  box-shadow: 0 20px 54px rgba(13, 27, 42, 0.14);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.hero .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

@keyframes heroLightSweep {
  0%,
  100% {
    transform: translateX(-28%);
    opacity: 0.5;
  }
  50% {
    transform: translateX(24%);
    opacity: 0.95;
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 52px 52px, 52px 52px;
  }
}

@keyframes scanAcross {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0;
  }
  12%,
  78% {
    opacity: 1;
  }
  50% {
    transform: translateX(72vw);
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: rotateX(5deg) rotateY(-8deg) translateY(0);
  }
  50% {
    transform: rotateX(3deg) rotateY(-4deg) translateY(-14px);
  }
}

@keyframes frameSweep {
  0%,
  42% {
    transform: translateX(-120%);
  }
  70%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes progressSlide {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(140%);
  }
}

@keyframes cardFloatA {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(12px, -14px, 0);
  }
}

@keyframes cardFloatB {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-14px, 12px, 0);
  }
}

@keyframes cardFloatC {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(10px, 10px, 0);
  }
}

@keyframes timelinePulse {
  0%,
  100% {
    transform: translateX(-70%);
  }
  50% {
    transform: translateX(150%);
  }
}

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 54px 0 68px;
  }

  .hero-stage {
    order: -1;
    min-height: 430px;
  }

  .media-frame {
    transform: none;
  }

  .motion-card {
    width: min(220px, 60vw);
  }

  .card-video {
    top: 18px;
    left: 2px;
  }

  .card-drone {
    right: 2px;
    bottom: 76px;
  }

  .card-delivery {
    left: 28px;
    bottom: 8px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-inline: 16px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.45rem);
  }

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

  .hero-stage {
    min-height: 350px;
  }

  .media-frame {
    padding: 9px;
  }

  .motion-card {
    padding: 12px 14px;
  }

  .motion-card strong {
    font-size: 0.82rem;
  }

  .card-video {
    top: 0;
  }

  .card-drone {
    bottom: 54px;
  }

  .card-delivery {
    left: 10px;
    bottom: -14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

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

/* Bright revision: professional, agent-friendly, less techy. */
body {
  background: #f7faff;
}

.site-header {
  background: rgba(255, 255, 255, 0.94);
}

.hero {
  min-height: auto;
  padding: 0 24px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  border-bottom: 1px solid var(--line);
}

.hero-bg,
.hero-grid,
.hero-scanline,
.hero-bg::before,
.media-frame::before,
.media-progress,
.corner {
  display: none;
}

.hero-inner {
  min-height: auto;
  padding: 76px 0 84px;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.86fr);
}

.hero-tag {
  color: var(--navy);
  background: #eef3ff;
  border-color: var(--line-strong);
  box-shadow: none;
}

.hero-tag::before {
  background: var(--navy-mid);
  box-shadow: none;
}

.hero h1 {
  max-width: 720px;
  color: var(--ink);
  text-shadow: none;
}

.hero h1 em {
  color: var(--navy);
}

.hero-lede {
  color: var(--ink-muted);
  font-weight: 400;
}

.hero .button-primary {
  background: var(--navy);
  box-shadow: 0 10px 28px rgba(26, 58, 143, 0.22);
}

.hero .button-secondary {
  color: var(--navy);
  background: #fff;
  border-color: var(--line-strong);
}

.hero-stats div {
  background: #fff;
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.hero-stats dt {
  color: var(--navy);
}

.hero-stats dd {
  color: var(--ink-muted);
}

.hero-stage {
  min-height: 460px;
}

.media-frame {
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 20px 55px rgba(26, 58, 143, 0.14);
  transform: none;
  animation: none;
}

.motion-card {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--line-strong);
  box-shadow: 0 14px 34px rgba(26, 58, 143, 0.12);
  animation: none;
}

.motion-card span {
  color: var(--navy-mid);
}

.motion-card strong {
  color: var(--ink);
}

.intro-strip {
  gap: 16px;
  background: #f7faff;
  box-shadow: none;
}

.strip-item {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.strip-item span {
  color: var(--ink-muted);
}

.section-split,
.why-section,
.booking-section {
  background: #fff;
}

.pricing-section,
.about-section,
.process-section {
  background: #f4f8ff;
}

.video-card {
  background: #fff;
  border-color: var(--line);
  box-shadow: var(--shadow-md);
}

.video-card img,
.picmotion-video {
  opacity: 1;
}

.motion-timeline span {
  background: #dce8ff;
}

.motion-timeline span::before {
  background: var(--navy-mid);
  animation-duration: 4s;
}

.price-grid {
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
}

.addon-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card,
.addon-card,
.process-grid article,
.benefit-grid article,
.travel-card,
.booking-form,
.contact-card {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(26, 58, 143, 0.08);
}

.price-card.featured,
.addon-card.featured {
  border-color: var(--navy-mid);
  box-shadow: 0 0 0 2px rgba(37, 80, 192, 0.08), 0 14px 36px rgba(26, 58, 143, 0.12);
}

.process-grid article,
.benefit-grid article {
  background: #fff;
}

.offer-showcase {
  display: grid;
  gap: 14px;
  max-width: 470px;
}

.offer-showcase div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 6px 14px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(26, 58, 143, 0.08);
}

.offer-showcase span {
  width: 44px;
  height: 44px;
  grid-row: span 2;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: #eef3ff;
  border-radius: 999px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-weight: 850;
}

.offer-showcase strong {
  color: var(--ink);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.25rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.offer-showcase p {
  grid-column: 2;
  margin: 0;
  color: var(--ink-muted);
}

.cta-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
}

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 46px 0 60px;
  }

  .hero-stage {
    order: 0;
    min-height: 380px;
  }

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

@media (max-width: 640px) {
  .hero {
    width: 100%;
    padding-inline: 16px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .hero-stage {
    min-height: 330px;
  }

  .motion-card {
    width: min(215px, 64vw);
  }

  .intro-strip {
    gap: 10px;
  }
}

/* Darker final direction with cleaner scroll motion. */
body {
  background:
    linear-gradient(180deg, #07101d 0%, #0d1b2a 42%, #0f2035 100%);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue-glow), #fff, var(--navy-mid));
  box-shadow: 0 0 18px rgba(106, 163, 255, 0.68);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 120ms linear;
}

.site-header {
  background: rgba(248, 250, 252, 0.96);
  border-bottom-color: rgba(197, 216, 255, 0.55);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  padding: 0 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(37, 80, 192, 0.34), transparent 34%),
    radial-gradient(circle at 12% 92%, rgba(106, 163, 255, 0.16), transparent 30%),
    linear-gradient(135deg, #0d1b2a 0%, #08111f 58%, #122a6e 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-bg,
.hero-grid,
.hero-scanline,
.hero-bg::before,
.media-progress,
.corner {
  display: block;
}

.hero-bg,
.hero-grid,
.hero-scanline {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(106, 163, 255, 0.12) 47%, transparent 58% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 42%);
  transform: translateX(-22%);
  animation: heroLightSweep 18s ease-in-out infinite;
}

.hero-grid {
  opacity: 0.48;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  animation: gridDrift 46s linear infinite;
}

.hero-scanline {
  width: 1px;
  left: 8%;
  opacity: 0.48;
  background: linear-gradient(180deg, transparent, rgba(106, 163, 255, 0.65), transparent);
  box-shadow: 0 0 18px rgba(106, 163, 255, 0.32);
  animation: scanAcross 14s cubic-bezier(0.6, 0, 0.2, 1) infinite;
}

.hero-inner {
  min-height: calc(100vh - 72px);
  padding: 82px 0 80px;
}

.hero-tag {
  color: var(--blue-glow);
  background: rgba(37, 80, 192, 0.18);
  border-color: rgba(106, 163, 255, 0.34);
}

.hero-tag::before {
  background: var(--blue-glow);
  box-shadow: 0 0 12px rgba(106, 163, 255, 0.9);
}

.hero h1 {
  color: #fff;
}

.hero h1 em {
  color: var(--blue-glow);
}

.hero-lede {
  color: rgba(255, 255, 255, 0.72);
}

.hero .button-primary {
  background: var(--navy-mid);
  box-shadow: 0 12px 32px rgba(37, 80, 192, 0.42);
}

.hero .button-secondary {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.hero-stats dt {
  color: #fff;
}

.hero-stats dd {
  color: rgba(255, 255, 255, 0.62);
}

.hero-stage {
  min-height: 520px;
}

.media-frame {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.3);
  transform: rotateX(4deg) rotateY(-5deg);
  animation: heroFloat 8s ease-in-out infinite;
}

.media-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  display: block;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: translateX(-120%);
  animation: frameSweep 6.5s ease-in-out infinite;
}

.motion-card {
  color: #fff;
  background: rgba(13, 27, 42, 0.82);
  border-color: rgba(106, 163, 255, 0.32);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
}

.motion-card span {
  color: var(--blue-glow);
}

.motion-card strong {
  color: #fff;
}

.card-video {
  animation: cardFloatA 8s ease-in-out infinite;
}

.card-drone {
  animation: cardFloatB 8.5s ease-in-out infinite;
}

.card-delivery {
  animation: cardFloatC 9s ease-in-out infinite;
}

.intro-strip {
  background: #0d1b2a;
}

.strip-item {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.strip-item span {
  color: rgba(255, 255, 255, 0.62);
}

.section {
  position: relative;
}

.section-split,
.why-section,
.gallery-section,
.booking-section {
  background: #0d1b2a;
}

.pricing-section,
.about-section,
.process-section {
  background: #091322;
}

.section-split .eyebrow,
.pricing-section .eyebrow,
.process-section .eyebrow,
.why-section .eyebrow,
.gallery-section .eyebrow,
.about-section .eyebrow,
.booking-section .eyebrow {
  color: var(--blue-glow);
}

.section-split h2,
.pricing-section h2,
.process-section h2,
.why-section h2,
.gallery-section h2,
.about-section h2,
.booking-section h2 {
  color: #fff;
}

.section-split > div > p,
.section-heading p,
.about-copy p,
.booking-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.section {
  padding-block: 78px;
}

.section-heading {
  margin-bottom: 34px;
}

.travel-card h3,
.contact-card p {
  color: var(--ink);
}

.feature-list article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.feature-list article h3,
.step-label h3 {
  color: #fff;
}

.feature-list article p {
  color: rgba(255, 255, 255, 0.64);
}

.step-label p {
  color: rgba(255, 255, 255, 0.62);
}

.video-card {
  background: linear-gradient(145deg, #0d1b2a, #122a6e);
  border-color: rgba(106, 163, 255, 0.24);
}

.gallery-section {
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 168px;
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #091322;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  transition: transform 220ms ease, border-color 220ms ease, filter 220ms ease;
}

.gallery-grid img:hover {
  transform: translateY(-4px);
  border-color: rgba(106, 163, 255, 0.45);
  filter: saturate(1.08) contrast(1.04);
}

.motion-timeline span {
  background: rgba(106, 163, 255, 0.25);
}

.motion-timeline span::before {
  background: var(--blue-glow);
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal.is-visible .price-card,
.reveal.is-visible .addon-card,
.reveal.is-visible .process-grid article,
.reveal.is-visible .benefit-grid article,
.reveal.is-visible .gallery-grid img,
.reveal.is-visible .offer-showcase div {
  animation: softRise 640ms ease both;
}

.reveal.is-visible .price-card:nth-child(2),
.reveal.is-visible .addon-card:nth-child(2),
.reveal.is-visible .process-grid article:nth-child(2),
.reveal.is-visible .benefit-grid article:nth-child(2),
.reveal.is-visible .gallery-grid img:nth-child(2),
.reveal.is-visible .offer-showcase div:nth-child(2) {
  animation-delay: 80ms;
}

.reveal.is-visible .price-card:nth-child(3),
.reveal.is-visible .addon-card:nth-child(3),
.reveal.is-visible .process-grid article:nth-child(3),
.reveal.is-visible .benefit-grid article:nth-child(3),
.reveal.is-visible .gallery-grid img:nth-child(3),
.reveal.is-visible .offer-showcase div:nth-child(3) {
  animation-delay: 160ms;
}

.reveal.is-visible .price-card:nth-child(4),
.reveal.is-visible .process-grid article:nth-child(4),
.reveal.is-visible .benefit-grid article:nth-child(4),
.reveal.is-visible .gallery-grid img:nth-child(4) {
  animation-delay: 240ms;
}

.reveal.is-visible .gallery-grid img:nth-child(5) {
  animation-delay: 320ms;
}

.reveal.is-visible .gallery-grid img:nth-child(6) {
  animation-delay: 400ms;
}

@keyframes softRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .hero-inner {
    padding: 54px 0 68px;
  }

  .media-frame {
    transform: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 160px;
  }
}

@media (max-width: 640px) {
  .section {
    padding-block: 64px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 148px;
  }
}

@media (max-width: 640px) {
  .hero {
    width: 100%;
  }

  .hero-stage {
    min-height: 355px;
  }
}
