:root {
  --gold:       #cba052;
  --gold-light: #dfc08a;
  --gold-pale:  #f5ead6;
  --gold-deep:  #a8813a;
  --brown:      #6f4a2a;
  --brown-dark: #4e3019;
  --brown-mid:  #9a6b45;
  --bg:         #ffffff;
  --bg2:        #faf8f4;
  --bg3:        #f2ece0;
  --border:     rgba(111,74,42,0.12);
  --border2:    rgba(111,74,42,0.22);
  --text:       #1e140a;
  --muted:      #7a6050;
  --radius:     14px;
  --radius-sm:  8px;
}

.drones-page { font-family: 'Switzer', sans-serif; }
.drones-page * { box-sizing: border-box; }

.hero {
  background: var(--brown-dark);
  position: relative;
  overflow: hidden;
  padding: 90px 48px 80px;
  text-align: center;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(203,160,82,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(203,160,82,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.badge-partner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(203,160,82,0.15);
  border: 1px solid rgba(203,160,82,0.35);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 30px;
  position: relative;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: drone-pulse 2s infinite;
}
@keyframes drone-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(1.5); }
}
.hero h1 {
  font-family: 'Switzer', sans-serif;
  font-size: clamp(34px, 5.5vw, 66px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #ffffff;
  max-width: 820px;
  margin: 0 auto 22px;
  position: relative;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero > p {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 580px;
  margin: 0 auto 52px;
  line-height: 1.75;
  font-weight: 300;
  position: relative;
}
.partner-strip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(203,160,82,0.3);
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}
.partner-pill {
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,0.05);
}
.partner-x {
  padding: 12px 16px;
  color: var(--gold);
  font-size: 18px;
  font-weight: 300;
  border-left: 1px solid rgba(203,160,82,0.3);
  border-right: 1px solid rgba(203,160,82,0.3);
}

.drones-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.section-title {
  font-family: 'Switzer', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--brown-dark);
  margin-bottom: 12px;
}
.section-sub {
  font-size: 15.5px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 52px;
  font-weight: 400;
}
.drones-divider { border: none; border-top: 1px solid var(--border); margin: 0; }

.drones-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .drones-grid { grid-template-columns: 1fr; } }
.drone-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.drone-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(203,160,82,0.14);
  transform: translateY(-3px);
}
.drone-img-wrap {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 32px 28px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 195px;
}
.drone-img-wrap img {
  max-width: 100%;
  max-height: 155px;
  object-fit: contain;
  transition: transform 0.3s;
  filter: drop-shadow(0 4px 16px rgba(111,74,42,0.18));
}
.drone-card:hover .drone-img-wrap img { transform: scale(1.05); }
.drone-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.drone-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 6px;
}
.drone-name {
  font-family: 'Switzer', sans-serif;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brown-dark);
  margin-bottom: 10px;
  line-height: 1.2;
  min-height: 54px;
}
.drone-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
  min-height: 120px;
}
.specs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 18px;
  min-height: 54px;
  align-content: flex-start;
}
.spec-pill {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--border2);
  color: var(--brown-mid);
  background: var(--bg3);
}
.acc-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.acc-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  flex: 1;
}
.acc-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  cursor: pointer;
}
.acc-item input[type=checkbox] {
  accent-color: var(--gold);
  width: 15px; height: 15px;
  cursor: pointer;
  flex-shrink: 0;
}
.acc-item.has-qty { flex-wrap: wrap; }
.acc-item .acc-label { flex: 1; cursor: pointer; color: var(--text); user-select: none; }
.acc-price { font-size: 12px; color: var(--muted); white-space: nowrap; }
.qty-wrap { display: flex; align-items: center; gap: 6px; margin-left: 24px; margin-top: 4px; flex-basis: 100%; }
.qty-wrap span { font-size: 11.5px; color: var(--muted); white-space: nowrap; }
.qty-select { background: var(--bg); border: 1px solid var(--border2); border-radius: 6px; padding: 3px 8px; font-family: 'Switzer', sans-serif; font-size: 13px; color: var(--text); cursor: pointer; outline: none; transition: border-color 0.2s; }
.qty-select:focus { border-color: var(--gold); }
.qty-select:disabled { opacity: 0.4; cursor: not-allowed; }

.pricing-block {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 16px;
}
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}
.pricing-row:last-child { margin-bottom: 0; }
.pricing-row span:last-child { color: var(--text); font-weight: 600; }
.pricing-monthly {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid var(--border);
}
.pricing-monthly-label { font-size: 13px; color: var(--muted); }
.pricing-monthly-val {
  font-family: 'Switzer', sans-serif;
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brown);
}
.pricing-monthly-val span { font-size: 13px; font-weight: 400; color: var(--muted); }
.price-with-btw { display: inline-flex; align-items: baseline; gap: 5px; }
.price-suffix { font-size: 14px; font-weight: 400; color: var(--muted); display: inline-flex; align-items: baseline; gap: 4px; }
.btw-note { font-size: 10px; font-weight: 400; color: var(--muted); letter-spacing: 0.04em; opacity: 0.75; white-space: nowrap; vertical-align: baseline; }
.excl-btw { font-size: 10px; color: var(--muted); text-align: right; margin-top: 3px; letter-spacing: 0.05em; text-transform: uppercase; opacity: 0.7; }

.drone-body .btn-order {
  width: 100%;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 13px;
  font-family: 'Switzer', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-transform: uppercase;
  box-sizing: border-box;
}
.drone-body .btn-order:hover { background: var(--gold-deep); transform: translateY(-1px); }
.drone-body .btn-order:active { transform: scale(0.98); }
.drone-body .card-footnote { font-size: 11px; color: var(--muted); line-height: 1.5; padding-top: 10px; margin-top: 10px; border-top: 1px solid var(--border); opacity: 0.8; }
.drone-body .card-footnote sup { color: var(--gold-deep); font-weight: 700; }

.details-section {
  background: var(--bg2);
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.details-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.drone-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.detail-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color 0.2s;
}
.detail-card:hover { border-color: var(--gold-light); }
.detail-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.detail-icon {
  width: 42px; height: 42px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.detail-card h3 {
  font-family: 'Switzer', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--brown-dark);
  letter-spacing: -0.01em;
}
.detail-card ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.detail-card ul li {
  font-size: 13.5px;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.55;
}
.detail-card ul li::before {
  content: '›';
  position: absolute; left: 0;
  color: var(--gold);
  font-weight: 700;
}

.benefits-section { padding: 80px 0; }
.benefits-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 16px !important;
}
@media (max-width: 1100px) { .benefits-grid { grid-template-columns: repeat(3, 1fr) !important; } }
@media (max-width: 640px) { .benefits-grid { grid-template-columns: repeat(2, 1fr) !important; } }
.benefit-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px !important;
  background: var(--bg);
  transition: border-color 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.2s;
}
.benefit-card:hover { border-color: var(--gold-light); background: var(--bg2); }
.benefit-card:hover::before { opacity: 1; }
.benefit-num {
  font-size: 26px !important;
  font-weight: 800;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.benefit-card h4 {
  font-size: 13.5px !important;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.benefit-card p { font-size: 12px !important; color: var(--muted); line-height: 1.65; }

.cta-strip {
  background: var(--brown-dark);
  padding: 70px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(203,160,82,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(203,160,82,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.cta-strip h2 {
  font-family: 'Switzer', sans-serif;
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.025em;
  position: relative;
}
.cta-strip > p {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 30px;
  position: relative;
}
.btn-cta {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 40px;
  font-family: 'Switzer', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
}
.btn-cta:hover { background: var(--gold-deep); }

.drones-footnote {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  padding: 28px 40px;
  line-height: 1.7;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  opacity: 0.8;
}

.drone-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30,20,10,0.55);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.drone-modal-overlay.open { display: flex; }
.drone-modal {
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  max-width: 460px;
  width: 100%;
  padding: 36px;
  box-shadow: 0 24px 60px rgba(111,74,42,0.18);
}
.drone-modal-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 6px;
}
.drone-modal h3 {
  font-family: 'Switzer', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brown-dark);
}
.drone-modal-close {
  background: none; border: none;
  font-size: 22px; color: var(--muted);
  cursor: pointer; line-height: 1; padding: 0 0 0 10px;
}
.drone-modal-close:hover { color: var(--text); }
.drone-modal > p { font-size: 13.5px; color: var(--muted); margin-bottom: 18px; line-height: 1.6; }
.drone-modal-info {
  background: var(--bg3);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  margin-bottom: 18px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  border: 1px solid var(--border);
}
.drone-modal-info strong { color: var(--brown-dark); }
.drone-modal-fields { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.drone-modal-fields input {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  padding: 11px 15px;
  color: var(--text);
  font-family: 'Switzer', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.drone-modal-fields input:focus { border-color: var(--gold); background: var(--bg); }
.drone-modal-fields input.drone-field-error { border-color: #e53e3e; background: #fff5f5; }
.drone-modal-fields input.drone-field-error:focus { border-color: #e53e3e; }
.drone-modal-actions { display: flex; gap: 10px; }
.drone-modal-cancel {
  flex: 1;
  background: transparent;
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  padding: 12px;
  color: var(--muted);
  font-family: 'Switzer', sans-serif;
  font-size: 13.5px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.drone-modal-cancel:hover { border-color: var(--brown-mid); color: var(--text); }
.drone-modal-submit {
  flex: 2;
  background: var(--gold);
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px;
  color: #fff;
  font-family: 'Switzer', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.drone-modal-submit:hover { background: var(--gold-deep); }
.drone-modal-submit:disabled { opacity: 0.6; cursor: not-allowed; }

@media (max-width: 640px) {
  .hero { padding: 64px 20px 56px; }
  .drones-section { padding: 56px 20px; }
  .details-inner, .benefits-inner { padding: 0 20px; }
  .cta-strip { padding: 56px 24px; }
}
