/* ═══════════════════════════════════════════════════════════
   PAGES — Page-specific styles (homepage, about, contact, 404, policy)
   ═══════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────── */
/* ─── LAUNCH GATEWAY PAGE (/launch/)  ─── */
/* ─────────────────────────────────────── */
.launch-body,
.launch-body #page {
  margin: 0;
  padding: 0;
}

.launch-page {
  min-height: 100vh;
  min-height: 100svh;
  background: var(--sky-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 32px var(--page-padding-x);
  box-sizing: border-box;
}

/* Back link — top left */
.launch-back {
  position: absolute;
  top: 32px;
  left: var(--page-padding-x);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s;
}
.launch-back:hover { color: #fff; }

/* Logo — top center */
.launch-logo {
  margin-top: 0;
}
.launch-logo img,
.launch-logo svg {
  height: 45px;
  width: auto;
}
.launch-site-title {
  color: #fff;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
}

/* Main — vertically centered in remaining space */
.launch-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.launch-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  max-width: 600px;
}

/* Eyebrow tag */
.launch-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.88px;
  color: var(--signal-dark);
  background: var(--signal-pale);
  border: 0.8px solid var(--signal);
  border-radius: var(--radius-tag);
  padding: 6px 12px;
  display: inline-block;
}

/* Headline */
.launch-heading {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.05;
  margin: 0;
}
.launch-heading-accent {
  color: var(--sky-bright);
}

/* Sub-line */
.launch-subline {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: -0.5px;
  margin: 0;
}

/* Buttons row */
.launch-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.launch-btn-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0 32px;
  border-radius: 8px;
  background: #E9732B;
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.14px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.launch-btn-yes:hover { background: var(--signal-dark); color: #fff; }

.launch-btn-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0 32px;
  border-radius: 8px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.14px;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}
.launch-btn-no:hover {
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}

/* Reassurance line */
.launch-reassurance {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: -0.3px;
  margin: 0;
}
.launch-reassurance a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.launch-reassurance a:hover { color: #fff; }

/* Mobile */
@media (max-width: 767px) {
  .launch-page { padding: 24px 24px; }
  .launch-back { left: 24px; top: 24px; }
  .launch-heading { font-size: 32px; letter-spacing: -1px; }
  .launch-actions { flex-direction: column; width: 100%; }
  .launch-btn-yes,
  .launch-btn-no { width: 100%; }
}

/* ─────────────────────────────────────── */
/* ─── HOMEPAGE — Hero                 ─── */
/* ─────────────────────────────────────── */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--sky-deep); /* dark fallback if image doesn't load */
}

/* ─────────────────────────────────────── */
/* ─── SHARED TEMPLATE-PART HERO       ─── */
/* ─── Used by archive, about, etc.    ─── */
/* ─────────────────────────────────────── */
.hero-section.hero-template {
  display: flex;
  align-items: flex-end;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0B1F3A 14%, rgba(26,68,128,0.2) 69%);
}
.hero-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-padding-x) 64px;
}
.hero-container .hero-content {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: auto; /* override homepage hero-content width: 700px */
}
.hero-container .hero-title {
  font-size: 72px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
}
.hero-container .hero-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.hero-container .hero-cta {
  margin-top: 16px;
}
.hero-container .hero-buttons {
  margin-top: 8px;
}
.hero-container .trust-proof {
  margin-top: 24px;
}

@media (max-width: 1023px) {
  .hero-section.hero-template { height: 400px !important; }
  .hero-container { padding: 0 32px 40px; }
  .hero-container .hero-content { max-width: 100%; }
  .hero-container .hero-title { font-size: 48px; letter-spacing: -1px; }
}
@media (max-width: 767px) {
  .hero-section.hero-template { height: 320px !important; }
  .hero-container { padding: 0 20px 32px; }
  .hero-container .hero-title { font-size: 36px; letter-spacing: -1px; }
  .hero-container .hero-subtitle,
  .hero-container .hero-subtitle.lead { font-size: 15px; }
}
.hero-image-wrap {
  position: absolute;
  top: 0;
  left: -21px;
  width: calc(100% + 42px);
  height: 900px;
}
.hero-image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  object-fit: cover;
  display: block;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11,31,58,0.88) 0%, rgba(26,68,128,0.55) 30%, rgba(26,68,128,0) 65%);
}
.hero-wrapper {
  position: relative;
  height: 900px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-bottom: 64px;
}
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 760px;
  position: relative;
  z-index: 1;
}
.hero-h1 {
  font-size: 72px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
}
.hero-accent {
  color: var(--signal);
}
.hero-subtitle {
  font-size: 24px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

/* Trust proof */
.trust-proof {
  display: flex;
  align-items: center;
  gap: 24px;
}
.trust-proof-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.headshots-wrap {
  position: relative;
  width: 104px;
  height: 32px;
  flex-shrink: 0;
}
.headshot {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--horizon);
  overflow: hidden;
}
.headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.headshot:nth-child(1) { left: 0; }
.headshot:nth-child(2) { left: 24px; }
.headshot:nth-child(3) { left: 48px; }
.headshot:nth-child(4) { left: 72px; }
.people-trained {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}
.people-trained span {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}
.trust-proof .trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.6);
}
.hero-rating .rating-num { color: #fff; }
.proof-divider {
  width: 1px;
  height: 24px;
  background: rgba(11,31,58,0.6);
}

/* ─────────────────────────────────────── */
/* ─── HOMEPAGE — Trust Logos Grid     ─── */
/* ─────────────────────────────────────── */
/* NOTE TO AI: DO NOT DELETE this CSS block. It is kept for future use. */
/* ─── Trust logos — infinite marquee ──────────────────────── */
.trust-logos-section {
  padding: 14px 0 16px;
  background: var(--white);
  overflow: hidden;
}
.trust-logos-heading {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #8a94a6;
  letter-spacing: 1.5px;
  line-height: 1;
  margin: 0 0 12px;
}
.trust-logos-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.trust-logos-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.trust-logos-track:hover {
  animation-play-state: paused;
}
.trust-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  margin-right: 56px;
}
.trust-logo-item img {
  height: 100%;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.25s, opacity 0.25s;
}
.trust-logo-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .trust-logo-item {
    height: 24px;
  }
  .trust-logo-item img {
    max-width: 100px;
  }
}
@media (max-width: 480px) {
  .trust-logos-section {
    padding: 12px 0;
  }
  .trust-logos-heading {
    font-size: 10px;
    margin-bottom: 10px;
  }
  .trust-logo-item {
    height: 18px;
    margin-right: 40px;
  }
  .trust-logo-item img {
    max-width: 80px;
  }
  .trust-logos-track {
    animation-duration: 60s;
  }
}
@media (max-width: 390px) {
  .trust-logos-section {
    padding-bottom: 16px;
  }
  .hero-wrapper { padding-top: 40px; padding-bottom: 40px; }
  .hero-h1 { font-size: 32px; letter-spacing: -1px; }
}
@media (prefers-reduced-motion: reduce) {
  .trust-logos-track {
    animation: none;
  }
}

/* ─────────────────────────────────────── */
/* ─── HOMEPAGE — Licence Finder       ─── */
/* ─────────────────────────────────────── */
.finder-section {
  width: 100%;
  position: relative;
  background-color: #1A4480;
  background-image:
    linear-gradient(180deg, rgba(26,68,128,0) 14.02%, rgba(0,0,0,0.5) 100%),
    var(--finder-bg-image, none);
  background-size: cover;
  background-position: center;
  padding: 96px 0;
}
.finder-inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: flex-start;
  width: 100%;
}
.finder-heading-block {
  text-align: center;
  width: 100%;
  padding: 0 192px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.finder-title {
  font-size: 56px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
}
.finder-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.finder-columns {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}
.finder-cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.finder-card {
  background: #fff;
  border-radius: var(--radius-card-sm);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.finder-question {
  display: flex;
  gap: 12px;
  align-items: center;
}
.finder-q-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--sky-deep);
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.finder-options-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.finder-options {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.finder-hint {
  font-size: 14px;
  font-weight: 300;
  color: var(--slate);
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.finder-steps-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.finder-select {
  appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%236B7C93' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 16px center;
  border: 0.8px solid var(--horizon-dark);
  border-radius: var(--radius-input);
  padding: 16px 48px 16px 24px;
  width: 100%;
  font-size: 14px;
  font-weight: 300;
  color: var(--sky-deep);
  cursor: pointer;
}
.finder-select option {
  color: var(--sky-deep);
}
.finder-select:focus {
  border-color: var(--sky-bright);
  outline: none;
}
.finder-result-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.finder-result {
  background: #fff;
  border: 1px solid var(--horizon-dark);
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.finder-result-heading {
  font-size: 32px;
  font-weight: 500;
  color: var(--sky-deep);
  letter-spacing: -1px;
  line-height: 1;
}
.finder-cta {
  width: 100%;
  justify-content: center;
}

/* ─────────────────────────────────────── */
/* ─── HOMEPAGE — Products Section     ─── */
/* ─────────────────────────────────────── */
.products-section {
  background: var(--off-white);
  width: 100%;
}
.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 60px;
}
.products-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 600px;
  align-items: flex-start;
}
.section-h2 {
  font-size: 56px;
  font-weight: 600;
  color: var(--sky-deep);
  letter-spacing: -1px;
  line-height: 1;
}
.section-h2 .accent { color: var(--sky-bright); }
.product-cards {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
}
.product-cards .product-card {
  flex: 1;
  text-decoration: none;
}
.product-image-wrap {
  border-radius: var(--radius-card-sm);
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--off-white);
}
.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--sky-deep);
  letter-spacing: -1px;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-desc {
  font-size: 16px;
  font-weight: 400;
  color: rgba(11,31,58,0.6);
  letter-spacing: -0.5px;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Star rating */
.stars {
  display: flex;
  gap: 0;
}
.rating-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rating-num {
  font-size: 12px;
  color: rgba(11,31,58,0.6);
  white-space: nowrap;
}
.price-wrap {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  letter-spacing: -0.5px;
}

/* Add to Cart button on product cards */
.product-card-atc {
  margin-top: auto;
  align-self: flex-start;
}
.product-card-link-area {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}
.product-card-link-area:hover { color: inherit; }
.product-card-view {
  font-size: 15px;
  font-weight: 600;
  color: var(--sky-bright);
  letter-spacing: -0.3px;
  margin-top: auto;
}

/* ─────────────────────────────────────── */
/* ─── HOMEPAGE — Platform Section     ─── */
/* ─────────────────────────────────────── */
.platform-section {
  background: #fff;
  width: 100%;
}
.platform-section > .container {
  display: flex;
  gap: 48px;
  align-items: center;
  min-height: 640px;
  padding-top: 96px;
  padding-bottom: 96px;
}
.platform-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  width: 490px;
  flex-shrink: 0;
  justify-content: center;
}
.platform-content .eyebrow-tag {
  margin-bottom: 20px;
}
.platform-h2 {
  font-size: 56px;
  font-weight: 600;
  color: var(--sky-deep);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 24px;
}
.platform-body {
  font-size: 20px;
  font-weight: 400;
  color: rgba(11,31,58,0.8);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 24px;
}
.platform-link {
  font-size: 17px;
  font-weight: 500;
  color: var(--sky-bright);
  letter-spacing: -0.14px;
  text-decoration: none;
}
.platform-link:hover { text-decoration: underline; }
.platform-image {
  flex: 1;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 2px 25px -2px rgba(91,155,213,0.2);
}
.platform-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─────────────────────────────────────── */
/* ─── HOMEPAGE — Why Us Section       ─── */
/* ─────────────────────────────────────── */
.why-section {
  background: var(--off-white);
  width: 100%;
}
.why-wrapper {
  width: 100%;
  min-height: auto;
  overflow: visible;
  position: relative;
  background-color: #1A4480;
  background-image: linear-gradient(180deg, #1A4480 30.51%, #0B1F3A 102.86%);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 96px 0 64px;
}
.why-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  text-align: center;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 0 64px;
  position: relative;
  z-index: 3;
}
.why-h2 {
  font-size: 56px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
  width: 100%;
}
.why-h2 .accent-orange { color: var(--signal); }
.why-body {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  letter-spacing: -0.5px;
  line-height: 1.4;
  width: 100%;
  overflow-wrap: break-word;
}
/* Team photos — positioned below text content */
.why-team-images {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  padding: 0 64px;
}
.why-team-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.why-section .why-team-images .why-team-photo img {
  width: 200px;
  height: 240px;
  display: block;
  object-fit: cover;
  object-position: top;
}
.why-team-name {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.3px;
  margin: 0;
}
.why-wrapper .team-grid {
  width: 100%;
  max-width: 1200px;
  padding: 0 64px;
  margin-top: 48px;
  box-sizing: border-box;
}
.why-wrapper > .btn-secondary {
  margin-top: 48px;
}
/* Bottom gradient overlay — hidden now that drone is replaced by team photos */
.why-fade { display: none; }

/* ─────────────────────────────────────── */
/* ─── HOMEPAGE — Testimonials         ─── */
/* ─────────────────────────────────────── */
.testimonials-section {
  background: #fff;
  width: 100%;
  padding: 96px 0;
}
.testimonials-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  width: 100%;
  margin-bottom: 60px;
  /* eyebrow tag centered via align-items: center — keep this */
}
.testimonials-h2 {
  font-size: 56px;
  font-weight: 600;
  color: var(--sky-deep);
  letter-spacing: -1px;
  line-height: 1;
  text-align: center;
}
.testimonials-h2 .accent { color: var(--sky-bright); }
.testimonials-proof {
  display: flex;
  align-items: center;
  gap: 24px;
}
.testimonial-carousel {
  width: 100%;
  position: relative;
}
.testimonial-cards {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 24px;
  width: 100%;
  padding-bottom: 4px;
}
.testimonial-cards::-webkit-scrollbar { display: none; }
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--horizon-dark, #c8d1dc);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.testimonial-dot.active {
  background: var(--sky-bright, #0071e3);
  transform: scale(1.2);
}
.testimonial-card {
  background: #fff;
  border: 0.8px solid var(--horizon-dark);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  flex: 0 0 380px;
  max-width: 380px;
  scroll-snap-align: center;
}
@media (min-width: 1320px) {
  .testimonial-cards { justify-content: center; }
}
.testimonial-quote {
  font-size: 16px;
  font-weight: 400;
  color: rgba(11,31,58,0.8);
  line-height: 1.4;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 24px;
}
.author-headshot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--horizon);
  overflow: hidden;
  flex-shrink: 0;
}
.author-headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.author-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--sky-deep);
}
.author-title {
  font-size: 14px;
  font-weight: 300;
  color: rgba(11,31,58,0.6);
}

/* ─────────────────────────────────────── */
/* ─── HOMEPAGE — Blog Section         ─── */
/* ─────────────────────────────────────── */
.blog-section {
  background: #fff;
  width: 100%;
  padding-bottom: 64px;
}
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 60px;
}
.blog-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 600px;
  align-items: flex-start;
}
.blog-h2 {
  font-size: 56px;
  font-weight: 600;
  color: var(--sky-deep);
  letter-spacing: -1px;
  line-height: 1;
}
.blog-h2-centered {
  text-align: center;
  width: 100%;
  margin-bottom: 48px;
}
.blog-h2 .accent { color: var(--sky-bright); }
.blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}
.blog-cards-centered {
  margin-bottom: 40px;
}
.blog-cta-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}
.blog-card-placeholder {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}
.blog-placeholder-thumb {
  background: var(--horizon);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-coming-soon-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--slate);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.blog-placeholder-title {
  color: var(--slate) !important;
}
.blog-card {
  background: #fff;
  border: 0.8px solid var(--horizon-dark);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
}
.blog-card:hover {
  box-shadow: var(--shadow-card-hover);
}
.blog-image {
  height: 240px;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-copy-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
}
.blog-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--sky-deep);
  letter-spacing: -1px;
  line-height: 1;
}
.blog-excerpt {
  font-size: 16px;
  font-weight: 400;
  color: rgba(11,31,58,0.6);
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.blog-meta {
  border-top: 0.6px solid var(--horizon-dark);
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.66px;
}
.blog-date { color: rgba(11,31,58,0.6); }
.blog-read-more {
  color: var(--sky-bright);
  text-transform: uppercase;
}

/* ─────────────────────────────────────── */
/* ─── HOMEPAGE — FAQ Section          ─── */
/* ─────────────────────────────────────── */
.faq-section {
  background: var(--off-white);
  width: 100%;
}
.faq-title {
  font-size: 56px;
  font-weight: 600;
  color: var(--sky-deep);
  letter-spacing: -1px;
  line-height: 1;
  text-align: center;
  margin-bottom: 60px;
}
.faq-title .accent { color: var(--sky-bright); }
.faq-accordion {
  display: flex;
  justify-content: center;
}
.faq-list {
  width: 915px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* ─── No Posts (archive empty state) ─── */
.no-posts {
  text-align: center;
  padding: 64px 0;
  color: var(--slate);
  font-size: 18px;
}

/* ─────────────────────────────────────── */
/* ─── ABOUT PAGE                      ─── */
/* ─────────────────────────────────────── */

/* Our Story */
.our-story {
  background: #fff;
}
.our-story .container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.our-story-left {
  max-width: 800px;
  flex: 1 1 800px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.story-copy {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.story-title {
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1;
}
.story-title .dark { color: var(--sky-deep); }
.story-title .blue { color: var(--sky-bright); }
.story-body {
  font-size: 18px;
  color: rgba(11,31,58,0.85);
  letter-spacing: -0.3px;
  line-height: 1.6;
}
.story-quote {
  border-left: 2.667px solid var(--signal);
  padding-left: 24px;
}
.story-quote p {
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
  color: var(--sky-deep);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

/* Stats bar */
.stats-bar {
  border: 1px solid var(--horizon-dark);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
}
.stat {
  flex: 1;
  background: var(--off-white);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  border-right: 1px solid var(--horizon-dark);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-size: 32px;
  font-weight: 600;
  color: var(--sky-deep);
  letter-spacing: -1px;
  line-height: 1;
}
.stat-num .orange { color: var(--signal); }
.stat-label {
  font-size: 16px;
  font-weight: 300;
  color: var(--slate);
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.our-story-right {
  flex: 1;
  align-self: stretch;
  display: flex;
}
.story-img {
  background: var(--horizon);
  border-radius: var(--radius-card-sm);
  overflow: hidden;
  flex: 1;
}
.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Promise section */
.promise-section {
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 20.027%, rgba(0,0,0,0.35) 100%),
    linear-gradient(90deg, #1A4480 0%, #1A4480 100%);
}
.promise-section .container {
  display: flex;
  gap: 60px;
  align-items: center;
}
.promise-img { flex: 1; height: 590px; }
.promise-img-inner {
  background: var(--horizon);
  border-radius: var(--radius-card-sm);
  overflow: hidden;
  height: 100%;
}
.promise-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.promise-copy {
  max-width: 800px;
  flex: 1 1 800px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.promise-title {
  font-size: 56px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
}
.promise-title .orange { color: var(--signal); }
.promise-body {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.3px;
  line-height: 1.6;
}
.promise-body .orange { color: var(--signal); font-weight: 600; }

/* Promise pillars */
.promise-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.promise-pillar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255,255,255,0.08);
  border-left: 3px solid var(--signal);
  border-radius: 0 var(--radius-card-sm) var(--radius-card-sm) 0;
  padding: 20px 24px;
}
.pillar-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  color: var(--signal);
}
.pillar-label {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.promise-pillar p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
  margin: 0;
}
.promise-pillar .orange { color: var(--signal); font-weight: 600; }

/* Team section */
.team-section {
  background: #fff;
}
.team-section .container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.team-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.team-header-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.team-title {
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1;
}
.team-title .dark { color: var(--sky-deep); }
.team-title .blue { color: var(--sky-bright); }
.team-header-right {
  width: 450px;
  font-size: 20px;
  color: rgba(11,31,58,0.8);
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.team-card {
  background: #fff;
  border: 0.8px solid var(--horizon-dark);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.team-card-img {
  height: 325px;
  overflow: hidden;
}
.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0 !important;
}
.team-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
.team-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--sky-deep);
  letter-spacing: -1px;
  line-height: 1;
}
.team-role {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--sky-bright);
  letter-spacing: 0.66px;
  text-transform: uppercase;
  line-height: 1.2;
}
.team-desc {
  font-size: 16px;
  color: rgba(11,31,58,0.6);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

/* ─────────────────────────────────────── */
/* ─── CONTACT PAGE                    ─── */
/* ─────────────────────────────────────── */
.form-section {
  background: var(--off-white);
  padding: 96px 0;
  width: 100%;
}
.form-section > .container {
  display: block;
}
.form-content-row {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.form-wrapper {
  flex: 1;
  min-width: 0;
}
.form-title {
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 48px;
}
.form-title .dark { color: var(--sky-deep); }
.form-title .blue { color: var(--sky-bright); }
.form-card {
  background: #fff;
  border: 0.889px solid var(--horizon-dark);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}
.form-row {
  display: flex;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.form-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--sky-deep);
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.form-label .req { color: var(--signal); }
.form-label .opt { font-size: 12px; color: rgba(11,31,58,0.4); }
.form-input {
  background: #fff;
  border: 0.8px solid var(--horizon-dark);
  border-radius: var(--radius-input);
  padding: 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--sky-deep);
  width: 100%;
}
.form-input::placeholder { color: var(--slate); }
.form-input:focus {
  border-color: var(--sky-bright);
  outline: none;
}
.form-textarea {
  background: #fff;
  border: 0.8px solid var(--horizon-dark);
  border-radius: var(--radius-input);
  padding: 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--sky-deep);
  width: 100%;
  min-height: 120px;
  resize: vertical;
}
.form-textarea::placeholder { color: var(--slate); }
.form-textarea:focus {
  border-color: var(--sky-bright);
  outline: none;
}
.form-privacy {
  font-size: 12px;
  color: rgba(11,31,58,0.4);
  line-height: 1.2;
}
.form-privacy a {
  color: var(--sky-bright);
  text-decoration: none;
}
.form-info {
  width: 400px;
  flex-shrink: 0;
}
.contact-details-card {
  background: #fff;
  border: 0.889px solid var(--horizon-dark);
  border-radius: var(--radius-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-details-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--sky-deep);
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 36px;
  height: 36px;
  background: var(--off-white);
  border-radius: var(--radius-input);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-item-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: rgba(11,31,58,0.65);
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.contact-item-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--sky-deep);
  letter-spacing: -0.3px;
}
.contact-divider {
  height: 1px;
  background: var(--horizon-dark);
  width: 100%;
}

/* ─────────────────────────────────────── */
/* ─── 404 PAGE                        ─── */
/* ─────────────────────────────────────── */
.hero-404 {
  position: relative;
  width: 100%;
  height: 900px;
  overflow: hidden;
}
.hero-404-bg {
  position: absolute;
  inset: 0;
}
.hero-404-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-404-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 58, 0.73);
}
.hero-404-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  text-align: center;
  padding: 0 64px;
}
.error-code {
  font-size: 160px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
}
.error-code .orange { color: var(--signal); }
.error-heading {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.1;
}
.error-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.3px;
  line-height: 1.5;
  max-width: 480px;
}

/* ─────────────────────────────────────── */
/* ─── PRIVACY POLICY PAGE             ─── */
/* ─────────────────────────────────────── */
.policy-section {
  padding-top: 128px;
  padding-bottom: 64px;
}
.policy-title {
  font-size: 56px;
  font-weight: 600;
  color: var(--sky-deep);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 32px;
}
.policy-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.policy-content h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--sky-deep);
  letter-spacing: -1px;
  line-height: 1;
  margin-top: 16px;
}
.policy-content p {
  font-size: 16px;
  font-weight: 400;
  color: rgba(11,31,58,0.8);
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.policy-content ul {
  list-style: disc;
  padding-left: 24px;
}
.policy-content ul li {
  font-size: 16px;
  color: rgba(11,31,58,0.8);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 4px;
}

/* ─────────────────────────────────────── */
/* ─── GENERIC PAGE                    ─── */
/* ─────────────────────────────────────── */
.entry-title {
  font-size: 56px;
  font-weight: 600;
  color: var(--sky-deep);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 32px;
}
.entry-content {
  font-size: 16px;
  color: rgba(11,31,58,0.8);
  letter-spacing: -0.5px;
  line-height: 1.4;
}
.entry-content h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--sky-deep);
  letter-spacing: -1px;
  margin-top: 32px;
  margin-bottom: 16px;
}
.entry-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--sky-deep);
  letter-spacing: -1px;
  margin-top: 24px;
  margin-bottom: 12px;
}
.entry-content p {
  margin-bottom: 16px;
}
.entry-content ul,
.entry-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

/* ─────────────────────────────────────── */
/* ─── BLOG ARCHIVE PAGE               ─── */
/* ─────────────────────────────────────── */
.blog-list-section {
  background: #fff;
  padding: 96px 0 72px;
}
.blog-list-title {
  text-align: center;
  margin-bottom: 60px;
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1;
}
.blog-list-title .dark { color: var(--sky-deep); }
.blog-list-title .blue { color: var(--sky-bright); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}
.blog-card-img {
  height: 240px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.blog-card-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--sky-deep);
  letter-spacing: -1px;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-desc {
  font-size: 16px;
  color: rgba(11,31,58,0.6);
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.blog-card-meta {
  border-top: 0.6px solid var(--horizon-dark);
  padding-top: 12px;
  padding-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-card-date {
  font-size: 14px;
  color: rgba(11,31,58,0.6);
  letter-spacing: 0.66px;
}
.blog-card-read {
  font-size: 14px;
  color: var(--sky-bright);
  text-transform: uppercase;
  letter-spacing: 0.66px;
}

/* WordPress pagination */
.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.nav-links .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 8px 16px;
  border-radius: var(--radius-input);
  border: 1.5px solid var(--horizon-dark);
  font-size: 14px;
  font-weight: 500;
  color: var(--sky-deep);
  text-decoration: none;
  transition: all 0.2s;
}
.nav-links .page-numbers:hover {
  border-color: var(--sky-bright);
  color: var(--sky-bright);
}
.nav-links .page-numbers.current {
  background: var(--sky-bright);
  border-color: var(--sky-bright);
  color: #fff;
}

/* ─────────────────────────────────────── */
/* ─── BLOG SINGLE POST PAGE           ─── */
/* ─────────────────────────────────────── */
.post-hero {
  position: relative;
  height: 640px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.post-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.post-hero-bg img {
  position: absolute;
  width: 100%;
  height: 186%;
  top: -43%;
  left: 0;
  object-fit: cover;
}
.post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0b1f3a 13.926%, rgba(26,68,128,0.2) 69.149%);
}
.post-hero-content {
  position: absolute;
  bottom: 64px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.post-hero-title {
  font-size: 72px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
}
.post-hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.post-hero-avatar {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.post-hero-author {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.2px;
}
.post-hero-meta-dot {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
}
.post-hero-date {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.2px;
}

/* Post content */
.post-content-section {
  background: #fff;
  padding: 72px 0 96px;
}
.post-content-inner {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.post-body {
  flex: 1;
  min-width: 0;
}

/* ── Vertical rhythm: works with Gutenberg wp-block-* wrappers ── */
/* Reset all browser / block-editor default margins first */
.post-body * { margin-top: 0; margin-bottom: 0; }

/* Space after every block element */
.post-body p,
.post-body ul,
.post-body ol,
.post-body figure,
.post-body blockquote,
.post-body table,
.post-body .wp-block-group,
.post-body .wp-block-image,
.post-body .wp-block-quote,
.post-body .wp-block-list,
.post-body .wp-block-table {
  margin-bottom: 20px;
}

/* H2: more space above to visually separate sections */
.post-body h2 { margin-top: 48px; margin-bottom: 16px; }
.post-body h3 { margin-top: 36px; margin-bottom: 12px; }
.post-body h4 { margin-top: 28px; margin-bottom: 10px; }

/* First child — no top margin */
.post-body > *:first-child,
.post-body > *:first-child > *:first-child { margin-top: 0; }

.post-body p {
  font-size: 16px;
  color: rgba(11,31,58,0.8);
  letter-spacing: -0.5px;
  line-height: 1.6;
}
.post-body h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--sky-deep);
  letter-spacing: -1px;
  line-height: 1.1;
}
.post-body h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--sky-deep);
  letter-spacing: -1px;
  line-height: 1.1;
}
.post-body h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--sky-deep);
  letter-spacing: -1px;
  line-height: 1.1;
}
.post-body ul,
.post-body ol {
  padding-left: 28px;
}
.post-body ul { list-style: disc; }
.post-body ol { list-style: decimal; }
.post-body ul li,
.post-body ol li {
  display: list-item;
  font-size: 16px;
  color: rgba(11,31,58,0.8);
  letter-spacing: -0.5px;
  line-height: 1.6;
  margin-bottom: 8px;
}
.post-body a {
  color: var(--sky-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.post-body a:hover { color: var(--sky-deep); }
.post-body img {
  border-radius: var(--radius-card-sm);
  max-width: 100%;
  height: auto;
  display: block;
}
.post-body figure {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.post-body figcaption,
.post-body .wp-element-caption {
  font-size: 12px;
  font-weight: 300;
  color: rgba(11,31,58,0.6);
  letter-spacing: -0.3px;
  text-align: center;
  margin-bottom: 0;
}
/* Callout / tip block */
.post-body .wp-block-group.is-style-tip,
.post-body .tip-block {
  background: #e8f1fb;
  border-left: 4px solid var(--sky-bright);
  border-radius: 0 12px 12px 0;
  padding: 24px 24px 24px 28px;
}
.post-body blockquote,
.post-body .wp-block-quote {
  border-left: 4px solid var(--sky-bright);
  padding: 16px 24px;
  background: #e8f1fb;
  border-radius: 0 12px 12px 0;
}
.post-body blockquote p,
.post-body .wp-block-quote p {
  font-size: 18px;
  color: var(--sky-deep);
  font-style: italic;
  margin-bottom: 0;
}
/* WordPress block editor table */
.post-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.post-body th,
.post-body td {
  padding: 12px 16px;
  border: 1px solid var(--horizon-dark);
  color: rgba(11,31,58,0.8);
  text-align: left;
}
.post-body th {
  background: var(--off-white);
  font-weight: 600;
  color: var(--sky-deep);
}

/* ─── Author Bio ─── */
.post-author {
  margin-top: 24px;
}
.post-author-divider {
  height: 1px;
  background: var(--horizon-dark);
  width: 100%;
}
.post-author-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
}
.post-author-avatar {
  flex-shrink: 0;
}
.post-author-img {
  width: 56px !important;
  height: 56px !important;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.post-author-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.post-author-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(11,31,58,0.6);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.post-author-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--sky-deep);
  letter-spacing: -0.3px;
}
.post-author-bio {
  font-size: 16px;
  font-weight: 400;
  color: rgba(11,31,58,0.6);
  line-height: 1.5;
  letter-spacing: -0.1px;
}

/* Post sidebar */
.post-sidebar {
  width: 360px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
}
.sidebar-cta {
  border-radius: var(--radius-card);
  border: 1px solid rgba(77,166,255,0.2);
  background: linear-gradient(139.58deg, #1A4480 3.671%, #0B1F3A 96.329%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-cta-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.88px;
  text-transform: uppercase;
  line-height: 1.2;
}
.sidebar-cta-title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
}
.sidebar-cta-price {
  display: flex;
  gap: 12px;
  align-items: center;
}
.sidebar-price-main {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1;
}
.sidebar-price-old {
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
  letter-spacing: -0.5px;
}
.sidebar-cta-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.sidebar-btn {
  background: var(--signal);
  height: 64px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.sidebar-btn:hover { background: var(--signal-dark); color: #fff; }

/* More Articles section */
.more-articles {
  background: var(--off-white);
  padding: 96px 0;
}
.more-articles-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
}
.more-articles-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.more-articles-title {
  font-size: 56px;
  font-weight: 600;
  color: var(--sky-deep);
  letter-spacing: -1px;
  line-height: 1;
}
.more-articles-title .blue { color: var(--sky-bright); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Page-specific breakpoints
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1023px) {
  :root { --page-padding-x: 32px; }

  /* Hero */
  .hero-wrapper { height: 600px; padding-top: 80px; }
  .hero-content { width: 100%; }
  .hero-image-wrap img { object-position: 65% center; }
  .hero-h1 { font-size: 48px; letter-spacing: -1px; }
  .hero-subtitle { font-size: 18px; }
  .hero-buttons { flex-wrap: wrap; }

  /* Finder */
  .finder-heading-block { padding: 0 32px; }
  .finder-title { font-size: 40px; }
  .finder-columns { flex-direction: column; }
  .finder-result-wrapper { width: 100%; }

  /* Products */
  .products-header { flex-direction: column; gap: 24px; align-items: flex-start; }
  .products-copy { width: 100%; }
  .product-cards { flex-wrap: wrap; }
  .product-cards .product-card { flex: 0 0 calc(50% - 8px); }

  .section-h2 { font-size: 40px; }

  /* Platform */
  .platform-section > .container { flex-direction: column; }
  .platform-content { width: 100%; }
  .platform-h2 { font-size: 40px; }

  /* Why Us */
  .why-wrapper { min-height: 600px; padding: 64px 0 200px; }
  .why-content { max-width: 100%; padding: 0 48px; }
  .why-h2 { font-size: 40px; letter-spacing: -1px; }
  .why-team-images { gap: 24px; padding: 0 48px; }
  .why-team-photo img { width: 160px; height: 200px; }

  /* Platform */
  .platform-section > .container { min-height: auto; padding-top: 64px; padding-bottom: 64px; }

  /* Testimonials */
  .testimonial-cards { gap: 16px; }
  .testimonial-card { flex: 0 0 340px; max-width: 340px; }
  .testimonials-h2 { font-size: 40px; }

  /* Blog */
  .blog-header { flex-direction: column; gap: 24px; align-items: flex-start; }
  .blog-copy { width: 100%; }
  .blog-cards { grid-template-columns: repeat(2, 1fr); }
  .blog-h2 { font-size: 40px; }

  /* FAQ */
  .faq-title { font-size: 40px; }

  /* About */
  .our-story .container { flex-direction: column; align-items: stretch; }
  .our-story-left { flex: none; width: 100%; }
  .our-story-right { flex: none; height: 350px; }
  .story-title { font-size: 40px; }
  .promise-section .container { flex-direction: column; align-items: stretch; }
  .promise-copy { flex: none; width: 100%; }
  .promise-title { font-size: 40px; }
  .promise-img { flex: none; height: 400px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-title { font-size: 40px; }
  .team-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .team-header-right { width: 100%; }

  /* Contact */
  .form-section { padding: 64px 0; }
  .form-content-row { flex-direction: column; }
  .form-info { width: 100%; }
  .form-title { font-size: 40px; }

  /* 404 */
  .hero-404 { height: 600px; }
  .error-code { font-size: 100px; letter-spacing: -1px; }
  .error-heading { font-size: 32px; }

  /* Policy */
  .policy-section { padding-top: 96px; }
  .policy-title { font-size: 40px; }

  /* Blog archive */
  .blog-list-title { font-size: 40px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }

  /* Blog single */
  .post-body p { font-size: 15px; }
  .post-body h2 { font-size: 22px; margin-top: 32px; }
  .post-body h3 { font-size: 19px; margin-top: 24px; }
  .post-body h4 { font-size: 17px; margin-top: 20px; }
  .post-body ul li, .post-body ol li { font-size: 15px; }
  .post-hero { height: 450px; }
  .post-hero-title { font-size: 32px; letter-spacing: -1px; }
  .post-hero-author { font-size: 13px; }
  .post-hero-date { font-size: 13px; }
  .post-hero-meta-dot { font-size: 13px; }
  .post-hero-avatar { width: 28px !important; height: 28px !important; }
  .post-content-inner { flex-direction: column; }
  .post-sidebar { width: 100%; position: static; }
  .post-author { margin-top: 32px; }
  .post-author-img { width: 52px !important; height: 52px !important; }
  .more-articles-header { flex-direction: column; gap: 24px; align-items: flex-start; }
  .more-articles-title { font-size: 40px; }

  /* Tablet layout fixes */
  .form-info { width: 100%; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-card-img { height: 180px; }
}

@media (max-width: 767px) {
  :root { --page-padding-x: 20px; }

  /* Hero */
  .hero-wrapper { height: auto; min-height: 480px; justify-content: flex-start; padding-top: 48px; padding-bottom: 48px; }
  .hero-content { width: 100%; }
  .hero-h1 { font-size: 36px; letter-spacing: -1px; }
  .hero-subtitle { font-size: 16px; }
  .hero-buttons { flex-direction: column; width: 100%; gap: 12px; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary { width: 100%; justify-content: center; }

  /* Platform */
  .platform-section > .container { min-height: auto; padding-top: 48px; padding-bottom: 48px; }
  .platform-content { width: 100%; }
  .trust-proof { flex-wrap: wrap; gap: 16px; }

  /* Finder */
  .finder-section { padding: 48px 0; }
  .finder-heading-block { padding: 0 20px; }
  .finder-title { font-size: 32px; }
  .finder-subtitle { font-size: 16px; }

  /* Products */
  .product-cards .product-card { flex: 0 0 100%; }
  .section-h2 { font-size: 32px; }

  /* Platform */
  .platform-h2 { font-size: 32px; }
  .platform-body { font-size: 16px; }

  /* Why Us */
  .why-body { font-size: 16px; }
  .why-wrapper { min-height: 500px; padding: 56px 0 100px; }
  .testimonials-section { padding: 48px 0; }
  .blog-title { font-size: 18px; letter-spacing: -0.5px; }
  .blog-card-placeholder { display: none; }
  .blog-card-title { font-size: 18px; letter-spacing: -0.5px; }
  .why-content { padding: 0 24px; }
  .why-h2 { font-size: 32px; letter-spacing: -1px; }
  .why-team-images { gap: 16px; padding: 0 24px; }
  .why-team-photo img { width: 120px; height: 150px; }
  .why-team-name { font-size: 14px; }

  /* Testimonials — wider cards on phone */
  .testimonial-card { flex: 0 0 85%; max-width: none; }
  .testimonials-h2 { font-size: 32px; }

  /* Blog */
  .blog-cards,
  .blog-grid { grid-template-columns: 1fr; }
  .blog-h2 { font-size: 32px; }

  /* FAQ */
  .faq-title { font-size: 32px; }

  /* About */
  .story-title { font-size: 32px; }
  .our-story-right { height: 260px; }
  .stats-bar { flex-direction: column; }
  .stat { border-right: none; border-bottom: 1px solid var(--horizon-dark); }
  .stat:last-child { border-bottom: none; }
  .promise-title { font-size: 32px; }
  .promise-body { font-size: 15px; }
  .promise-img { height: 260px; }
  .promise-pillar { padding: 16px 18px; gap: 14px; }
  .pillar-icon { width: 40px; height: 40px; }
  .pillar-label { font-size: 16px; }
  .promise-pillar p { font-size: 14px; }
  .story-body { font-size: 15px; }
  .team-header-right { font-size: 16px; width: 100%; }
  .team-grid { grid-template-columns: 1fr; margin: 0 64px; }
  .team-title { font-size: 32px; }

  /* Contact */
  .form-section { padding: 48px 0; }
  .form-row { flex-direction: column; }
  .form-title { font-size: 32px; }
  .form-card .btn-primary { width: 100%; justify-content: center; }

  /* 404 */
  .hero-404 { height: 100vh; min-height: 500px; }
  .hero-404-content { padding: 0 20px; }
  .error-code { font-size: 72px; letter-spacing: -1px; }
  .error-heading { font-size: 24px; }
  .error-subtitle { font-size: 16px; }

  /* Policy */
  .policy-section { padding-top: 80px; }
  .policy-title { font-size: 32px; }
  .entry-title { font-size: 32px; }

  /* Mobile touch targets and spacing */
  .faq-item { padding: 16px; }
}

/* ═══════════════════════════════════════════════════════════
   EXTRA SMALL — 450px (iPhone SE, small Android)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 450px) {

  /* Homepage */
  .hero-subtitle { font-size: 15px; }
  .section-h2 { font-size: 26px; }
  .why-h2 { font-size: 26px; letter-spacing: -1px; }
  .blog-h2 { font-size: 26px; }
  .testimonials-h2 { font-size: 26px; letter-spacing: -1px; }

  /* Platform */
  .plat-hero-h1 { font-size: 28px; letter-spacing: -1px; }
  .plat-section-h2 { font-size: 24px; letter-spacing: -0.5px; }
  .plat-section-sub { font-size: 15px; }

  /* Blog single */
  .post-hero-title { font-size: 26px; }
  .post-body p { font-size: 14px; }
  .post-body h2 { font-size: 20px; }
  .post-body h3 { font-size: 17px; }
  .post-body h4 { font-size: 15px; }
  .post-body ul li, .post-body ol li { font-size: 14px; }

  /* About */
  .story-title { font-size: 26px; }
  .promise-title { font-size: 26px; }
  .team-title { font-size: 26px; }

  /* Contact */
  .form-title { font-size: 26px; }

  /* FAQ */
  .faq-title { font-size: 26px; }

  /* Reviews */
  .testimonials-h2 { font-size: 26px; }
}


/* ═══════════════════════════════════════════════════════════
   PLATFORM PAGE — /platform/
   ═══════════════════════════════════════════════════════════ */

/* ─── Shared section headings ──────────────────────────────── */
.plat-section-h2 {
  font-size: 48px;
  font-weight: 600;
  color: var(--sky-deep);
  letter-spacing: -1px;
  line-height: 1.05;
  margin: 12px 0 8px;
}
.plat-section-sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--slate);
  letter-spacing: -0.3px;
  line-height: 1.4;
  margin: 0 0 48px;
}

/* ─── HERO ──────────────────────────────────────────────────── */
.plat-hero {
  background: var(--sky-deep);
  padding: 80px 0 0;
  overflow: hidden;
}
.plat-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  gap: 48px;
}
.plat-hero-content {
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.plat-hero-h1 {
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.0;
  margin: 0;
}
.plat-hero-sub {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  letter-spacing: -0.3px;
  line-height: 1.4;
  margin: 0;
}
.plat-hero-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: -60px;
  position: relative;
  z-index: 2;
}
.plat-hero-img {
  width: 100%;
  max-width: 580px;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ─── VIDEO INTRO ──────────────────────────────────────────── */
.plat-video {
  padding: 80px 0;
  background: #fff;
}
.plat-video .plat-section-h2,
.plat-video .plat-section-sub {
  text-align: center;
}
.plat-video-wrap {
  max-width: 800px;
  margin: 32px auto 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
  aspect-ratio: 16 / 9;
  background: #0b1f3a;
}
.plat-video-player {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ─── FEATURES ──────────────────────────────────────────────── */
.plat-features {
  background: var(--off-white);
  padding: 80px 0;
}
.plat-features .plat-section-h2,
.plat-features .plat-section-sub {
  text-align: center;
}
.plat-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.plat-feature-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.plat-feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(45,125,210,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.plat-feature-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--sky-deep);
  letter-spacing: -1px;
  margin: 0;
}
.plat-feature-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--slate);
  line-height: 1.55;
  letter-spacing: -0.1px;
  margin: 0;
}

/* ─── COMPARISON TABLE ──────────────────────────────────────── */
.plat-comparison {
  background-color: #1A4480;
  background-image: linear-gradient(180deg, #1A4480 30.51%, #0B1F3A 102.86%);
  padding: 80px 0;
}
.plat-comparison .eyebrow-tag {
  display: block;
  width: fit-content;
  margin: 0 auto;
}
.plat-comparison .plat-section-h2 {
  color: #fff;
  text-align: center;
}
.plat-comparison .plat-section-sub {
  color: rgba(255,255,255,0.75);
  text-align: center;
}
.plat-compare-table {
  border: 1px solid rgba(11,31,58,0.1);
  border-radius: var(--radius-card);
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}
.plat-compare-header,
.plat-compare-row {
  display: grid;
  grid-template-columns: 1fr 120px 160px;
}
.plat-compare-header {
  background: var(--sky-deep);
}
.plat-compare-row {
  border-top: 1px solid rgba(11,31,58,0.08);
  background: #fff;
}
.plat-compare-col {
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 400;
  color: var(--sky-deep);
  display: flex;
  align-items: center;
}
.plat-compare-header .plat-compare-col {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
}
.plat-col-pdf,
.plat-col-bundle {
  justify-content: center;
  text-align: center;
}
.plat-col-bundle {
  background: rgba(45,125,210,0.06);
}
.plat-compare-header .plat-col-bundle {
  background: var(--sky-deep);
}
.plat-bundle-pill {
  background: var(--signal);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: -0.1px;
}
.plat-check {
  color: #22C55E;
  font-size: 18px;
  font-weight: 700;
}
.plat-cross {
  color: rgba(11,31,58,0.15);
  font-size: 18px;
}
.plat-coming-soon-note {
  text-align: center;
  font-size: 15px;
  font-style: italic;
  color: var(--slate);
  margin-top: 20px;
}
.plat-soon-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--sky-bright);
  background: rgba(0,122,255,0.08);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ─── CATEGORY PICKER ──────────────────────────────────────── */
.plat-categories {
  background: #fff;
  padding: 80px 0;
}
.plat-categories .plat-section-h2 .accent {
  color: var(--sky-bright);
}
@media (max-width: 768px) {
  .plat-categories {
    padding: 48px 0;
  }
}

/* ─── PRODUCT BUNDLES (legacy) ─────────────────────────────── */
.plat-products {
  background: #fff;
}
.plat-products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.plat-products-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.plat-products-h2 {
  margin: 0;
}
.plat-products-h2 .accent {
  color: var(--sky-bright);
}
.plat-section-h2 .accent {
  color: var(--sky-bright);
}


/* ─── PLATFORM PAGE RESPONSIVE: 1024px ──────────────────────── */
@media (max-width: 1023px) {
  .plat-section-h2 { font-size: 36px; letter-spacing: -1px; }
  .plat-hero { padding: 64px 0 0; }
  .plat-hero-inner { gap: 32px; }
  .plat-hero-h1 { font-size: 48px; letter-spacing: -1px; }
  .plat-hero-sub { font-size: 17px; }
  .plat-hero-content { padding-bottom: 64px; }
  .plat-hero-visual { margin-bottom: -48px; }
  .plat-video { padding: 64px 0; }
  .plat-features { padding: 64px 0; }
  .plat-feature-card { padding: 28px; }
  .plat-comparison { padding: 64px 0; }
}

/* ─── PLATFORM PAGE RESPONSIVE: 768px ───────────────────────── */
@media (max-width: 767px) {
  /* Section headings */
  .plat-section-h2 { font-size: 28px; letter-spacing: -1px; margin-bottom: 4px; }
  .plat-section-sub { font-size: 15px; margin-bottom: 32px; }

  /* Hero */
  .plat-hero { padding: 48px 0 0; }
  .plat-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .plat-hero-content { padding-bottom: 0; gap: 20px; }
  .plat-hero-h1 { font-size: 36px; letter-spacing: -1px; }
  .plat-hero-sub { font-size: 16px; }
  .plat-hero-visual { justify-content: flex-start; margin-bottom: -40px; }
  .plat-hero-img { border-radius: 8px; max-width: 100%; }
  .plat-hero-content .btn-primary { width: 100%; justify-content: center; }

  /* Video */
  .plat-video { padding: 48px 0; }
  .plat-video-wrap { margin-top: 24px; border-radius: 8px; }

  /* Features */
  .plat-features { padding: 48px 0; }
  .plat-features-grid { grid-template-columns: 1fr; gap: 16px; }
  .plat-feature-card { padding: 24px; }
  .plat-feature-title { font-size: 18px; }

  /* Comparison table */
  .plat-comparison { padding: 48px 0; }
  .plat-compare-table { margin-left: -20px; margin-right: -20px; border-radius: 0; border-left: 0; border-right: 0; }
  .plat-compare-header,
  .plat-compare-row { grid-template-columns: 1fr 60px 60px; }
  .plat-compare-col { padding: 10px 8px; font-size: 13px; line-height: 1.3; }
  .plat-compare-header .plat-compare-col { font-size: 10px; line-height: 1.2; }
  .plat-bundle-pill { font-size: 9px; padding: 2px 6px; }


  /* Product bundles */
  .plat-products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .plat-products-header .btn-secondary { width: 100%; text-align: center; justify-content: center; }
}


/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS — hiw-section
   ═══════════════════════════════════════════════════════════ */

.hiw-section {
  background: var(--white);
}
.hiw-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.hiw-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hiw-h2 {
  font-size: 40px;
  font-weight: 600;
  color: var(--sky-deep);
  letter-spacing: -1px;
  line-height: 1.1;
}
.hiw-body {
  font-size: 17px;
  color: rgba(11,31,58,0.7);
  letter-spacing: -0.3px;
  line-height: 1.65;
}
.hiw-drone-img img {
  width: 100%;
  border-radius: var(--radius-card);
}
.hiw-card {
  background: var(--sky-deep);
  border-radius: var(--radius-card);
  padding: 40px;
  display: flex;
  flex-direction: column;
}
.hiw-benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.hiw-icon-wrap {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-card-sm);
  background: rgba(253,125,52,0.15);
  color: var(--signal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hiw-benefit-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.3px;
  line-height: 1.3;
  margin: 0 0 4px;
}
.hiw-benefit-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  letter-spacing: -0.2px;
  line-height: 1.55;
  margin: 0;
}
.hiw-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 20px 0;
}

/* ═══════════════════════════════════════════════════════════
   LOCATION PAGES — /locations/{city}/
   ═══════════════════════════════════════════════════════════ */

/* ─── Scroll offset for sticky nav ─── */
.page-location section {
  scroll-margin-top: calc(var(--navbar-height) + 16px);
}

/* ─── Shared section helpers ─── */
.loc-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.loc-section-h2 {
  font-size: 40px;
  font-weight: 600;
  color: var(--sky-deep);
  letter-spacing: -1px;
  line-height: 1.05;
  margin: 0;
}

/* ─── Local Guide + Spots ─── */
.loc-guide-section {
  padding: 80px 0;
  background: var(--white);
}
.loc-guide-inner {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 24px;
  align-items: start;
}
.loc-guide-spots {
  position: sticky;
  top: calc(var(--navbar-height) + 24px);
}
.loc-spots-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(11,31,58,0.5);
  text-transform: uppercase;
  letter-spacing: 0.88px;
  margin-bottom: 16px;
}
.loc-spots-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.loc-spot-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--sky-deep);
  letter-spacing: -0.3px;
  padding: 9px 14px;
  background: var(--off-white);
  border: 1px solid var(--horizon-dark);
  border-radius: var(--radius-card-sm);
}
.loc-spot-item svg {
  flex-shrink: 0;
  color: var(--sky-bright);
}

/* ─── Licence Cards ─── */
.loc-licences-section {
  padding: 80px 0;
  background: var(--off-white);
}
.loc-licence-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.loc-licence-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 0 32px;
  background: var(--white);
  border: 1px solid var(--horizon-dark);
  border-radius: var(--radius-card);
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.loc-licence-card:hover {
  border-color: var(--sky-bright);
  box-shadow: 0 4px 24px rgba(11,31,58,0.08);
}
.loc-licence-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--off-white);
}
.loc-licence-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.loc-licence-card .loc-licence-name,
.loc-licence-card .loc-licence-desc,
.loc-licence-card .loc-licence-link {
  padding: 0 24px;
}
.loc-licence-name {
  font-size: 22px;
  font-weight: 600;
  color: var(--sky-deep);
  letter-spacing: -1px;
  line-height: 1;
}
.loc-licence-desc {
  font-size: 15px;
  color: rgba(11,31,58,0.7);
  letter-spacing: -0.3px;
  line-height: 1.5;
  flex: 1;
}
.loc-licence-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--sky-bright);
  letter-spacing: -0.3px;
  margin-top: auto;
}

.loc-guide-main {
  max-width: 900px;
  width: 100%;
}
.loc-guide-h2 {
  font-size: 40px;
  font-weight: 600;
  color: var(--sky-deep);
  letter-spacing: -1px;
  line-height: 1.05;
  margin: 0 0 48px;
}
.loc-guide-content {
  width: 100%;
}
.loc-guide-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--sky-deep);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin: 40px 0 12px;
}
.loc-guide-content h3:first-child {
  margin-top: 0;
}
.loc-guide-content p {
  font-size: 16px;
  color: rgba(11,31,58,0.72);
  letter-spacing: -0.3px;
  line-height: 1.7;
  margin: 0 0 16px;
}
.loc-guide-content ul {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.loc-guide-content ul li {
  font-size: 16px;
  color: rgba(11,31,58,0.72);
  letter-spacing: -0.3px;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}
.loc-guide-content ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--sky-bright);
  font-weight: 600;
}
.loc-guide-content strong {
  color: var(--sky-deep);
  font-weight: 600;
}

/* ─── Hide drone photo from how-it-works on location pages ─── */
.page-location .hiw-drone-img { display: none; }

/* ─── Nearby Locations ─── */
.loc-nearby-section {
  padding: 80px 0;
  background: var(--off-white);
}
.loc-nearby-section .loc-section-h2 {
  margin-bottom: 40px;
}
.loc-nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.loc-nearby-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--horizon-dark);
  border-radius: var(--radius-card-sm);
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.loc-nearby-card:hover {
  border-color: var(--sky-bright);
  box-shadow: 0 2px 12px rgba(11,31,58,0.06);
}
.loc-nearby-city {
  font-size: 18px;
  font-weight: 600;
  color: var(--sky-deep);
  letter-spacing: -1px;
}
.loc-nearby-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--sky-bright);
  letter-spacing: -0.3px;
}

@media (max-width: 767px) {
  .loc-guide-section          { padding: 32px 0; }
  .loc-licences-section       { padding: 32px 0; }
  .loc-nearby-section         { padding: 32px 0; }
  .loc-guide-inner            { display: flex; flex-direction: column; gap: 32px; }
  .loc-guide-spots            { position: static; width: 100%; }
  .loc-section-header         { flex-direction: column; align-items: flex-start; gap: 16px; }
  .loc-licence-cards          { grid-template-columns: 1fr; }
  .page-location .hiw-layout  { display: flex; flex-direction: column; gap: 32px; }
  .page-location .hiw-h2      { font-size: 28px; }
  .loc-nearby-grid            { grid-template-columns: repeat(2, 1fr); }
  .loc-guide-h2               { font-size: 26px; }
  .loc-section-h2             { font-size: 24px; }
  .loc-context-h2             { font-size: 24px; }
  .loc-guide-content h3       { font-size: 17px; }
}

