/* Dronify landing — black / white / red (scoped to body.home) */

body.home {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: #0a0a0a;
  margin: 0;
  overflow-x: clip;
}

body.home .navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px 24px;
  padding: 14px 5%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
  box-shadow: none;
}

body.home .logo {
  justify-self: start;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: inherit;
}

body.home .logo-part {
  color: #0a0a0a;
}

body.home .logo-accent {
  color: #e11d48;
}

body.home .nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

body.home .nav-links a {
  color: #374151;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
}

body.home .nav-links a:hover {
  color: #e11d48;
}

body.home .nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

body.home .nav-icons {
  display: none;
}

body.home .btn-nav-outline {
  padding: 8px 18px;
  border: 1px solid #0a0a0a;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  color: #0a0a0a;
  text-decoration: none;
  background: transparent;
}

body.home .btn-nav-outline:hover {
  background: #0a0a0a;
  color: #fff;
}

body.home .btn-nav-primary {
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  color: #fff;
  background: #e11d48;
  text-decoration: none;
  border: none;
}

body.home .btn-nav-primary:hover {
  background: #be123c;
}

body.home .carticon {
  cursor: pointer;
  font-size: 1.1rem;
  color: #0a0a0a;
}

body.home .carticon::after {
  background: #e11d48;
  color: #fff;
  font-size: 0.65rem;
  min-width: 1.1rem;
  text-align: center;
  right: 10px;
  top: -8px;
}

body.home .menu-icon {
  display: none;
  cursor: pointer;
  font-size: 1.25rem;
  color: #0a0a0a;
}

body.home #dark-toggle {
  color: #374151;
}

/* Hero */
.hero-nexus {
  text-align: center;
  padding: 56px 5% 80px;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  font-family: "Poppins", "Inter", system-ui, sans-serif;
}

.hero-tagline {
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  color: #0a0a0a;
  font-weight: 500;
  line-height: 1.55;
}

.hero-tagline strong {
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: clamp(300px, 50vw, 480px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
}

.hero-watermark {
  position: absolute;
  left: 50%;
  top: clamp(4px, 4.5%, 36px);
  transform: translateX(-50%);
  z-index: 0;
  font-size: clamp(4rem, 19vw, 11.5rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 0.92;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  text-transform: uppercase;
  font-family: "Poppins", "Inter", system-ui, sans-serif;
  background-image: linear-gradient(
    180deg,
    #0a0a0a 0%,
    #525252 35%,
    rgba(250, 250, 250, 0.55) 72%,
    rgba(255, 255, 255, 0) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-drone {
  position: relative;
  z-index: 1;
  width: min(640px, 92vw);
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 56px rgba(0, 0, 0, 0.14));
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.hero-nexus .btn-hero-primary {
  border-radius: 10px;
  padding: 14px 28px;
  font-family: "Poppins", "Inter", system-ui, sans-serif;
  font-weight: 600;
}

.hero-nexus .btn-hero-demo {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: "Poppins", "Inter", system-ui, sans-serif;
  text-decoration: none;
  color: #e11d48;
  background: #ffffff;
  border: 1px solid #e11d48;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.hero-nexus .btn-hero-demo:hover {
  background: #fff1f2;
  color: #be123c;
  border-color: #be123c;
}

.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: #e11d48;
  color: #fff !important;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: inherit;
}

.btn-primary:hover {
  background: #be123c;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
}

/* Sections */
.section-block {
  padding: 72px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.section-head.center {
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.section-head h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: #6b7280;
  max-width: 560px;
  line-height: 1.6;
}

/* Camera hub */
.camera-hub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 20px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.hub-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.hub-card i {
  color: #e11d48;
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.hub-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.hub-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.5;
}

.hub-tl {
  grid-column: 1;
  grid-row: 1;
}

.hub-tr {
  grid-column: 2;
  grid-row: 1;
}

.hub-center {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  justify-content: center;
  padding: 8px 0;
}

.hub-lens-ring {
  width: min(220px, 55vw);
  height: min(220px, 55vw);
  border-radius: 50%;
  border: 4px solid #0a0a0a;
  padding: 10px;
  background: linear-gradient(145deg, #f9fafb, #fff);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.hub-lens-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.hub-bl {
  grid-column: 1;
  grid-row: 3;
}

.hub-br {
  grid-column: 2;
  grid-row: 3;
}

/* Applications */
.section-apps {
  max-width: none;
  background: #fafafa;
  padding-left: 0;
  padding-right: 0;
}

.section-apps .apps-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.apps-copy h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  margin: 0 0 28px;
  letter-spacing: -0.02em;
}

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

.apps-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  margin-bottom: 10px;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  font-weight: 500;
  color: #374151;
}

.apps-item i {
  width: 36px;
  text-align: center;
  color: #e11d48;
}

.apps-item:hover,
.apps-item:focus-visible {
  background: #fff;
  border-color: #e5e7eb;
  outline: none;
}

.apps-item.is-active {
  background: #0a0a0a;
  color: #fff;
  border-color: #0a0a0a;
}

.apps-item.is-active i {
  color: #fb7185;
}

.apps-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.apps-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.btn-over-image {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
}

/* Benefits diagram */
.benefits-diagram {
  margin-bottom: 48px;
}

.benefits-drone-wrap {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.benefits-drone-img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.benefits-leaders {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

.benefits-tag {
  position: absolute;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #e11d48;
  background: #fff;
  padding: 7px 11px;
  border-radius: 6px;
  border: 1px solid #fecdd3;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}

/* Label anchors line up with SVG line starts (viewBox 0–100) */
.benefits-tag--motors {
  left: 2%;
  top: 34%;
  transform: translateY(-50%);
}

.benefits-tag--props {
  right: 2%;
  top: 18%;
  transform: translateY(-50%);
}

.benefits-tag--cam {
  left: 14%;
  bottom: 6%;
  transform: translateY(25%);
}

.benefits-tag--sensors {
  right: 4%;
  top: 34%;
  transform: translateY(-50%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefits-grid article {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 24px;
  text-align: left;
}

.benefits-grid article i {
  color: #e11d48;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.benefits-grid h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.benefits-grid p {
  margin: 0;
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
}

/* Workflow */
.section-workflow {
  background: #fff;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.workflow-card {
  background: #fafafa;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eee;
}

.workflow-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.workflow-card h3 {
  margin: 16px 18px 8px;
  font-size: 1.1rem;
}

.workflow-card p {
  margin: 0 18px 20px;
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.55;
}

/* Product grid (Discover Our Best Drones) */
.product-showcase {
  max-width: none;
  background: #fafafa;
  padding-bottom: 48px;
}

.product-showcase .section-head {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: clamp(16px, 2.5vw, 24px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 5% 24px;
}

.product-showcase .card-content {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: initial;
  max-width: none;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 1.15rem 1rem 1.35rem;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.product-showcase .card-content img {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  margin-bottom: 0.85rem;
  flex-shrink: 0;
}

.product-showcase .card-content h4 {
  min-height: 2.7em;
  margin: 0 0 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.3;
  color: #0a0a0a;
}

.product-showcase .card-content data {
  flex-shrink: 0;
  color: #e11d48;
}

.product-showcase .card-content del {
  flex-shrink: 0;
}

.product-showcase .card-content button {
  margin-top: auto;
  align-self: center;
  width: 100%;
  max-width: 220px;
  background: #e11d48;
  color: #fff;
}

.product-showcase .card-content button:hover {
  background: #be123c;
  color: #fff;
}

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

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

.card-featured {
  background: #0a0a0a !important;
  border-color: #0a0a0a !important;
  color: #fff;
}

.card-featured h4,
.card-featured del {
  color: #d1d5db !important;
}

.card-featured data {
  color: #fff !important;
  font-size: 1.15rem;
}

/* Demo */
.section-demo {
  max-width: 1100px;
}

.demo-inner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
}

.demo-video {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.demo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 32px;
  text-align: center;
}

.demo-overlay h2 {
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin: 0 0 16px;
}

/* Testimonials */
.section-testimonials .section-head {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-nav {
  display: flex;
  gap: 8px;
}

.testimonial-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  color: #0a0a0a;
}

.testimonial-nav button:hover {
  border-color: #e11d48;
  color: #e11d48;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px max(5%, env(safe-area-inset-right)) 16px max(5%, env(safe-area-inset-left));
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
}

.testi-card {
  flex: 0 0 min(320px, 88vw);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

.testi-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}

.testi-card h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.testi-role {
  font-size: 0.8rem;
  color: #6b7280;
  display: block;
  margin-bottom: 8px;
}

.stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testi-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #374151;
}

/* FAQ */
.section-faq {
  max-width: 1100px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.faq-visual img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  max-height: 520px;
}

.faq-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 24px;
}

.faq-content details {
  border-bottom: 1px solid #e5e7eb;
  padding: 14px 0;
}

.faq-content summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 28px;
}

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

.faq-content summary::after {
  content: "+";
  position: absolute;
  right: 0;
  color: #e11d48;
  font-weight: 700;
}

.faq-content details[open] summary::after {
  content: "−";
}

.faq-content details p {
  margin: 12px 0 0;
  color: #6b7280;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Gallery */
.section-gallery {
  max-width: none;
  padding: 56px 0 48px;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 40%, #fafafa 100%);
}

.gallery-intro {
  max-width: 720px;
  margin: 0 auto 28px;
  padding: 0 5%;
  text-align: center;
}

.gallery-intro h2 {
  margin: 0 0 10px;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0a0a0a;
}

.gallery-intro p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: #6b7280;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 2.5vw, 22px);
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 5% 12px;
}

.gallery-item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

/* Final CTA */
.section-cta-final {
  padding: 0 5% 88px;
}

.cta-final-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: clamp(380px, 52vh, 520px);
  background: #0a0a0a;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.cta-drone {
  width: 100%;
  height: 100%;
  min-height: clamp(380px, 52vh, 520px);
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.cta-final-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 85% 70% at 50% 55%, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(15deg, rgba(10, 10, 10, 0.92) 0%, transparent 45%),
    linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 55%);
  pointer-events: none;
}

.cta-final-copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(24px, 5vw, 48px);
}

.cta-final-eyebrow {
  margin: 0 0 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fb7185;
}

.cta-final-copy h2 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.15rem);
  font-weight: 800;
  margin: 0 0 14px;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
  max-width: min(100%, 18ch);
}

.cta-final-sub {
  margin: 0 0 28px;
  max-width: 36rem;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.55;
  color: rgba(248, 250, 252, 0.88);
}

.cta-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
}

.cta-final-actions .btn-primary {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-final-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(225, 29, 72, 0.45);
}

.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn-cta-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}

.btn-cta-ghost:focus-visible {
  outline: 2px solid #fb7185;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .gallery-item,
  .gallery-item:hover,
  .cta-final-actions .btn-primary,
  .cta-final-actions .btn-primary:hover {
    transition: none;
    transform: none;
  }

  .cta-final-actions .btn-primary:hover {
    box-shadow: none;
  }
}

/* Footer */
.site-footer {
  position: relative;
  background: #0a0a0a;
  color: #e5e7eb;
  padding: 64px 5% 24px;
  overflow: hidden;
}

.footer-watermark {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(4rem, 18vw, 12rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  pointer-events: none;
}

.site-footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 40px;
  text-align: left;
}

.footer-brand p {
  margin: 12px 0 0;
  font-size: 0.9rem;
  color: #9ca3af;
  line-height: 1.6;
  max-width: 280px;
}

.footer-logo {
  font-size: 1.5rem;
}

.footer-col h4 {
  margin: 0 0 16px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
}

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

.footer-col a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 2;
}

.footer-col a:hover {
  color: #fb7185;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.newsletter-form input {
  flex: 1 1 160px;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid #374151;
  background: #111827;
  color: #fff;
  font-family: inherit;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1f2937;
  color: #e5e7eb;
}

.footer-social a:hover {
  background: #e11d48;
  color: #fff;
}

.footer-phone {
  margin-top: 16px;
  font-size: 0.9rem;
  color: #9ca3af;
}

.footer-phone i {
  margin-right: 8px;
  color: #e11d48;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #1f2937;
  font-size: 0.85rem;
  color: #6b7280;
}

/* Hide old homepage-only sections if any */
body.home .footer:not(.site-footer) {
  display: none;
}

/* Dark mode on home */
body.dark.home {
  background: #0f172a;
  color: #e2e8f0;
  overflow-x: clip;
}

body.dark.home .hero-nexus {
  background: #0f172a;
}

body.dark.home .hero-tagline {
  color: #e2e8f0;
}

body.dark.home .hero-watermark {
  background-image: linear-gradient(
    180deg,
    #f8fafc 0%,
    #94a3b8 40%,
    rgba(30, 41, 59, 0.45) 78%,
    rgba(15, 23, 42, 0) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
}

body.dark.home .btn-hero-demo {
  background: #1e293b;
  color: #fb7185;
  border-color: #fb7185;
}

body.dark.home .btn-hero-demo:hover {
  background: #334155;
  color: #fda4af;
  border-color: #fda4af;
}

body.dark.home .navbar {
  background: rgba(15, 23, 42, 0.95);
  border-bottom-color: #1e293b;
}

body.dark.home .nav-links a {
  color: #cbd5e1;
}

body.dark.home .btn-nav-outline {
  border-color: #e2e8f0;
  color: #e2e8f0;
}

body.dark.home .btn-nav-outline:hover {
  background: #e2e8f0;
  color: #0f172a;
}

body.dark.home .hub-card,
body.dark.home .benefits-grid article,
body.dark.home .workflow-card,
body.dark.home .testi-card,
body.dark.home .product-showcase .card-content {
  background: #1e293b;
  border-color: #334155;
  color: #e2e8f0;
}

body.dark.home .benefits-tag {
  background: #1e293b;
  border-color: #9f1239;
  color: #fda4af;
}

body.dark.home .benefits-leaders line {
  stroke: #fb7185;
}

body.dark.home .benefits-leaders circle {
  fill: #fb7185;
  stroke: #0f172a;
}

body.dark.home .hub-card p,
body.dark.home .benefits-grid p,
body.dark.home .workflow-card p,
body.dark.home .section-head p {
  color: #94a3b8;
}

body.dark.home .section-apps {
  background: #0f172a;
}

body.dark.home .apps-item {
  color: #cbd5e1;
}

body.dark.home .apps-item:hover,
body.dark.home .apps-item:focus-visible {
  background: #1e293b;
  border-color: #334155;
}

body.dark.home .product-showcase {
  background: #0f172a;
}

body.dark.home .product-showcase .card-content h4 {
  color: #f1f5f9;
}

body.dark.home .faq-content details {
  border-color: #334155;
}

body.dark.home .section-gallery {
  background: linear-gradient(180deg, #0f172a 0%, #111827 50%, #0f172a 100%);
}

body.dark.home .gallery-intro h2 {
  color: #f1f5f9;
}

body.dark.home .gallery-intro p {
  color: #94a3b8;
}

body.dark.home .gallery-item {
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

/* Responsive */
@media (max-width: 768px) {
  .section-block {
    padding: 56px max(16px, 5%);
  }

  .section-gallery {
    padding: 44px 0 40px;
  }

  .hero-nexus {
    padding: 44px max(16px, 5%) 64px;
  }

  .demo-inner {
    min-height: 260px;
    border-radius: 14px;
  }

  .demo-video {
    min-height: 260px;
  }

  .demo-overlay {
    padding: max(20px, env(safe-area-inset-bottom)) 20px 24px;
  }

  .section-cta-final {
    padding: 0 max(16px, 5%) 64px;
  }

  .cta-final-inner {
    border-radius: 16px;
    min-height: clamp(320px, 48vh, 480px);
  }

  .cta-drone {
    min-height: clamp(320px, 48vh, 480px);
  }

  .site-footer {
    padding: 48px max(16px, 5%) 24px;
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }

  .section-testimonials .section-head {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .testimonial-nav {
    justify-content: flex-end;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form .btn-primary {
    width: 100%;
  }
}

@media (max-width: 900px) {
  body.home .navbar {
    display: grid;
    grid-template-columns: 1fr auto auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 12px 16px;
  }

  body.home .logo {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  body.home .menu-icon {
    display: block;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  body.home .nav-actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  body.home .nav-links {
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;
    flex-direction: column;
    width: 100%;
    padding: 16px 0;
    background: #fff;
    border-top: 1px solid #eee;
    justify-self: stretch;
    align-items: center;
    gap: 12px;
  }

  body.home .nav-links.show {
    display: flex;
  }

  body.dark.home .nav-links {
    background: rgba(15, 23, 42, 0.98);
    border-top-color: #1e293b;
  }

  .section-apps .apps-grid {
    grid-template-columns: 1fr;
    padding: 0 max(16px, 5%);
    gap: 28px;
  }

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

  .apps-visual {
    order: -1;
  }

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

  .workflow-steps {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  .section-block {
    padding: 40px max(12px, 4%);
  }

  .hero-nexus {
    padding: 36px max(12px, 4%) 52px;
  }

  .hero-watermark {
    font-size: clamp(2.75rem, 16vw, 9rem);
  }

  body.home .nav-actions .btn-nav-outline,
  body.home .nav-actions .btn-nav-primary {
    display: none;
  }

  .btn-primary.btn-over-image {
    top: 12px;
    right: 12px;
    font-size: 0.875rem;
    padding: 10px 16px;
  }

  .camera-hub {
    grid-template-columns: 1fr;
  }

  .hub-tl,
  .hub-tr,
  .hub-bl,
  .hub-br {
    grid-column: 1;
  }

  .hub-tl {
    grid-row: 1;
  }

  .hub-tr {
    grid-row: 2;
  }

  .hub-center {
    grid-row: 3;
  }

  .hub-bl {
    grid-row: 4;
  }

  .hub-br {
    grid-row: 5;
  }

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

  .benefits-tag {
    font-size: 0.62rem;
    padding: 5px 8px;
  }

  .benefits-drone-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  .apps-item {
    padding: 14px 12px;
    gap: 10px;
  }

  .apps-item span {
    min-width: 0;
  }

  .faq-visual img {
    max-height: 280px;
    width: 100%;
    object-fit: cover;
  }

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