/*
Theme Name: Above All Ag
Theme URI: https://aboveallAg.co.za
Author: Wesco Development
Author URI: https://wescodevelopment.com/
Description: Premium luxury agricultural drone spraying theme. Scroll animations, Cinematic sections, GSAP ScrollTrigger.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
Text Domain: above-all-ag
Tags: agriculture, luxury, dark, one-page, scroll-animation
*/

/* ─── Design Tokens ─────────────────────────────────────── */
:root {
  --bg:       #060608;
  --surface:  #0c0c10;
  --panel:    rgba(255,255,255,.045);
  --line:     rgba(255,255,255,.08);
  --gold:     #c8a96a;
  --gold-dim: rgba(200,169,106,.18);
  --text:     #f0ede8;
  --muted:    #9a978f;
  --dim:      #545250;
  --radius:   20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; opacity: .5;
}

/* ─── Typography ──────────────────────────────────────── */
h1, h2 { font-family: 'Cormorant Garamond', serif; font-weight: 300; }
h3 { font-family: 'DM Sans', sans-serif; font-weight: 500; }
h1 { font-size: clamp(3.2rem, 8vw, 8rem); line-height: .88; letter-spacing: -.02em; }
h2 { font-size: clamp(2.4rem, 5.5vw, 5.5rem); line-height: .9; letter-spacing: -.01em; }
h3 { font-size: 1.05rem; letter-spacing: .01em; }
p, li { color: var(--muted); line-height: 1.75; font-size: .93rem; font-weight: 300; }
a { color: inherit; text-decoration: none; }

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .7rem;
  display: block;
  margin-bottom: 20px;
}
.center { text-align: center; }

/* ─── Glass ───────────────────────────────────────────── */
.glass {
  background: var(--panel);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid var(--line);
}

/* ─── Navigation ──────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  width: min(1280px, 92vw);
  padding: 14px 28px;
  border-radius: 999px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: background .4s, border-color .4s;
}
.site-header.scrolled { background: rgba(6,6,8,.88); border-color: rgba(255,255,255,.1); }
.site-header .brand {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.site-header .brand img { height: 34px; width: auto; }
.site-header nav a {
  color: rgba(255,255,255,.6);
  margin-left: 22px;
  font-size: .8rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color .25s;
}
.site-header nav a:hover { color: #fff; }
.site-header nav a.nav-cta {
  color: var(--gold);
  border: 1px solid rgba(200,169,106,.35);
  padding: 7px 18px;
  border-radius: 999px;
  margin-left: 28px;
  transition: background .25s, color .25s;
}
.site-header nav a.nav-cta:hover { background: var(--gold); color: #111; }
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
}

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 7vw 25vh;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 68% 40%, rgba(200,169,106,.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 85% 65%, rgba(200,169,106,.04) 0%, transparent 55%),
    linear-gradient(180deg, #030305 0%, #070709 100%);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 30%, var(--line) 70%, transparent);
}
.hero-inner { position: relative; z-index: 2; max-width: 860px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(200,169,106,.25);
  background: rgba(200,169,106,.06);
  margin-bottom: 38px;
}
.hero-tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 8px var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}
.hero-tag span { font-size: .68rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
@keyframes pulse-dot {
  0%,100% { opacity:1; box-shadow:0 0 8px var(--gold); }
  50% { opacity:.5; box-shadow:0 0 4px var(--gold); }
}
.hero h1 { margin-bottom: 26px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { max-width: 540px; font-size: .96rem; line-height: 1.72; color: var(--muted); margin-bottom: 42px; }
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 32px; right: 7vw; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--dim); font-size: .65rem; letter-spacing: .14em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, transparent, var(--gold));
  animation: scroll-drop 2.2s ease-in-out infinite;
}
@keyframes scroll-drop {
  0% { opacity:0; transform:scaleY(0); transform-origin:top; }
  50% { opacity:1; transform:scaleY(1); }
  100% { opacity:0; transform:scaleY(1); transform-origin:bottom; }
}

/* ─── Hero — Real Drone Image ─────────────────────── */
.hero-drone-wrap {
  position: absolute; top: 0; right: -4%;
  width: 58%; height: 100%;
  z-index: 1;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.hero-drone {
  position: relative;
  width: 580px; height: 560px;
}
.drone-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 60px rgba(200,169,106,.18)) drop-shadow(0 20px 80px rgba(0,0,0,.6));
  animation: drone-float 3.8s ease-in-out infinite;
}
@keyframes drone-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-16px) rotate(.4deg); }
}
.prop-wrap {
  position: absolute;
  width: 130px; height: 130px;
  transform: translate(-50%, -50%);
}
.pw1 { top: 18%; left: 20%; }
.pw2 { top: 18%; left: 80%; }
.pw3 { top: 82%; left: 20%; }
.pw4 { top: 82%; left: 80%; }
.prop-spin {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(180,180,180,.0) 0%,
    rgba(180,180,180,.0) 30%,
    rgba(200,200,200,.12) 55%,
    rgba(220,220,220,.22) 68%,
    rgba(200,200,200,.08) 80%,
    transparent 100%
  );
  animation: prop-spin 0.08s linear infinite;
  transform-origin: center center;
}
.pw1 .prop-spin, .pw4 .prop-spin { animation-direction: normal; }
.pw2 .prop-spin, .pw3 .prop-spin { animation-direction: reverse; }
@keyframes prop-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.telem {
  position: absolute;
  padding: 10px 16px; border-radius: 12px;
  font-size: .7rem; font-weight: 500; letter-spacing: .07em;
  text-transform: uppercase; color: rgba(255,255,255,.55); white-space: nowrap;
}
.telem strong { display: block; color: var(--gold); font-size: .96rem; font-weight: 600; letter-spacing: 0; }
.telem.t1 { top: 11%;  right: -2%; }
.telem.t2 { bottom: 18%; left: -4%; }
.telem.t3 { top: 48%; right: -4%; }

/* ─── Buttons ─────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: var(--gold); color: #0a0a0c;
  border-radius: 999px; font-weight: 600; font-size: .84rem; letter-spacing: .04em;
  transition: opacity .2s, transform .2s;
}
.btn-primary:hover { opacity: .88; transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  border: 1px solid var(--line); color: rgba(255,255,255,.65);
  border-radius: 999px; font-size: .84rem; font-weight: 500; letter-spacing: .04em;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.22); color: #fff; }

/* ─── MARQUEE STRIP ───────────────────────────────────── */
.marquee-strip {
  overflow: hidden;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 16px 0; background: var(--surface);
}
.marquee-track { display: flex; width: max-content; animation: marquee-scroll 32s linear infinite; }
.marquee-item {
  display: flex; align-items: center; gap: 14px;
  padding: 0 38px; font-size: .7rem; font-weight: 500;
  letter-spacing: .17em; text-transform: uppercase; color: var(--dim); white-space: nowrap;
}
.marquee-item::before { content: '✦'; color: var(--gold); font-size: .58rem; }
@keyframes marquee-scroll { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* ─── STATS ───────────────────────────────────────────── */
.stats-section {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stat-item {
  background: var(--bg);
  padding: 60px 40px;
  display: flex; flex-direction: column; gap: 10px;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4.5vw, 5.2rem);
  font-weight: 300; color: var(--gold); line-height: 1; letter-spacing: -.02em;
}
.stat-suffix { font-size: .55em; vertical-align: super; margin-left: 2px; color: rgba(200,169,106,.55); }
.stat-label { font-size: .7rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--dim); }
.stat-item .count { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem, 4.5vw, 5.2rem); font-weight: 300; color: var(--gold); line-height: 1; letter-spacing: -.02em; }

/* ─── FEATURE / WHY IT WORKS ──────────────────────────── */
.feature-pin-wrap { position: relative; height: 280vh; }
.feature-pin {
  position: sticky; top: 0; height: 100vh;
  display: flex; align-items: center; overflow: hidden; padding: 0 7vw;
}
.feature-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20vw; font-weight: 300; color: transparent;
  -webkit-text-stroke: 1px rgba(200,169,106,.045);
  white-space: nowrap; pointer-events: none; user-select: none; z-index: 0;
}
.feature-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; width: 100%;
}
.feature-left .eyebrow { margin-bottom: 24px; }
.feature-left h2 { margin-bottom: 32px; }
.feature-checklist { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.feature-checklist li {
  display: flex; align-items: flex-start; gap: 14px;
  color: var(--muted); font-size: .88rem; line-height: 1.55;
  opacity: 0; transform: translateX(-18px);
  transition: opacity .5s, transform .5s;
}
.feature-checklist li.visible { opacity: 1; transform: translateX(0); }
.feature-checklist li::before {
  content: ''; flex-shrink: 0; width: 15px; height: 15px; border-radius: 50%;
  border: 1px solid rgba(200,169,106,.4);
  background: radial-gradient(circle, rgba(200,169,106,.14), transparent);
  margin-top: 2px;
}

/* Field visual */
.feature-right {
  height: 540px; border-radius: 28px; position: relative;
  overflow: hidden; border: 1px solid var(--line);
}
.field-layers { position: absolute; inset: 0; }
.fl1 { position: absolute; top: 0; left: 0; right: 0; height: 33%; background: linear-gradient(180deg, #0a1405, #142008); }
.fl2 { position: absolute; top: 33%; left: 0; right: 0; height: 33%; background: linear-gradient(180deg, #142008, #1e3010); }
.fl3 { position: absolute; top: 66%; left: 0; right: 0; height: 34%; background: linear-gradient(180deg, #1e3010, #253d12); }
.crop-rows {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent 0, transparent 18px, rgba(255,255,255,.028) 18px, rgba(255,255,255,.028) 20px);
}
.drone-path {
  position: absolute; left: -10%; width: 120%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; animation: drone-sweep 4.5s ease-in-out infinite 0.8s;
}
@keyframes drone-sweep {
  0% { top:18%; opacity:0; } 8% { opacity:.7; } 92% { opacity:.7; } 100% { top:84%; opacity:0; }
}
.field-glow {
  position: absolute; top: 35%; left: 50%;
  transform: translate(-50%,-50%);
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,106,.14), transparent 70%);
  animation: field-pulse 3.2s ease-in-out infinite;
}
@keyframes field-pulse {
  0%,100% { transform:translate(-50%,-50%) scale(1); opacity:.6; }
  50% { transform:translate(-50%,-50%) scale(1.3); opacity:1; }
}
.field-overlay-text {
  position: absolute; bottom: 22px; left: 22px;
  font-size: .66rem; letter-spacing: .13em; text-transform: uppercase;
  color: rgba(200,169,106,.45);
}

/* ─── ADVANTAGES ──────────────────────────────────────── */
.advantages-section {
  padding: 150px 7vw;
  background: var(--surface); border-top: 1px solid var(--line);
}
.advantages-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: end; margin-bottom: 70px;
}
.advantages-header p { max-width: 460px; }
.adv-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: 24px; overflow: hidden;
}
.adv-card {
  background: var(--surface); padding: 40px 32px;
  display: flex; flex-direction: column; gap: 16px;
  transition: background .3s;
}
.adv-card:hover { background: rgba(200,169,106,.03); }
.adv-icon {
  width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid rgba(200,169,106,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.adv-card h3 { font-size: .92rem; font-weight: 600; color: var(--text); letter-spacing: .01em; }
.adv-card p { font-size: .84rem; line-height: 1.65; }

/* ─── SERVICES ────────────────────────────────────────── */
.services-section { padding: 150px 0; border-top: 1px solid var(--line); overflow: hidden; }
.services-header {
  padding: 0 7vw; margin-bottom: 64px;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.services-header p { max-width: 340px; text-align: right; }
.services-track {
  display: flex; gap: 18px; padding: 0 7vw;
  overflow-x: auto; scrollbar-width: none; cursor: grab;
}
.services-track::-webkit-scrollbar { display: none; }
.services-track.dragging { cursor: grabbing; }
.service-card {
  flex: 0 0 320px; height: 460px; border-radius: 22px;
  border: 1px solid var(--line); overflow: hidden; position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px; transition: border-color .3s;
}
.service-card:hover { border-color: rgba(200,169,106,.28); }
.service-card-bg {
  position: absolute; inset: 0; z-index: 0;
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
}
.service-card:hover .service-card-bg { transform: scale(1.04); }
.sc-maize  .service-card-bg { background: linear-gradient(155deg, #0d1a03 0%, #1e3a08 45%, #2d5210 100%); }
.sc-spread .service-card-bg { background: linear-gradient(155deg, #18120a 0%, #3a2a12 45%, #5a4020 100%); }
.sc-trees  .service-card-bg { background: linear-gradient(155deg, #051505 0%, #0e2e0e 45%, #1a4018 100%); }
.sc-water  .service-card-bg { background: linear-gradient(155deg, #030f18 0%, #0a2535 45%, #103550 100%); }
.sc-fence  .service-card-bg { background: linear-gradient(155deg, #120f05 0%, #2a2010 45%, #3d300a 100%); }
.sc-spot   .service-card-bg { background: linear-gradient(155deg, #150807 0%, #2e1210 45%, #451815 100%); }
.sc-pasture .service-card-bg { background: linear-gradient(155deg, #0a1408 0%, #182e10 45%, #24421a 100%); }
.sc-preburn .service-card-bg { background: linear-gradient(155deg, #1a1005 0%, #3a2510 45%, #503515 100%); }
.service-card-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 22px 22px;
}
.service-card::after {
  content: '';
  position: absolute; bottom:0; left:0; right:0; height:60%;
  background: linear-gradient(0deg, rgba(0,0,0,.85), transparent);
  z-index: 1; pointer-events: none;
}
.service-card-content { position: relative; z-index: 2; }
.service-card-tag {
  display: inline-block; padding: 4px 11px; border-radius: 999px;
  border: 1px solid rgba(200,169,106,.3); background: rgba(200,169,106,.1);
  color: var(--gold); font-size: .62rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px;
}
.service-card h3 { font-size: 1.15rem; color: #fff; margin-bottom: 8px; font-weight: 500; }
.service-card p { font-size: .8rem; line-height: 1.58; color: rgba(255,255,255,.48); }

/* ─── COMPARISON ──────────────────────────────────────── */
.comparison-section {
  padding: 150px 7vw;
  background: var(--surface); border-top: 1px solid var(--line);
}
.comparison-table {
  width: 100%; border: 1px solid var(--line);
  border-radius: 22px; overflow: hidden; margin-top: 60px;
}
.cmp-header, .cmp-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
}
.cmp-header { background: rgba(200,169,106,.05); border-bottom: 1px solid var(--line); }
.cmp-cell {
  padding: 18px 26px; border-right: 1px solid var(--line);
  font-size: .76rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--dim);
}
.cmp-cell:last-child { border-right: none; }
.cmp-cell.gold-col { color: var(--gold); }
.cmp-row { border-bottom: 1px solid var(--line); transition: background .2s; }
.cmp-row:last-child { border-bottom: none; }
.cmp-row:hover { background: rgba(255,255,255,.018); }
.cmp-row .cmp-cell { font-size: .86rem; font-weight: 400; color: var(--muted); text-transform: none; letter-spacing: 0; }
.cmp-row .cmp-cell.feature { color: var(--text); font-weight: 500; }
.check { color: var(--gold); font-size: 1.1rem; }
.cross { color: var(--dim); font-size: 1.1rem; }
.partial { color: rgba(200,169,106,.45); font-size: .78rem; }

/* ─── PRICING ─────────────────────────────────────────── */
.pricing-section { padding: 150px 7vw; border-top: 1px solid var(--line); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 70px; }
.price-card {
  border-radius: 22px; border: 1px solid var(--line);
  padding: 42px 34px; display: flex; flex-direction: column; gap: 26px;
  transition: border-color .3s, background .3s; position: relative; overflow: hidden;
}
.price-card::before {
  content: ''; position: absolute; top:0; left:0; right:0;
  height: 2px; background: transparent; transition: background .3s;
}
.price-card.featured { border-color: rgba(200,169,106,.35); background: rgba(200,169,106,.035); }
.price-card.featured::before { background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.price-card:hover { border-color: rgba(200,169,106,.22); }
.price-tag-label {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  background: rgba(200,169,106,.14); color: var(--gold);
  font-size: .62rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
}
.price-card h3 { font-size: 1.05rem; color: var(--text); font-family: 'DM Sans', sans-serif; margin-bottom: 4px; }
.price-card .price-desc { font-size: .8rem; color: var(--dim); }
.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 300; color: var(--text); line-height: 1;
}
.price-amount span { font-size: .9rem; color: var(--muted); vertical-align: super; margin-right: 4px; }
.price-amount small { font-size: .88rem; color: var(--muted); }
.price-divider { height: 1px; background: var(--line); }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.price-features li { font-size: .82rem; color: var(--muted); display: flex; align-items: center; gap: 10px; }
.price-features li::before { content: '—'; color: var(--gold); flex-shrink: 0; }
.price-cta {
  display: block; text-align: center; padding: 13px;
  border-radius: 12px; border: 1px solid rgba(200,169,106,.28);
  color: var(--gold); font-size: .82rem; font-weight: 600; letter-spacing: .06em;
  transition: background .2s, color .2s; margin-top: auto;
}
.price-cta:hover { background: var(--gold); color: #0a0a0c; }
.price-card.featured .price-cta { background: var(--gold); color: #0a0a0c; border-color: transparent; }
.price-card.featured .price-cta:hover { opacity: .88; }
.pricing-note { text-align: center; margin-top: 40px; font-size: .78rem; color: var(--dim); line-height: 1.8; }

/* ─── QUOTE FORM ──────────────────────────────────────── */
.quote-section {
  padding: 150px 7vw;
  background: var(--surface); border-top: 1px solid var(--line);
}
.quote-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.quote-left h2 { margin-bottom: 22px; }
.quote-left p { margin-bottom: 38px; }
.quote-detail { display: flex; flex-direction: column; gap: 12px; }
.qd-item { display: flex; align-items: center; gap: 12px; font-size: .8rem; color: var(--dim); }
.qd-icon { color: var(--gold); }
.quote-form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,.03); border: 1px solid var(--line);
  border-radius: 13px; color: var(--text);
  font: 300 .87rem/1 'DM Sans', sans-serif;
  outline: none; transition: border-color .25s, background .25s;
  -webkit-appearance: none;
}
.quote-form input::placeholder, .quote-form textarea::placeholder { color: var(--dim); }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  border-color: rgba(200,169,106,.5); background: rgba(200,169,106,.025);
}
.quote-form select option { background: #0c0c10; color: #fff; }
.quote-form textarea { min-height: 124px; resize: vertical; }
.form-submit { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
#aaa-submit {
  flex: 1; padding: 15px 28px;
  background: var(--gold); color: #0a0a0c;
  border: none; border-radius: 13px;
  font: 700 .87rem/1 'DM Sans', sans-serif;
  letter-spacing: .06em; cursor: pointer;
  transition: opacity .2s, transform .2s;
}
#aaa-submit:hover { opacity: .88; transform: translateY(-1px); }
#aaa-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.form-note { font-size: .7rem; color: var(--dim); line-height: 1.55; }
.form-status {
  display: none; padding: 13px 16px; border-radius: 12px;
  font-size: .84rem; font-weight: 500;
}
.form-status.success { background: rgba(100,200,100,.09); color: #7ecf7e; border: 1px solid rgba(100,200,100,.22); }
.form-status.error   { background: rgba(200,100,100,.09); color: #cf7e7e; border: 1px solid rgba(200,100,100,.22); }

/* ─── FOOTER ──────────────────────────────────────────── */
.site-footer { padding: 60px 7vw 40px; border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px; margin-bottom: 56px; }
.footer-brand {
  font-family: 'DM Sans', sans-serif; font-weight: 600;
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; display: block;
}
.footer-tagline { font-size: .84rem; color: var(--dim); line-height: 1.7; max-width: 270px; }
.footer-col h4 { font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--dim); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .84rem; color: rgba(255,255,255,.38); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 26px; border-top: 1px solid var(--line);
  font-size: .73rem; color: var(--dim);
}
.footer-bottom a { color: var(--gold); }

/* ─── WordPress Core ──────────────────────────────────── */
.wp-block-image img, .wp-block-cover img { max-width: 100%; height: auto; }
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin-right: 20px; }
.alignright { float: right; margin-left: 20px; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; width: 1px; overflow: hidden; position: absolute; }

/* ─── Reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s cubic-bezier(.2,.8,.2,1), transform .75s cubic-bezier(.2,.8,.2,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width:1100px) {
  .stats-section { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns:1fr; max-width:460px; margin-inline:auto; }
  .quote-inner { grid-template-columns:1fr; gap:56px; }
  .footer-top { grid-template-columns:1fr 1fr; }
}
@media (max-width:900px) {
  .feature-content { grid-template-columns:1fr; }
  .feature-right { height:340px; }
  .feature-pin-wrap { height: auto; }
  .feature-pin { position: relative; height: auto; padding: 100px 7vw; }
  .advantages-header { grid-template-columns:1fr; }
  .adv-grid { grid-template-columns:1fr 1fr; }
  .hero-drone-wrap { display:none; }
  .site-header nav { display:none; }
  .site-header nav.open {
    display:flex; flex-direction:column; position:absolute;
    top:calc(100% + 10px); right:0; background:rgba(6,6,8,.98);
    border:1px solid var(--line); border-radius:18px;
    padding:18px 24px; gap:16px; min-width:210px;
  }
  .site-header nav.open a { margin-left:0; }
  .menu-toggle { display:block; }
  .services-header { flex-direction:column; gap:20px; align-items:flex-start; }
  .services-header p { text-align:left; }
}
@media (max-width:600px) {
  .stats-section { grid-template-columns:1fr 1fr; }
  .stat-item { padding:36px 22px; }
  .adv-grid { grid-template-columns:1fr; }
  .service-card { flex:0 0 270px; height:400px; }
  .form-row { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr; gap:36px; }
  .footer-bottom { flex-direction:column; gap:10px; text-align:center; }
  .cmp-header, .cmp-row { grid-template-columns: 1.5fr 1fr 1fr; }
  .cmp-cell { padding:14px 14px; font-size:.7rem; }
}
