:root {
  color-scheme: light;
  --ink: #17211b;
  --muted: #647067;
  --leaf: #147a47;
  --leaf-dark: #0f5132;
  --gold: #c79222;
  --sky: #e8f5ff;
  --clay: #f4eee4;
  --line: rgba(23, 33, 27, 0.12);
  --shadow: 0 24px 70px rgba(22, 55, 35, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Segoe UI, Arial, sans-serif;
  background: #fbfcf7;
  color: var(--ink);
}

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(251, 252, 247, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 20px rgba(22, 55, 35, 0.12);
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.site-nav nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(60px, 8vw, 110px) clamp(20px, 6vw, 88px) 70px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(247, 252, 236, 0.96), rgba(232, 245, 255, 0.82)),
    url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  background: linear-gradient(0deg, #fbfcf7, transparent);
}

.hero-content,
.hero-dashboard {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-head p,
.demo-copy p {
  margin: 0 0 12px;
  color: var(--leaf-dark);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
}

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

h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  line-height: 1.06;
  text-wrap: balance;
}

.hero-content > p:not(.eyebrow) {
  max-width: 700px;
  color: #35473b;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.primary-action,
.secondary-action,
.price-card a,
.demo-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
}

.primary-action,
.price-card a,
.demo-form button {
  border: 0;
  background: var(--leaf);
  color: white;
  box-shadow: 0 14px 34px rgba(20, 122, 71, 0.24);
}

.secondary-action {
  border: 1px solid rgba(20, 122, 71, 0.3);
  background: rgba(255, 255, 255, 0.72);
}

.hero-dashboard {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.screen-top {
  display: flex;
  gap: 8px;
  padding-bottom: 18px;
}

.screen-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

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

.screen-grid div,
.stats-band article,
.feature-grid article,
.price-card,
.contact-card,
.demo-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
}

.screen-grid div {
  min-height: 106px;
  padding: 18px;
}

.screen-grid strong,
.screen-grid em {
  display: block;
}

.screen-grid em {
  margin-top: 20px;
  color: var(--leaf);
  font-style: normal;
}

.screen-bars {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.screen-bars span {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--leaf), #9dcc72);
  animation: growBar 2.4s ease-in-out infinite alternate;
}

.screen-bars span:nth-child(2) {
  width: 72%;
  animation-delay: 0.2s;
}

.screen-bars span:nth-child(3) {
  width: 88%;
  animation-delay: 0.4s;
}

.hero-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.field-line {
  position: absolute;
  left: -5%;
  width: 110%;
  height: 2px;
  background: rgba(20, 122, 71, 0.22);
  transform: rotate(-8deg);
  animation: drift 9s linear infinite;
}

.line-one { top: 28%; }
.line-two { top: 42%; animation-delay: -2s; }
.line-three { top: 57%; animation-delay: -4s; }

.crop-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 10px rgba(199, 146, 34, 0.12);
  animation: pulse 2.8s ease-in-out infinite;
}

.dot-one { top: 22%; left: 66%; }
.dot-two { top: 64%; left: 52%; animation-delay: 0.5s; }
.dot-three { top: 76%; left: 79%; animation-delay: 1s; }

.stats-band,
.feature-section,
.pricing-section,
.demo-section,
.contact-section {
  padding: clamp(54px, 7vw, 96px) clamp(20px, 6vw, 88px);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stats-band article,
.feature-grid article,
.price-card,
.contact-card {
  padding: 24px;
}

.stats-band strong {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.stats-band strong span {
  color: var(--gold);
}

.stats-band p,
.feature-grid h3,
.price-card h3,
.contact-card h3 {
  font-weight: 850;
}

.stats-band small,
.feature-grid p,
.price-card p,
.contact-card small,
.demo-copy span {
  color: var(--muted);
  line-height: 1.6;
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-note {
  display: block;
  color: var(--muted);
  line-height: 1.6;
}

.section-head h2,
.demo-copy h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.45rem);
  line-height: 1.12;
  text-wrap: balance;
}

.feature-grid,
.price-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-grid article span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--gold);
  font-weight: 900;
}

.pricing-section,
.contact-section {
  background: var(--clay);
}

.solutions-section {
  padding: clamp(54px, 7vw, 96px) clamp(20px, 6vw, 88px);
  background: #fbfcf7;
}

.solutions-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.solution-copy {
  display: grid;
  gap: 12px;
}

.solution-copy span,
.drone-section p {
  color: var(--leaf-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
}

.solution-copy h3,
.drone-section h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  line-height: 1.12;
}

.solution-copy p,
.solution-copy li,
.drone-section span {
  color: var(--muted);
  line-height: 1.65;
}

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

.solution-copy li {
  padding-left: 24px;
  position: relative;
}

.solution-copy li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--leaf);
  font-weight: 900;
}

.phone-showcase {
  min-height: 600px;
  position: relative;
}

.phone-showcase img {
  position: absolute;
  width: min(32%, 235px);
  border-radius: 28px;
  box-shadow: 0 26px 65px rgba(22, 55, 35, 0.2);
  outline: 8px solid rgba(255, 255, 255, 0.82);
}

.phone-showcase img:nth-child(1) {
  left: 0;
  top: 42px;
  transform: rotate(-5deg);
}

.phone-showcase img:nth-child(2) {
  left: 34%;
  top: 0;
  transform: rotate(3deg);
}

.phone-showcase img:nth-child(3) {
  right: 0;
  top: 68px;
  transform: rotate(6deg);
}

.drone-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  padding: clamp(54px, 7vw, 96px) clamp(20px, 6vw, 88px);
  overflow: hidden;
  background: #eef7ff;
}

.drone-section img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  animation: droneFloat 5s ease-in-out infinite;
}

.drone-section div {
  display: grid;
  gap: 14px;
}

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

.price-card {
  position: relative;
  display: flex;
  min-height: 540px;
  flex-direction: column;
}

.price-card.recommended {
  border-color: rgba(20, 122, 71, 0.5);
  box-shadow: var(--shadow);
  transform: translateY(-10px);
}

.badge {
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #e6f5ec;
  color: var(--leaf-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.price-card strong {
  margin: 12px 0 2px;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1;
}

.price-card small {
  color: var(--muted);
  font-size: 1rem;
}

.price-card em {
  color: var(--gold);
  font-style: normal;
  font-weight: 800;
}

.billing-note {
  display: block;
  margin-top: 10px;
  color: var(--leaf-dark);
  font-weight: 800;
  line-height: 1.45;
}

.price-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.price-card li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--leaf);
  font-weight: 900;
}

.price-card a {
  margin-top: auto;
}

.demo-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.demo-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.demo-form label {
  display: grid;
  gap: 8px;
  color: #314238;
  font-weight: 800;
}

.demo-form .wide,
.form-message,
.demo-form button {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  background: white;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-message {
  padding: 12px 14px;
  border-radius: 8px;
  background: #e6f5ec;
  color: var(--leaf-dark);
  font-weight: 800;
}

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

.contact-card a,
.contact-card strong {
  display: block;
  margin-bottom: 10px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(20px, 6vw, 88px);
  border-top: 1px solid var(--line);
}

.partner-strip {
  position: sticky;
  bottom: 0;
  z-index: 18;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 10px clamp(20px, 6vw, 88px);
  border-top: 1px solid var(--line);
  background: rgba(251, 252, 247, 0.92);
  backdrop-filter: blur(18px);
}

.partner-strip > span {
  color: var(--leaf-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.partner-window {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.partner-pill {
  display: none;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.partner-pill.is-visible {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.partner-pill img,
.partner-pill strong {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #e6f5ec;
  color: var(--leaf-dark);
  font-size: 0.72rem;
  font-weight: 900;
  object-fit: cover;
}

.partner-pill em {
  overflow: hidden;
  color: #304338;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 74px;
  z-index: 30;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 18px 38px rgba(18, 140, 72, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.floating-whatsapp span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(18, 140, 72, 0.42);
}

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

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

@keyframes growBar {
  from { transform: scaleX(0.62); transform-origin: left; }
  to { transform: scaleX(1); transform-origin: left; }
}

@keyframes drift {
  from { transform: translateX(-4%) rotate(-8deg); }
  to { transform: translateX(4%) rotate(-8deg); }
}

@keyframes pulse {
  50% { transform: scale(1.35); }
}

@keyframes droneFloat {
  50% { transform: translateY(-10px); }
}

@media (max-width: 980px) {
  .site-nav nav {
    display: none;
  }

  .hero,
  .demo-section,
  .solutions-grid,
  .drone-section {
    grid-template-columns: 1fr;
  }

  .stats-band,
  .feature-grid,
  .price-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .phone-showcase {
    min-height: 520px;
  }

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

@media (max-width: 640px) {
  h1 {
    font-size: 2rem;
  }

  .stats-band,
  .feature-grid,
  .price-grid,
  .contact-grid,
  .demo-form {
    grid-template-columns: 1fr;
  }

  .phone-showcase {
    display: grid;
    min-height: auto;
    gap: 18px;
  }

  .phone-showcase img {
    position: static;
    width: min(100%, 320px);
    margin-inline: auto;
    transform: none !important;
  }

  .partner-strip {
    position: static;
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 18px;
  }

  .partner-window {
    grid-template-columns: 1fr;
  }

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

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}
