/* ============================================
   PRICING PAGE — Specific Styles
   ============================================ */

/* ---------- HERO ---------- */
.pricing-hero {
  background: var(--midnight);
  color: var(--text-on-dark);
  padding: var(--space-9) 0 var(--space-8);
  position: relative;
  overflow: hidden;
}

.pricing-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(201, 169, 97, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.pricing-hero__inner {
  position: relative;
  max-width: 720px;
}

.pricing-hero .h1 {
  margin-bottom: var(--space-5);
}

.pricing-hero .h1 em {
  font-style: normal;
  color: var(--gold);
}

.pricing-hero .lead {
  font-size: var(--text-md);
  color: var(--text-on-dark-muted);
  max-width: 60ch;
}

.pricing-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border-dark);
}

.pricing-hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pricing-hero__meta-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-muted);
}

.pricing-hero__meta-value {
  font-size: var(--text-lg);
  color: var(--text-on-dark);
  font-weight: 500;
}

/* ---------- SECTION HEADER ---------- */
.sec-head {
  margin-bottom: var(--space-7);
  max-width: 640px;
}

.sec-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.sec-head .h2 {
  margin-bottom: var(--space-3);
}

/* ---------- TIER CARDS ---------- */
.tier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .tier-grid { grid-template-columns: repeat(4, 1fr); }
}

.tier {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: var(--space-6) var(--space-5);
  display: flex;
  flex-direction: column;
  transition: all var(--t-base);
  position: relative;
}

.tier:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -12px rgba(10, 31, 58, 0.12);
  border-color: var(--gold-muted);
}

.tier__label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-on-light-muted);
  margin-bottom: var(--space-2);
}

.tier__sqft {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--midnight);
  margin-bottom: var(--space-5);
  letter-spacing: -0.01em;
}

.tier__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--border-light);
}

.tier__price-currency {
  font-size: var(--text-xl);
  color: var(--text-on-light-muted);
  font-weight: 400;
}

.tier__price-amount {
  font-size: var(--text-5xl);
  font-weight: 500;
  color: var(--midnight);
  line-height: 1;
  letter-spacing: -0.03em;
}

.tier__price-unit {
  font-size: var(--text-sm);
  color: var(--text-on-light-muted);
  margin-left: 2px;
}

.tier__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  flex-grow: 1;
}

.tier__features li {
  font-size: var(--text-sm);
  color: var(--text-on-light);
  line-height: 1.5;
  padding-left: var(--space-4);
  position: relative;
}

.tier__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.tier__cta {
  width: 100%;
}

/* Featured tier (Tier 4 — midnight) */
.tier--featured {
  background: var(--midnight);
  color: var(--text-on-dark);
  border-color: var(--midnight);
  position: relative;
}

.tier--featured:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 40px -12px rgba(10, 31, 58, 0.35);
}

.tier--featured .tier__label {
  color: var(--gold);
}

.tier--featured .tier__sqft {
  color: var(--text-on-dark);
}

.tier--featured .tier__price {
  border-bottom-color: var(--border-dark);
}

.tier--featured .tier__price-currency {
  color: var(--gold-muted);
}

.tier--featured .tier__price-amount {
  color: var(--gold);
}

.tier--featured .tier__price-unit {
  color: var(--gold-muted);
}

.tier--featured .tier__features li {
  color: var(--text-on-dark);
}

.tier--featured .tier__features li::before {
  background: var(--gold);
}

.tier__badge {
  position: absolute;
  top: -10px;
  right: var(--space-5);
  background: var(--gold);
  color: var(--midnight);
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 5px 10px;
  border-radius: 3px;
}

/* Custom quote card (5,000+ sqft) */
.tier--custom {
  background: var(--cream-warm);
  border-style: dashed;
  border-color: var(--gold-muted);
}

.tier--custom .tier__price-amount {
  font-size: var(--text-3xl);
  font-weight: 400;
}

/* ---------- INCLUDES STRIP ---------- */
.includes-strip {
  background: var(--cream-warm);
  border-radius: 8px;
  padding: var(--space-6);
  margin-top: var(--space-6);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 768px) {
  .includes-strip {
    grid-template-columns: 220px 1fr;
    gap: var(--space-6);
    align-items: center;
  }
}

.includes-strip__label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 500;
}

.includes-strip__label-title {
  font-size: var(--text-lg);
  color: var(--midnight);
  font-weight: 500;
  margin-top: var(--space-2);
  letter-spacing: -0.01em;
}

.includes-strip__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-3);
  list-style: none;
}

.includes-strip__items li {
  font-size: var(--text-sm);
  color: var(--text-on-light);
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
}

.includes-strip__items li svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  color: var(--gold);
  margin-top: 3px;
}

/* ---------- ADDON TABLE ---------- */
.addon-table {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
}

.addon-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-4);
  padding: var(--space-5);
  border-bottom: 1px solid var(--border-light);
  align-items: center;
  transition: background var(--t-fast);
}

.addon-row:last-child { border-bottom: none; }

.addon-row:hover {
  background: var(--cream-light);
}

.addon-row__main {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.addon-row__name {
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--midnight);
  letter-spacing: -0.005em;
}

.addon-row__desc {
  font-size: var(--text-sm);
  color: var(--text-on-light-muted);
  line-height: 1.5;
}

.addon-row__price {
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.addon-row__price-plus {
  color: var(--text-on-light-muted);
  font-weight: 400;
  margin-right: 2px;
}

/* ---------- VIDEO TIER CARDS (4 video tiers) ---------- */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

@media (min-width: 640px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .video-grid { grid-template-columns: repeat(4, 1fr); }
}

.video-tier {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: var(--space-5);
  transition: all var(--t-base);
}

.video-tier:hover {
  border-color: var(--gold-muted);
  transform: translateY(-2px);
}

.video-tier__sqft {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-on-light-muted);
  margin-bottom: var(--space-2);
}

.video-tier__price {
  font-size: var(--text-3xl);
  font-weight: 500;
  color: var(--midnight);
  letter-spacing: -0.02em;
  line-height: 1;
}

.video-tier__price-plus {
  font-size: var(--text-lg);
  color: var(--text-on-light-muted);
  font-weight: 400;
  margin-right: 1px;
}

/* ---------- STANDALONE SERVICES ---------- */
.standalone-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .standalone-grid { grid-template-columns: repeat(2, 1fr); }
}

.standalone {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: var(--space-6);
  transition: all var(--t-base);
}

.standalone:hover {
  border-color: var(--gold-muted);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -12px rgba(10, 31, 58, 0.08);
}

.standalone__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border-light);
}

.standalone__title {
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--midnight);
  letter-spacing: -0.01em;
}

.standalone__from {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-on-light-muted);
  margin-top: 2px;
}

.standalone__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--cream-warm);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.standalone__icon svg { width: 20px; height: 20px; }

.standalone__rows {
  display: flex;
  flex-direction: column;
}

.standalone__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--space-3) 0;
  border-bottom: 1px dashed var(--border-light);
}

.standalone__row:last-child { border-bottom: none; }

.standalone__row-label {
  font-size: var(--text-sm);
  color: var(--text-on-light);
}

.standalone__row-price {
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
}

/* ---------- TRAVEL FEES ---------- */
.travel {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  max-width: 720px;
}

@media (min-width: 640px) {
  .travel { grid-template-columns: repeat(3, 1fr); }
}

.travel__card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: var(--space-5);
  text-align: center;
}

.travel__card-region {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-on-light-muted);
  margin-bottom: var(--space-3);
}

.travel__card-fee {
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--midnight);
  letter-spacing: -0.01em;
}

.travel__card-fee--free {
  color: var(--gold);
  font-size: var(--text-lg);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.faq__item {
  border-bottom: 1px solid var(--border-light);
}

.faq__item:first-child {
  border-top: 1px solid var(--border-light);
}

.faq__q {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--midnight);
  letter-spacing: -0.005em;
  transition: color var(--t-fast);
}

.faq__q:hover { color: var(--gold); }

.faq__q-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: transform var(--t-base);
}

.faq__item.is-open .faq__q-icon {
  transform: rotate(45deg);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-base), padding var(--t-base);
}

.faq__item.is-open .faq__a {
  max-height: 500px;
  padding-bottom: var(--space-5);
}

.faq__a p {
  font-size: var(--text-md);
  line-height: 1.65;
  color: var(--text-on-light-muted);
  max-width: 64ch;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  background: var(--midnight);
  color: var(--text-on-dark);
  padding: var(--space-9) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.06) 0%, transparent 50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.final-cta__inner {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}

.final-cta .h2 {
  margin-bottom: var(--space-4);
}

.final-cta .lead {
  margin: 0 auto var(--space-6);
  color: var(--text-on-dark-muted);
}

.final-cta__buttons {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- PAYMENT NOTE ---------- */
.payment-note {
  background: var(--cream-warm);
  border-left: 3px solid var(--gold);
  padding: var(--space-5) var(--space-6);
  margin-top: var(--space-6);
  border-radius: 0 6px 6px 0;
  max-width: 720px;
}

.payment-note__title {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: var(--space-2);
}

.payment-note__text {
  font-size: var(--text-sm);
  color: var(--text-on-light);
  line-height: 1.6;
}

/* ---------- BOOKING/CHECKOUT TAGS ---------- */
.timing-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: var(--space-3);
  font-weight: 500;
}

.timing-tag::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gold);
}

/* ============================================
   v6 ADDITIONS — Hero citation, 3D stats, Teaser, Credentials
   ============================================ */

/* Hero citation under the lead */
.pricing-hero__citation {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  margin-top: var(--space-5);
  border-top: 1px solid rgba(184, 168, 124, 0.18);
  max-width: 56ch;
}

.pricing-hero__citation-line {
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.pricing-hero__citation p {
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--text-on-dark-muted);
  margin: 0;
  line-height: 1.5;
  letter-spacing: 0.005em;
}

.pricing-hero__citation p em {
  font-style: italic;
}

.pricing-hero__citation p strong {
  color: var(--text-on-dark);
  font-style: normal;
  font-weight: 500;
}

/* H1 em accent in gold */
.pricing-hero .h1 em {
  font-style: normal;
  color: var(--gold);
}

/* 3D Virtual Tour stats trio */
.three-d-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

@media (min-width: 768px) {
  .three-d-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.three-d-stat {
  background: var(--midnight);
  color: var(--text-on-dark);
  padding: var(--space-5) var(--space-5);
  border-radius: 8px;
}

.three-d-stat__number {
  font-size: var(--text-4xl);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}

.three-d-stat__label {
  font-size: var(--text-sm);
  color: var(--text-on-dark);
  margin-top: var(--space-2);
  line-height: 1.45;
}

.three-d-stat__source {
  font-size: var(--text-xs);
  color: var(--text-on-dark-muted);
  margin-top: var(--space-2);
  font-style: italic;
}

/* 3D Pricing two-column */
.three-d-pricing {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .three-d-pricing {
    grid-template-columns: repeat(2, 1fr);
  }
}

.three-d-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: var(--space-6);
}

.three-d-card__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: var(--space-3);
  font-weight: 500;
}

.three-d-card__tag--neutral {
  color: var(--text-on-light-muted);
}

.three-d-card__tag-line {
  width: 14px;
  height: 1px;
  background: var(--gold);
}

.three-d-card__tag-line--neutral {
  background: var(--text-on-light-muted);
}

.three-d-card__title {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--midnight);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-4);
}

.three-d-card__rows {
  display: flex;
  flex-direction: column;
}

.three-d-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--space-2) 0;
  border-bottom: 1px dashed var(--border-light);
  font-size: var(--text-sm);
  color: var(--text-on-light);
}

.three-d-card__row--last {
  border-bottom: none;
}

.three-d-card__price {
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
}

.three-d-card__price-plus {
  color: var(--text-on-light-muted);
  font-weight: 400;
  margin-right: 2px;
}

.three-d-card__note {
  font-size: var(--text-xs);
  color: var(--text-on-light-muted);
  margin-top: var(--space-3);
  line-height: 1.5;
}

/* 3D Includes strip */
.three-d-includes {
  background: var(--white);
  border-left: 3px solid var(--gold);
  padding: var(--space-5) var(--space-6);
  margin-top: var(--space-5);
  border-radius: 0 6px 6px 0;
}

.three-d-includes__title {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: var(--space-3);
}

.three-d-includes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-3);
}

.three-d-includes__grid > div {
  font-size: var(--text-sm);
  color: var(--text-on-light);
  display: flex;
  gap: var(--space-2);
}

.three-d-includes__grid > div span {
  color: var(--gold);
}

/* Why Visual Production teaser block */
.why-teaser {
  background: var(--midnight);
  color: var(--text-on-dark);
  padding: var(--space-8) 0;
}

.why-teaser__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: center;
}

@media (min-width: 768px) {
  .why-teaser__inner {
    grid-template-columns: 1fr auto;
    gap: var(--space-7);
  }
}

.why-teaser__eyebrow {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--text-on-dark-muted);
  text-transform: uppercase;
  margin-bottom: var(--space-3);
  display: block;
}

.why-teaser__h3 {
  font-size: var(--text-2xl);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 var(--space-2);
  color: var(--text-on-dark);
}

.why-teaser__lead {
  font-size: var(--text-md);
  line-height: 1.6;
  color: var(--text-on-dark-muted);
  margin: 0;
  max-width: 56ch;
}

.why-teaser__cta {
  white-space: nowrap;
}

.why-teaser__cta span {
  font-size: var(--text-md);
}

/* Drone standalone — 3-card grid (Photos, Video, Bundle) */
.drone-standalone {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .drone-standalone {
    grid-template-columns: repeat(3, 1fr);
  }
}

.drone-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.drone-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 31, 58, 0.06);
}

.drone-card--featured {
  background: var(--midnight);
  border-color: var(--midnight);
  color: var(--text-on-dark);
}

.drone-card__badge {
  position: absolute;
  top: -10px;
  left: var(--space-5);
  background: var(--gold);
  color: var(--midnight);
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 100px;
}

.drone-card__label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-on-light-muted);
  font-weight: 500;
  margin-bottom: var(--space-3);
}

.drone-card--featured .drone-card__label {
  color: var(--gold);
}

.drone-card__price-row {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.drone-card__price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-size: var(--text-4xl);
  font-weight: 500;
  color: var(--midnight);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: var(--space-4);
}

.drone-card__price-row .drone-card__price {
  margin-bottom: 0;
}

.drone-card--featured .drone-card__price {
  color: var(--gold);
}

.drone-card__currency {
  font-size: var(--text-md);
  color: var(--text-on-light-muted);
  font-weight: 400;
}

.drone-card--featured .drone-card__currency {
  color: var(--gold-muted);
}

.drone-card__save {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 500;
  padding: 4px 10px;
  background: rgba(201, 169, 97, 0.15);
  border-radius: 100px;
}

.drone-card__desc {
  font-size: var(--text-base);
  color: var(--text-on-light-muted);
  line-height: 1.6;
  margin: 0 0 var(--space-4);
}

.drone-card--featured .drone-card__desc {
  color: var(--text-on-dark-muted);
}

.drone-card__includes {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-light);
}

.drone-card--featured .drone-card__includes {
  border-top-color: rgba(184, 168, 124, 0.18);
}

.drone-card__includes li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: var(--text-sm);
  color: var(--text-on-light);
  line-height: 1.5;
}

.drone-card--featured .drone-card__includes li {
  color: var(--text-on-dark);
}

.drone-card__includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 1px;
  background: var(--gold);
}

/* Service area card */
.service-area-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: var(--space-6);
}

.service-area-card__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5) var(--space-6);
}

@media (min-width: 640px) {
  .service-area-card__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-area-card__region {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: var(--space-3);
  font-weight: 500;
}

.service-area-card__city {
  font-size: var(--text-sm);
  color: var(--text-on-light);
  line-height: 1.8;
}

.service-area-card__payment {
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

@media (min-width: 640px) {
  .service-area-card__payment {
    grid-template-columns: 180px 1fr;
    gap: var(--space-5);
  }
}

.service-area-card__payment-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 500;
}

.service-area-card__payment p {
  font-size: var(--text-sm);
  color: var(--text-on-light);
  line-height: 1.6;
  margin: 0;
}

/* Credentials strip */
.credentials-strip {
  background: var(--cream-light);
  padding: var(--space-6) 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.credentials-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  max-width: 720px;
  margin: 0 auto;
}

.credentials-strip__item {
  text-align: center;
}

.credentials-strip__number {
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--midnight);
  letter-spacing: -0.02em;
  line-height: 1;
}

.credentials-strip__label {
  font-size: var(--text-xs);
  color: var(--text-on-light-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: var(--space-2);
}

/* Sources note at bottom of FAQ */
.sources-note {
  max-width: 760px;
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border-light);
}

.sources-note__title {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--text-on-light-muted);
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.sources-note p {
  font-size: var(--text-sm);
  color: var(--text-on-light-muted);
  line-height: 1.6;
  margin: 0;
}

.sources-note a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast);
}

.sources-note a:hover {
  border-bottom-color: var(--gold);
}

/* ---------- VIDEO PRODUCTION CARD (1 card + internal table) ---------- */
.video-production-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: var(--space-6);
  overflow: hidden;
}

.video-production-card__products {
  display: flex;
  flex-direction: column;
}

/* Header row (desktop only) */
.video-product-row--header {
  display: none;
}

@media (min-width: 768px) {
  .video-product-row--header {
    display: grid;
    grid-template-columns: 1.2fr 2fr 1.3fr;
    gap: var(--space-4);
    padding: 0 0 var(--space-3);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: var(--space-3);
  }
  .video-product-row--header .video-product-row__col {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-on-light-muted);
    font-weight: 500;
  }
}

.video-product-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--border-light);
}

.video-product-row:last-child {
  border-bottom: none;
}

@media (min-width: 768px) {
  .video-product-row:not(.video-product-row--header) {
    grid-template-columns: 1.2fr 2fr 1.3fr;
    gap: var(--space-4);
    align-items: flex-start;
  }
}

.video-product-row__col--name {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.video-product-row__col--name strong {
  font-size: var(--text-md);
  color: var(--midnight);
  font-weight: 500;
}

.video-product-row__tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 500;
}

.video-product-row__col--desc {
  font-size: var(--text-sm);
  color: var(--text-on-light-muted);
  line-height: 1.6;
}

.video-product-row__col--price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

@media (min-width: 768px) {
  .video-product-row__col--price {
    align-items: flex-end;
    text-align: right;
  }
}

.video-product-row__price-tier {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-on-light-muted);
  font-weight: 500;
  display: inline-block;
}

.video-product-row__price-value {
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--gold);
  margin-right: var(--space-3);
  display: inline-block;
}

@media (min-width: 768px) {
  .video-product-row__price-value {
    margin-right: 0;
    display: block;
    margin-bottom: 6px;
  }
}

.video-product-row__price-flat {
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}

.video-product-row__price-strike {
  font-size: var(--text-xs);
  color: var(--text-on-light-muted);
  text-decoration: line-through;
  margin-top: 4px;
}

/* ============================================
   VIDEO PRODUCTION — Bundle group styling for 3D-style card
   ============================================ */

.video-bundle-group {
  margin-bottom: var(--space-4);
}

.video-bundle-group:last-of-type {
  margin-bottom: var(--space-3);
}

.video-bundle-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding-bottom: var(--space-2);
  margin-bottom: var(--space-2);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.three-d-card--neutral .video-bundle-label {
  color: var(--text-on-light-muted);
}

.video-bundle-sublabel {
  font-size: 10px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-on-light-muted);
  font-style: italic;
}

.video-row-tag {
  display: inline-block;
  font-size: 10px;
  color: var(--text-on-light-muted);
  font-weight: 400;
  margin-left: 4px;
  font-style: italic;
}
