@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy: #070d1d;
  --navy-2: #0a1226;
  --blue: #2d70f6;
  --blue-2: #1f5eea;
  --green: #33b88b;
  --sky: #dffcff;
  --lavender: #a9c1f5;
  --text: #0b1020;
  --muted: #6f7483;
  --light: #f3f3f6;
  --card: #f4f4f7;
  --white: #ffffff;
  --line: #e7e9ef;
  --shadow: 0 18px 45px rgba(7, 13, 29, .10);
  --soft-shadow: 0 8px 20px rgba(7, 13, 29, .08);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --container: 900px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: 'Sora', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden
}

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

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

button,
input,
textarea {
  font: inherit
}



button {
  cursor: pointer;
  border: 0;
  background: none
}

:focus-visible {
  outline: 3px solid rgba(45, 112, 246, .35);
  outline-offset: 3px
}

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

.container-narrow {

  width: min(880px, calc(100% - 42px));
  
  margin-inline: auto
}

.center {
  text-align: center
}

.mt-28 {
  margin-top: 28px
}

.mt-36 {
  margin-top: 36px
}

.mt-48 {
  margin-top: 48px
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 68px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(7, 13, 29, .08);
}

.header-inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto
}

.logo img {
  width: 112px;
  height: auto;
  object-fit: contain
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 44px
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 42px;
  list-style: none;
  margin: 0;
  padding: 0
}

.nav-link,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4c5362;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  transition: color .25s ease, transform .25s ease;
}

.nav-link:hover,
.dropdown-toggle:hover,
.nav-link.active,
.dropdown-toggle.active {
  color: var(--blue)
}

.nav-link:hover,
.dropdown-toggle:hover {
  transform: translateY(-1px)
}

.dropdown {
  position: relative
}

.chev {
  width: 7px;
  height: 7px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg);
  margin-top: -4px
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 230px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
  z-index: 50;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0)
}

.dropdown-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 10px;
  color: #4c5362;
  font-size: 12px;
  font-weight: 600
}

.dropdown-menu a:hover {
  background: #f2f5ff;
  color: var(--blue)
}

.contact-pill,
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .01em;
  box-shadow: 0 8px 18px rgba(45, 112, 246, .22);
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}

.contact-pill {
  min-height: 27px;
  padding: 0 20px;
  font-size: 12px;
  text-transform: none
}

.btn-primary:hover,
.btn-secondary:hover,
.contact-pill:hover {
  transform: translateY(-2px);
  background: var(--blue-2);
  box-shadow: 0 14px 28px rgba(45, 112, 246, .30)
}

.btn-secondary {
  background: var(--blue);
  min-width: 190px
}

.btn-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #f3f5fa;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: .25s ease
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.hero-card {
  position: relative;
  overflow: hidden;
  width: min(1240px, calc(100% - 44px));
  min-height: 520px;
  margin: 24px auto 72px;
  border-radius: var(--radius-xl);
  background: linear-gradient(102deg, #d9ffff 0%, #eefcff 43%, #a9c1f5 100%);
  isolation: isolate;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 23% 18%, rgba(255, 255, 255, .65), transparent 34%), radial-gradient(circle at 71% 16%, rgba(255, 255, 255, .35), transparent 36%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
  padding: 48px 24px 0
}

.hero-kicker,
.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 18px;
  line-height: 1.1
}

.eyebrow {
  font-size: 14px;
  margin-bottom: 12px
}

.hero-title {
  margin: 0;
  color: var(--text);
  font-size: clamp(32px, 3vw, 58px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -.055em
}

.hero-subtitle {
  margin: 18px auto 0;
  max-width: 760px;
  color: #687184;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: -.025em
}

.hero-drone {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: auto;
  transform: translateX(-50%);
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.02) saturate(1.02)
}

.section {
  padding: 92px 0
}

.section-tight {
  padding: 68px 0
}

.section-dark {
  background: var(--navy);
  color: #fff
}

.section-light {
  background: var(--light)
}

.section-head {
  text-align: center;
  margin: 0 auto 46px;
  max-width: 760px
}

.section-head .eyebrow {
  font-size: 15 px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 15px
  
}

.section-head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -.045em
}

.section-head p {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  max-width: 740px
}

.section-dark .section-head p {
  color: rgba(255, 255, 255, .72)
}

.section-dark .section-head h2 {
  color: #fff
}

.intro-text {
  padding: 62px 0 72px;
  background: var(--light);
  text-align: center
}

.intro-text .eyebrow {
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 15px
}

.intro-text h2 {
  font-size: clamp(32px, 4.4vw, 46px);
  line-height: 1.08;
  margin: 0;
  font-weight: 600;
  letter-spacing: -.05em
}

.intro-text p {
  max-width: 820px;
  margin: 18px auto 0;
  color: #777d8a;
  line-height: 1.55;
  font-size: 14px
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center
}

.about-image {
  width: 58%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--soft-shadow)
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover
}

.feature-card,
.light-card,
.contact-card,
.job-card,
.product-card,
.service-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 0 rgba(7, 13, 29, .05);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.feature-card:hover,
.light-card:hover,
.contact-card:hover,
.job-card:hover,
.product-card:hover,
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--soft-shadow)
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px
}

.light-card {
  padding: 34px 32px;
  min-height: 250px
}

.icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 22px rgba(45, 112, 246, .22)
}

.icon-badge svg {
  width: 22px;
  height: 22px
}

.light-card h3,
.feature-card h3,
.contact-card h3 {
  margin: 18px 0 8px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.03em
}

.light-card p,
.feature-card p,
.contact-card p {
  margin: 0;
  color: #747986;
  line-height: 1.45;
  font-size: 13px
}

.icon-grid2 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  max-width: 900px;
  margin-inline: auto
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 500px;
  margin-inline: auto
}


.icon-grid.wide {
  max-width: 900px
  
}



.feature-card {
  padding: 26px 18px;
  text-align: center;
  background: #fff;
  color: var(--text);
  min-height: 134px;
  border: 1px solid rgba(255, 255, 255, .2)
}

.feature-card .mini-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  color: var(--blue)
}

.feature-card h3 {
  font-size: 16px;
  line-height: 1.1;
  margin: 0 0 6px
}

.feature-card p {
  font-size: 11px;
  line-height: 1.22;
  color: #7d8290
}

.dass-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 900px;
  margin-inline: auto
}

.dass-card {
  position: relative;
  padding: 10px;
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  transition: .28s ease;
  box-shadow: 0 1px 0 rgba(7, 13, 29, .06)
}

.dass-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--soft-shadow)
}

.dass-card img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px
}

.dass-card h3 {
  font-size: 17px;
  line-height: 1.12;
  margin: 14px 10px 8px;
  font-weight: 600;
  letter-spacing: -.035em
}

.arrow-float {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(45, 112, 246, .28)
}

.arrow-float::before {
  content: '↗';
  font-size: 19px;
  line-height: 1
}

.product-section {
  position: relative;
  overflow: hidden
}

.product-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  width: min(980px, calc(100% - 42px));
  margin-inline: auto
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
  scroll-behavior: smooth;
  border-radius: 22px
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform .35s ease;
  padding: 4px 0 10px
}

.product-card {
  flex: 0 0 275px;
  padding: 9px 9px 18px;
  background: #fff;
  color: var(--text);
  border-radius: 18px;
  overflow: hidden
}

.product-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 14px
}

.product-card h3 {
  margin: 16px 8px 22px;
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.04em
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  padding: 0 8px
}

.spec {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  color: #59606f;
  font-size: 9px;
  line-height: 1.1;
  font-weight: 700
}

.spec b {
  display: block;
  color: #0d1324;
  font-size: 9px;
  white-space: nowrap
}

.spec span {
  font-size: 7px;
  color: #6f7483;
  font-weight: 500;
  display: block
}

.spec-dot {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--blue);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 8px;
  font-weight: 900
}

.carousel-btn {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f0f2f6;
  color: #8b92a1;
  font-size: 24px;
  font-weight: 800;
  transition: .25s ease;
}

.section-dark .carousel-btn {
  background: #f5f6f9;
  color: #8b92a1
}

.carousel-btn:hover {
  background: var(--blue);
  color: #fff;
  transform: scale(1.06)
}

.view-all-row {
  text-align: center;
  margin-top: 24px
}

.view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  min-width: 92px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  transition: .25s ease
}

.view-all:hover {
  transform: translateY(-2px);
  background: var(--blue-2)
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 275px);
  gap: 42px 34px;
  justify-content: center
}

.cta-section {
  padding: 92px 0;
  text-align: center;
  background: #fff
}

.cta-section h2 {
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.08;
  margin: 0;
  font-weight: 600;
  letter-spacing: -.05em
}

.cta-section p {
  max-width: 650px;
  margin: 18px auto 28px;
  color: #6e7482;
  font-size: 15px;
  line-height: 1.4
}

.footer-main {
  background: #f4f4f6;
  padding: 70px 0 56px;
  position: relative
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 60px;
  color: #4d5360;
  font-size: 12px;
  font-weight: 600
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1.15fr;
  gap: 58px;
  align-items: start
}

.footer-main h3 {
  font-size: 24px;
  line-height: 1.05;
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: -.04em
}

.footer-main h3 span {
  color: var(--blue)
}

.footer-main p,
.footer-main address {
  font-style: normal;
  color: #777d8b;
  font-size: 13px;
  line-height: 1.45;
  margin: 0
}

.newsletter {
  margin-top: 22px;
  display: flex;
  align-items: center;
  width: min(300px, 100%);
  height: 36px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 7px 16px rgba(7, 13, 29, .12);
  padding: 3px
}

.newsletter input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0 14px;
  font-size: 12px;
  outline: 0;
  color: var(--text)
}

.newsletter button {
  width: 42px;
  height: 30px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  transition: .25s ease
}

.newsletter button:hover {
  background: var(--blue-2);
  transform: scale(1.04)
}

.footer-contact p+p {
  margin-top: 22px
}

.footer-map img {
  border-radius: 18px;
  width: 100%;
  height: 170px;
  object-fit: cover
}

.footer-bottom {
  height: 64px;
  background: var(--navy);
  color: #697084
}

.footer-bottom .container {
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px
}

.footer-bottom p {
  margin: 0;
  font-size: 12px
}

.footer-logo img {
  width: 100px
}

.socials {
  display: flex;
  gap: 12px;
  justify-content: flex-end
}

.socials a {
  width: 24px;
  height: 24px;
  border-radius: 10%;
  display: grid;
  place-items: center;
  
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  transition: .25s ease
}

.socials a:hover {
  transform: translateY(-3px)
}

.back-to-top {
  position: fixed;
  right: 34px;
  bottom: 82px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
 
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 30px;
  z-index: 900;
  box-shadow: 0 14px 24px rgba(45, 112, 246, .30);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: .25s ease
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0)
}

.viewer-section {
  background: #fff;
  padding: 92px 0
}

.viewer-card {
  background: #f5f5f7;
  border-radius: 18px;
  min-height: 330px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 14px
}

.viewer-card canvas {
  width: 100% !important;
  height: 100% !important;
  display: block
}

.viewer-placeholder {
  text-align: center;
  color: var(--blue);
  display: grid;
  place-items: center;
  gap: 22px
}

.spin-360 {
  width: 126px;
  height: 126px;
  border: 5px solid var(--blue);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  font-size: 34px;
  font-weight: 800
}

.spin-360::before,
.spin-360::after {
  content: "";
  position: absolute;
  inset: -16px;
  border: 4px solid var(--blue);
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  animation: orbit 3.5s linear infinite
}

.spin-360::after {
  transform: rotate(90deg);
  animation-direction: reverse
}

.viewer-btn {
  height: 25px;
  min-width: 94px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(45, 112, 246, .2);
  transition: .25s ease
}

.viewer-btn:hover {
  background: var(--blue-2);
  transform: translateY(-2px)
}

@keyframes orbit {
  to {
    transform: rotate(360deg)
  }
}

.spec-panel,
.feature-panel {
  background: #f5f5f7;
  border-radius: 18px;
  padding: 32px 34px;
  margin-top: 14px
}

.spec-panel h3,
.feature-panel h3 {
  font-size: 13px;
  text-transform: uppercase;
  margin: 0 0 26px;
  font-weight: 800
}

.spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 100px
}

.spec-row,
.tick-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: #111827
}

.spec-row .label {
 
  font-weight: 500
}

.spec-row .value {
  font-weight: 700;
  color: #111827;
  text-align: left
}

.check-dot {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-size: 5px;
  font-weight: 900
}

.check-dott {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 900
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 70px
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start
}

.feature-item h4 {
  font-size: 17px;
  margin: 0 0 4px;
  font-weight: 700
}

.feature-item p {
  font-size: 12px;
  margin: 0;
  color: #777d88
}

.split-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.waypoint {
  text-align: center;
  margin-top: 42px
}

.waypoint h3 {
  font-size: 16px;
  margin: 0 0 20px
}

.waypoint img {
  margin-inline: auto;
  width: min(560px, 100%)
}

.service-block {
  padding: 92px 0
}

.service-block.alt {
  background: #ededf0
}

.service-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
  width: min(760px, calc(100% - 42px));
  margin-inline: auto
}

.service-copy {
  background: #f4f4f7;
  border-radius: 18px;
  padding: 30px
}

.service-copy ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px
}

.service-copy li,
.bullets li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #111827;
  font-size: 13px;
  font-weight: 600
}

.service-copy .divider {
  height: 1px;
  background: #c9ccd5;
  margin: 28px 0
}

.service-copy .small-list {
  display: grid;
  gap: 9px
}

.service-copy .small-list li {
  font-size: 11px;
  color: #586070
}

.service-image {
  border-radius: 18px;
  overflow: hidden;
  background: #f2f2f4
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px
}

.service-title {
  text-align: center;
  margin: 0 auto 32px;
  max-width: 740px
}

.service-title .eyebrow {
  color: var(--blue);
  font-size: 13px
}

.service-title h2 {
  font-size: clamp(30px, 4vw, 42px);
  margin: 0;
  font-weight: 600;
  letter-spacing: -.05em
}

.service-title p {
  color: #737987;
  margin: 12px 0 0;
  font-size: 13px
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 780px;
  margin: 0 auto 50px
}

.contact-card {
  padding: 32px;
  background: #f5f5f7
}

.form-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 780px;
  margin-inline: auto
}

.contact-form,
.location-card {
  background: #f4f4f7;
  border-radius: 18px;
  padding: 30px
}

.contact-form .eyebrow,
.location-card .eyebrow {
  font-size: 12px;
  text-align: left
}

.contact-form h2,
.location-card h2 {
  font-size: 24px;
  margin: 0 0 24px;
  letter-spacing: -.04em
}

.uav-capability-section {
  padding: 90px 0;
  background: var(--surface);
}

.uav-capability-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 1fr);
  gap: 40px;
  align-items: center;
  padding: 28px;
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: 28px;
}

.uav-capability-video {
  min-width: 0;
}

.uav-capability-title {
  margin: 0 0 18px;
  text-align: center;
  font-size: clamp(15px, 2.4vw, 25px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
}

.uav-video-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0px;
  background: #081223;
}

.uav-capability-player {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #081223;
}

.uav-video-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.25);
  border-top-color: #2f6fed;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: uavLoaderRotate 0.8s linear infinite;
  pointer-events: none;
}

.uav-video-loader.hide {
  display: none;
}

@keyframes uavLoaderRotate {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.uav-capability-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.uav-capability-tab {
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid #8d97a8;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: 0.25s ease;
}

.uav-capability-tab:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.uav-capability-tab.active {
  border-color: var(--blue);
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(47, 111, 237, 0.22);
}

/* Tablet */
@media (max-width: 980px) {
  .uav-capability-section {
    padding: 72px 0;
  }

  .uav-capability-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.input,
.textarea {
  width: 100%;
  border: 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 -2px 0 rgba(7, 13, 29, .05), 0 4px 12px rgba(7, 13, 29, .08);
  min-height: 40px;
  padding: 0 18px;
  color: var(--text);
  outline: 0;
  font-size: 13px;
  margin-bottom: 14px
}

.textarea {
  border-radius: 18px;
  min-height: 200px;
  padding: 18px;
  resize: vertical
}

.submit-small {
  height: 27px;
  min-width: 125px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 800
}

.form-note {
  font-size: 12px;
  margin: 12px 0 0;
  color: var(--blue);
  font-weight: 700;
  min-height: 18px
}

.location-card img {
  border-radius: 14px;
  height: 300px;
  width: 100%;
  object-fit: cover;
  margin-top: 20px
}

.culture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 760px;
  margin: auto
}

.culture-copy {
  background: #f4f4f7;
  border-radius: 18px;
  padding: 44px 34px
}

.culture-copy h3 {
  font-size: 24px;
  margin: 0 0 18px
}

.bullets {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 11px
}

.culture-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: #f4f4f7;
  border-radius: 18px;
  padding: 18px
}

.culture-images img {
  border-radius: 14px;
  width: 100%;
  height: 132px;
  object-fit: cover
}

.job-card {
  flex: 0 0 280px;
  background: #fff;
  color: var(--text);
  padding: 10px 10px 22px;
  border-radius: 18px
}

.job-card img {
  border-radius: 14px;
  aspect-ratio: 1/1;
  object-fit: cover
}

.job-card h3 {
  font-size: 21px;
  margin: 16px 8px 12px;
  line-height: 1.1
}

.job-card p {
  font-size: 12px;
  color: #6f7483;
  margin: 8px
}

.ecosystem {
  padding: 88px 0;
  background: #f3f3f6;
  text-align: center
}

.ecosystem-map {
  max-width: 720px;
  margin: 42px auto 0;
  position: relative
}

.ecosystem-line {
  height: 2px;
  background: #5dc6c7;
  margin: 48px 74px 0;
  position: relative
}

.ecosystem-line::before,
.ecosystem-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  background: #5dc6c7;
  border-radius: 50%;
  transform: translateY(-50%)
}

.ecosystem-line::before {
  left: 0
}

.ecosystem-line::after {
  right: 0
}

.ecosystem-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 26px
}

.ecosystem-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px 14px;
  box-shadow: 0 1px 0 rgba(7, 13, 29, .04)
}

.ecosystem-card img {
  width: 70px;
  margin: 0 auto 8px
}

.ecosystem-card h3 {
  font-size: 12px;
  margin: 0 0 4px
}

.ecosystem-card p {
  font-size: 9px;
  color: #717784;
  margin: 0
}

.ecosystem-parent {
  width: 150px;
  margin: auto;
  background: #fff;
  border-radius: 14px;
  padding: 20px 14px;
  box-shadow: 0 1px 0 rgba(7, 13, 29, .04)
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  max-width: 880px;
  margin: auto
}

.message-band {
  position: relative;
  padding: 70px 0;
  text-align: center;
  color: #fff;
  overflow: hidden
}

.message-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(7, 13, 29, .72), rgba(7, 13, 29, .72)), url('../assets/images/hero-drone.jpg') center/cover;
  filter: saturate(.8)
}

.message-band .container {
  position: relative
}

.message-band h2 {
  color: var(--blue);
  font-size: 30px;
  margin: 0 0 14px
}

.message-band p {
  font-size: 19px;
  line-height: 1.4;
  margin: 0 auto;
  max-width: 760px
}

.obj-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(7, 13, 29, .75);
  backdrop-filter: blur(10px)
}

.obj-modal.open {
  display: flex
}

.modal-card {
  position: relative;
  width: min(900px, 100%);
  height: min(620px, 85vh);
  background: #10182b;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .35)
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: var(--text);
  font-size: 24px;
  line-height: 1
}

.modal-stage {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center
}

.viewer-hint {
  position: absolute;
  left: 18px;
  bottom: 14px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  background: rgba(255, 255, 255, .08);
  padding: 8px 12px;
  border-radius: 999px
}

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

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

@media (max-width:1024px) {
  :root {
    --container: 920px
  }

  .nav-panel {
    gap: 24px
  }

  .nav-links {
    gap: 24px
  }

  .hero-card {
    min-height: 455px
  }

  .hero-content {
    padding-top: 38px
  }

  .hero-title {
    font-size: clamp(34px, 5vw, 48px)
  }

  .hero-subtitle {
    font-size: 17px
  }

  .icon-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 620px
  }

  .products-grid {
    grid-template-columns: repeat(2, 275px)
  }

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

  .footer-map {
    grid-column: 1/-1
  }

  .two-col,
  .culture-grid,
  .form-map-grid {
    grid-template-columns: 1fr
  }

  .service-layout {
    grid-template-columns: 1fr
  }

  .service-layout.reverse .service-image {
    order: -1
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}



@media (max-width:780px) {
  .site-header {
    height: 66px
  }

  .header-inner {
    height: 66px
  }

  .logo img {
    width: 94px
  }

  .menu-toggle {
    display: flex
  }

  .nav-panel {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 76px;
    display: block;
    padding: 20px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(7, 13, 29, .18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: .25s ease
  }

  .nav-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
  }

  .nav-links {
    display: grid;
    gap: 0
  }

  .nav-link,
  .dropdown-toggle {
    width: 100%;
    padding: 15px 8px;
    font-size: 15px;
    justify-content: space-between
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: #f5f6fa;
    width: 100%;
    display: none;
    margin: 0 0 10px
  }

  .dropdown.open .dropdown-menu {
    display: block;
    transform: none
  }

  .nav-panel .contact-pill {
    width: 100%;
    margin-top: 14px;
    min-height: 42px
  }

  .hero-card {
    width: calc(100% - 24px);
    min-height: 410px;
    margin-top: 14px;
    margin-bottom: 48px;
    border-radius: 18px
  }

  .hero-content {
    padding: 34px 16px 0
  }

  .hero-kicker {
    font-size: 13px
  }

  .hero-title {
    font-size: 32px;
    line-height: 1.08
  }

  .hero-subtitle {
    font-size: 14px;
    margin-top: 12px
  }

  .hero-drone {
    width: 120%;
    bottom: 0
  }

  .section,
  .viewer-section,
  .service-block {
    padding: 62px 0
  }

  .section-head {
    margin-bottom: 32px
  }

  .section-head h2 {
    font-size: 30px
  }

  .intro-text {
    padding: 48px 0
  }

  .icon-grid,
  .dass-grid,
  .mission-grid,
  .contact-grid,
  .features-grid,
  .split-panels,
  .spec-list,
  .footer-grid,
  .ecosystem-row,
  .process-grid {
    grid-template-columns: 1fr
  }

  .product-carousel-wrap {
    gap: 10px;
    width: calc(100% - 22px)
  }

  .carousel-btn {
    width: 38px;
    height: 38px;
    flex-basis: 38px
  }

  .product-card,
  .job-card {
    flex-basis: 245px
  }

  .products-grid {
    grid-template-columns: 1fr;
    place-items: center
  }

  .products-grid .product-card {
    width: min(275px, 100%)
  }

  .btn-row {
    gap: 14px
  }

  .btn-primary,
  .btn-secondary {
    min-width: 150px
  }

  .footer-nav {
    gap: 22px;
    flex-wrap: wrap;
    margin-bottom: 36px
  }

  .footer-main {
    padding: 52px 0
  }

  .footer-bottom {
    height: auto;
    padding: 18px 0
  }

  .footer-bottom .container {
    height: auto;
    grid-template-columns: 1fr;
    text-align: center
  }

  .socials {
    justify-content: center
  }

  .footer-logo {
    order: -1
  }

  .back-to-top {
    right: 18px;
    bottom: 72px;
    width: 48px;
    height: 48px
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .about-image img {
    height: 450px
  }

  .culture-images img {
    height: 110px
  }

  .location-card img {
    height: 220px
  }

  .ecosystem-line {
    display: none
  }

  .viewer-card {
    min-height: 260px
  }

  .spin-360 {
    width: 96px;
    height: 96px;
    font-size: 28px
  }

  .spec-panel,
  .feature-panel {
    padding: 26px 20px
  }

  .spec-row {
    grid-template-columns: auto 1fr
  }

  .spec-row .value {
    text-align: left;
    grid-column: 2
  }

  .service-copy {
    padding: 24px
  }

  .message-band p {
    font-size: 15px
  }

  .modal-card {
    height: 75vh
  }
}



/* --------------------------------------------------------------------------
   Vajra QC20 GLB 360° product viewer
   -------------------------------------------------------------------------- */
.viewer-section {
  background: #fff;
  padding: 92px 0;
}

.viewer-section .section-head {
  max-width: 720px;
  margin: 0 auto 32px;
}

.viewer-section .section-head .eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
}

.viewer-section .section-head p {
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 14px;
}

.glb-viewer-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  margin-bottom: 14px;
}

.glb-viewer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
  padding: 16px 26px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .035em;
}

.glb-stage {
  position: relative;
  height: 530px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(45, 112, 246, .16), transparent 42%),
    linear-gradient(180deg, #fafcff 0%, #f0f4fa 100%);
}

.glb-model-viewer {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  --poster-color: transparent;
  --progress-bar-color: var(--blue);
  touch-action: pan-y;
}

.glb-model-viewer::part(default-progress-bar) {
  height: 4px;
  background-color: rgba(45, 112, 246, .18);
}

.glb-model-viewer::part(default-progress-mask) {
  background-color: var(--blue);
}

.glb-poster {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(45, 112, 246, .15), transparent 42%),
    linear-gradient(180deg, #fafcff 0%, #f0f4fa 100%);
}

.glb-poster img {
  width: min(72%, 600px);
  max-height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 20px 26px rgba(7, 13, 29, .16));
}

.glb-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(45, 112, 246, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .90);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 16px 40px rgba(7, 13, 29, .12);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(12px);
  transition: opacity .25s ease, visibility .25s ease;
  pointer-events: none;
}

.glb-loading.hide {
  opacity: 0;
  visibility: hidden;
}

.glb-loading.error {
  max-width: calc(100% - 36px);
  color: #d63c47;
}

.glb-spinner {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  border: 2px solid rgba(45, 112, 246, .20);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: glb-spin .72s linear infinite;
}

.glb-help {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 3;
  padding: 9px 14px;
  border: 1px solid rgba(11, 16, 32, .10);
  border-radius: 999px;
  background: rgba(255, 255, 255, .84);
  color: #111827;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(7, 13, 29, .08);
  pointer-events: none;
  backdrop-filter: blur(10px);
}

.glb-reset-btn {
  min-height: 40px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(45, 112, 246, .24);
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}

.glb-reset-btn:hover {
  background: var(--blue-2);
  box-shadow: 0 14px 28px rgba(45, 112, 246, .30);
  transform: translateY(-2px);
}

@keyframes glb-spin {
  to { transform: rotate(360deg); }
}

/* Capability video section: mobile friendly pills. */
@media (max-width: 640px) {
  .uav-capability-section { padding: 58px 0; }

  .uav-capability-card {
    padding: 16px;
    border-radius: 20px;
  }

  .uav-video-frame { border-radius: 14px; }

  .uav-capability-title { font-size: 22px; }

  .uav-capability-tabs {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 4px 2px 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .uav-capability-tabs::-webkit-scrollbar { display: none; }

  .uav-capability-tab {
    min-width: max-content;
    flex: 0 0 auto;
    padding: 10px 16px;
    scroll-snap-align: start;
  }

  .viewer-section { padding: 58px 0; }

  .glb-viewer-card { border-radius: 18px; }

  .glb-viewer-top {
    min-height: 62px;
    padding: 12px 14px;
    font-size: 12px;
  }

  .glb-stage { height: 360px; }

  .glb-help {
    left: 12px;
    bottom: 12px;
    font-size: 10px;
  }

  .glb-reset-btn {
    min-height: 34px;
    padding: 0 14px;
    font-size: 11px;
  }
}

@media (min-width: 641px) and (max-width: 980px) {
  .glb-stage { height: 460px; }
}

@media (max-width: 480px) {
  .container,
  .container-narrow { width: calc(100% - 30px); }

  .hero-card { min-height: 380px; }
  .hero-title { font-size: 28px; }
  .hero-subtitle { font-size: 13px; }
  .hero-drone { width: 140%; height: auto; }

  .section-head h2,
  .cta-section h2 { font-size: 27px; }

  .product-card,
  .job-card { flex-basis: 220px; }

  .product-card h3 { font-size: 17px; }
  .product-specs { gap: 4px; }
  .spec-dot { width: 14px; height: 14px; }
  .footer-main h3 { font-size: 21px; }
  .cta-section { padding: 64px 0; }

  .btn-primary,
  .btn-secondary { width: 100%; }

  .btn-row { width: min(300px, 100%); margin-inline: auto; }
  .contact-card { padding: 24px; }
}

/* --------------------------------------------------------------------------
   Responsive Vajra QC20 hero banner
   -------------------------------------------------------------------------- */
.hero-card.hero-vajra {
  position: relative;
  isolation: isolate;
  width: min(1240px, calc(100% - 44px));
  height: clamp(500px, 42vw, 540px);
  min-height: 0;
  margin: 24px auto 72px;
  overflow: hidden;
  border: 1px solid rgba(51, 95, 166, .12);
  border-radius: clamp(22px, 2vw, 30px);
  background: linear-gradient(105deg, #d9ffff 0%, #f4ffff 43%, #a8c2f4 100%);
  box-shadow: 0 22px 50px rgba(18, 53, 109, .08);
}

.hero-card.hero-vajra::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255,255,255,.25) 0%, rgba(255,255,255,.03) 42%, rgba(7,13,29,.04) 100%),
    radial-gradient(circle at 50% 8%, rgba(255,255,255,.48), transparent 42%);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}

.hero-card.hero-vajra .hero-drone {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  transform: none;
  object-fit: cover;
  object-position: center left;
  filter: contrast(1.02) saturate(1.02);
}

.hero-card.hero-vajra .hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(44px, 5vw, 62px) 32px 0;
  text-align: center;
}

.hero-card.hero-vajra .hero-kicker {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: clamp(12px, 1.35vw, 16px);
  font-weight: 500;
  
}

.hero-card.hero-vajra .hero-title {
  font-size: clamp(40px, 5vw, 30px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.06em;
  text-wrap: balance;
}

.hero-card.hero-vajra .hero-subtitle {
  max-width: 660px;
  margin: 16px auto 0;
  color: #000000;
  font-size: clamp(12px, 1.7vw, 18px);
  line-height: 1.45;
  letter-spacing: -.02em;
  text-wrap: balance;
}

.hero-scroll-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 36px;
  margin-top: 22px;
  padding: 0 15px;
  border: 1px solid rgba(45, 112, 246, .24);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(45,112,246,.10);
  backdrop-filter: blur(10px);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.hero-scroll-link:hover {
  background: #fff;
  box-shadow: 0 12px 24px rgba(45,112,246,.18);
  transform: translateY(-2px);
}

.hero-scroll-link span {
  font-size: 15px;
  line-height: 1;
}

/* Tablet: use a dedicated 32:21 composition to protect the full drone. */
@media (min-width: 641px) and (max-width: 1024px) {
  .hero-card.hero-vajra {
    width: min(920px, calc(100% - 36px));
    height: auto;
    aspect-ratio: 32 / 21;
    margin-top: 20px;
    margin-bottom: 58px;
    border-radius: 26px;
  }

  .hero-card.hero-vajra .hero-content {
    padding-top: clamp(38px, 6vw, 56px);
  }

  .hero-card.hero-vajra .hero-title {
    font-size: clamp(38px, 5.5vw, 52px);
  }

  .hero-card.hero-vajra .hero-subtitle {
    max-width: 600px;
    font-size: clamp(15px, 2vw, 18px);
  }
}

/* Mobile: 4:5 art direction keeps copy legible and avoids cutting the UAV. */
@media (max-width: 640px) {
  .hero-card.hero-vajra {
    width: calc(100% - 24px);
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
    margin-top: 20px;
    margin-bottom: 48px;
    border-radius: 20px;
  }

  .hero-card.hero-vajra::before {
    background: linear-gradient(180deg, rgba(255,255,255,.38) 0%, rgba(255,255,255,.10) 42%, rgba(255,255,255,0) 66%);
  }

  .hero-card.hero-vajra .hero-drone {
    object-position: center center;
  }

  .hero-card.hero-vajra .hero-content {
    width: 100%;
    padding: 60px 18px 0;
  }

  .hero-card.hero-vajra .hero-kicker {
    margin-bottom: 9px;
    font-size: 11px;
    letter-spacing: .045em;
  }

  .hero-card.hero-vajra .hero-title {
    font-size: clamp(32px, 9vw, 20px);
    line-height: 1.02;
  }

  .hero-card.hero-vajra .hero-subtitle {
    max-width: 300px;
    margin-top: 11px;
    font-size: 13px;
    line-height: 1.42;
  }

  .hero-scroll-link {
    min-height: 32px;
    margin-top: 16px;
    padding: 0 13px;
    font-size: 10px;
  }
}

@media (max-width: 380px) {
  .hero-card.hero-vajra .hero-content { padding-top: 25px; }
  .hero-card.hero-vajra .hero-title { font-size: 31px; }
  .hero-card.hero-vajra .hero-subtitle { font-size: 12px; }
}
