@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #111416;
  --carbon: #1b2228;
  --surface: #ffffff;
  --mist: #f2f5f4;
  --signal: #c9ff48;
  --thermal: #ff8a3d;
  --sky: #4fb4ff;
  --steel: #68747b;
  --line: #d9dfdc;
  --max: 1280px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--ink);
  font-family: "Sora", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

.wp-site-blocks {
  padding: 0;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-underline-offset: 3px;
}

button,
input,
textarea,
select {
  font: inherit;
}

.alignwide {
  width: min(calc(100% - 48px), var(--max));
  max-width: var(--max);
  margin-inline: auto;
}

.alignfull {
  width: 100%;
  max-width: none;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: var(--header-height);
  margin: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: var(--header-height);
  gap: 28px;
}

.brand-lockup {
  flex: 0 0 auto;
  gap: 10px;
}

.brand-lockup .wp-block-site-logo {
  margin: 0;
}

.brand-lockup .custom-logo-link {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
}

.brand-lockup .custom-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-copy {
  gap: 0;
}

.brand-copy .wp-block-site-title {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.15;
}

.brand-copy .wp-block-site-title a {
  text-decoration: none;
}

.brand-copy p {
  margin: 3px 0 0;
  color: var(--steel);
  font-size: 0.68rem;
  line-height: 1.2;
}

.primary-navigation {
  flex: 1 1 auto;
  margin: 0;
}

/* Critical navigation fallback: keeps the header usable if the exported
   WordPress navigation stylesheet is delayed or unavailable. */
.primary-navigation .wp-block-navigation__responsive-container-open,
.primary-navigation .wp-block-navigation__responsive-container-close {
  display: none;
}

.primary-navigation .wp-block-navigation__responsive-container,
.primary-navigation .wp-block-navigation__responsive-container-content {
  width: 100%;
}

.primary-navigation .wp-block-navigation__responsive-container-content,
.primary-navigation .wp-block-navigation__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 30px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-navigation .wp-block-navigation-item {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0;
  list-style: none;
}

.primary-navigation .wp-block-navigation__submenu-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.primary-navigation .wp-block-navigation__submenu-container {
  position: absolute;
  z-index: 60;
  top: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.primary-navigation .has-child:hover > .wp-block-navigation__submenu-container,
.primary-navigation .has-child:focus-within > .wp-block-navigation__submenu-container {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.primary-navigation .wp-block-navigation-item__content {
  padding: 26px 2px 24px;
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.primary-navigation .wp-block-navigation-item__content:hover,
.primary-navigation .wp-block-navigation-item__content:focus-visible {
  color: #2975a8;
}

.primary-navigation .wp-block-navigation__submenu-container {
  min-width: 210px !important;
  padding: 8px;
  border: 1px solid var(--line) !important;
  border-radius: 4px;
  background: var(--surface) !important;
  box-shadow: 0 18px 50px rgba(17, 20, 22, 0.12);
}

.primary-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
  padding: 9px 10px;
}

.header-actions {
  flex: 0 0 auto;
}

.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.72rem 1.15rem;
  border: 1px solid var(--signal);
  border-radius: 4px;
  background: var(--signal);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.wp-block-button__link:hover,
.wp-block-button__link:focus-visible,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  border-color: var(--surface);
  background: var(--surface);
  color: var(--ink);
  transform: translateY(-1px);
}

.is-style-outline .wp-block-button__link {
  border-color: currentColor;
  background: transparent;
  color: inherit;
}

.is-style-outline .wp-block-button__link:hover,
.is-style-outline .wp-block-button__link:focus-visible {
  border-color: var(--signal);
  background: var(--signal);
  color: var(--ink);
}

.aeronest-hero-block {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  margin: 0;
  background: var(--ink) url("../images/powerline-mission.webp") center / cover no-repeat;
}

.aeronest-hero-block::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(6, 9, 11, 0.84) 0%, rgba(6, 9, 11, 0.55) 52%, rgba(6, 9, 11, 0.08) 100%);
  pointer-events: none;
}

.aeronest-hero-block .wp-block-cover__background {
  z-index: 1;
  opacity: 0.22 !important;
}

.aeronest-hero-block .wp-block-cover__video-background {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aeronest-hero-block .wp-block-cover__inner-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  margin-left: max(24px, calc((100vw - var(--max)) / 2));
  padding: 94px 0 86px;
  color: var(--surface);
}

.hero-kicker,
.section-kicker,
.industry-label {
  margin: 0 0 18px;
  color: var(--signal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 800px;
  margin: 0;
  color: var(--surface);
  font-size: 4.1rem;
  line-height: 1.06;
}

.hero-copy {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.hero-actions {
  margin-top: 32px;
  gap: 12px;
}

.hero-actions .is-style-outline .wp-block-button__link {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--surface);
}

.aeronest-trust-block {
  margin: 0;
  padding: 25px 0 23px;
  border-bottom: 1px solid #31383d;
  background: var(--ink);
  color: var(--surface);
}

.aeronest-trust-block .wp-block-columns {
  margin: 0 auto;
  gap: 0;
}

.aeronest-trust-block .wp-block-column {
  min-width: 0;
  padding: 0 24px;
  border-left: 1px solid #31383d;
}

.aeronest-trust-block .wp-block-column:first-child {
  padding-left: 0;
  border-left: 0;
}

.aeronest-trust-block p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.45;
}

.aeronest-trust-block small {
  color: #aeb8be;
}

.aeronest-section,
.package-section {
  margin: 0;
  padding: 104px 0;
}

.section-head {
  margin-bottom: 44px;
}

.section-head .section-kicker {
  color: #397819;
}

.section-head h2,
.deployment-section h2,
.aeronest-quote h2 {
  max-width: 880px;
  margin: 0;
  font-size: 3rem;
  line-height: 1.12;
}

.section-head > p:last-child {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--steel);
  font-size: 1rem;
}

.workflow-grid,
.project-step-grid {
  margin-bottom: 68px;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.workflow-grid > .wp-block-column,
.project-step-grid > .wp-block-column {
  min-width: 0;
  padding: 28px 26px 30px;
  border-left: 1px solid var(--line);
}

.workflow-grid > .wp-block-column:first-child,
.project-step-grid > .wp-block-column:first-child {
  padding-left: 0;
  border-left: 0;
}

.step-index {
  margin: 0 0 38px;
  color: #397819;
  font-size: 0.76rem;
  font-weight: 800;
}

.workflow-grid h3,
.project-step-grid h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.workflow-grid p:last-child,
.project-step-grid p:last-child {
  margin: 0;
  color: var(--steel);
  font-size: 0.86rem;
}

.system-split {
  align-items: stretch !important;
  gap: 0;
  background: var(--ink);
  color: var(--surface);
}

.system-image,
.system-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  margin: 0;
  object-fit: cover;
}

.system-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
}

.system-copy h3 {
  margin: 0 0 22px;
  font-size: 2rem;
  line-height: 1.2;
}

.solution-list,
.deployment-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-list li,
.deployment-list li {
  position: relative;
  margin: 0;
  padding: 13px 0 13px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.82);
}

.solution-list li::before,
.deployment-list li::before {
  position: absolute;
  top: 22px;
  left: 2px;
  width: 8px;
  height: 8px;
  background: var(--signal);
  content: "";
}

.industry-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.industry-grid {
  gap: 28px;
}

.industry-item {
  min-width: 0;
}

.industry-item figure {
  aspect-ratio: 4 / 3;
  margin: 0 0 24px;
  overflow: hidden;
  background: #dfe5e2;
}

.industry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.industry-item:hover img {
  transform: scale(1.025);
}

.industry-label {
  margin-bottom: 12px;
  color: #397819;
}

.industry-item h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  line-height: 1.3;
}

.industry-item > p:last-child {
  margin: 0;
  color: var(--steel);
  font-size: 0.9rem;
}

.project-flow-section {
  color: var(--surface);
}

.project-flow-section .section-kicker {
  color: var(--signal);
}

.project-flow-head {
  margin-bottom: 48px;
}

.project-flow-head h2 {
  max-width: 900px;
  margin: 0;
  color: var(--surface);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.12;
}

.project-flow-head > p:last-child {
  max-width: 760px;
  margin: 20px 0 0;
  color: #c2ccd1;
  font-size: 1rem;
}

.project-flow-steps {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch !important;
  gap: 0 !important;
  margin-bottom: 0;
  border-top: 1px solid #4a555c;
  border-bottom: 1px solid #4a555c;
}

.project-flow-step {
  position: relative;
  min-width: 0;
  min-height: 260px;
  padding: 28px 25px 30px;
  border-left: 1px solid #4a555c;
}

.project-flow-step:first-child {
  padding-left: 0;
  border-left: 0;
}

.project-flow-marker {
  min-height: 36px;
  margin: 0;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.project-flow-marker p {
  margin: 0;
}

.project-flow-index {
  color: var(--signal);
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1;
}

.project-flow-arrow {
  color: var(--signal);
  font-size: 1.15rem;
  line-height: 1;
}

.project-flow-step h3 {
  margin: 38px 0 0;
  color: var(--surface);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
}

.project-flow-step:nth-child(3) h3 {
  font-size: 0.98rem;
  white-space: nowrap;
}

.project-flow-copy {
  margin: 12px 0 0;
  color: #aeb8be;
  font-size: 0.86rem;
  line-height: 1.6;
}

.project-flow-step.is-final {
  background: var(--signal);
}

.project-flow-step.is-final .project-flow-index,
.project-flow-step.is-final h3 {
  color: var(--ink);
}

.project-flow-step.is-final .project-flow-copy {
  color: #344027;
}

.project-flow-installation {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 0.69rem;
  font-weight: 800;
  line-height: 1.45;
  text-transform: uppercase;
}

.project-flow-installation::before {
  width: 8px;
  height: 8px;
  background: var(--ink);
  content: "";
}

.software-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.software-card {
  display: flex;
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  flex-direction: column;
}

.software-number {
  margin: 0 0 36px;
  color: #397819;
  font-size: 0.72rem;
  font-weight: 800;
}

.software-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.software-purpose {
  min-height: 66px;
  margin: 0;
  color: var(--steel);
  font-size: 0.88rem;
}

.software-steps {
  margin: 24px 0 30px;
  padding-left: 1.25rem;
}

.software-steps li {
  margin: 0 0 14px;
  padding-left: 7px;
  color: var(--carbon);
  font-size: 0.84rem;
}

.software-card .wp-block-buttons {
  margin-top: auto;
}

.software-card .wp-block-button__link {
  padding: 12px 15px;
  font-size: 0.75rem;
}

.software-note {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--steel);
  font-size: 0.8rem;
}

.home-resource-grid {
  gap: 64px;
  margin-top: 42px;
}

.home-resource-grid > .wp-block-column {
  min-width: 0;
}

.home-resource-grid h3 {
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 1rem;
}

.home-resource-grid h3:not(:first-child) {
  margin-top: 26px;
}

.home-resource-grid h3 a {
  color: var(--ink);
  text-decoration: none;
}

.home-resource-grid h3 a:hover {
  text-decoration: underline;
}

.home-resource-grid p {
  margin: 8px 0 0;
  color: var(--steel);
  font-size: 0.84rem;
}

.package-section {
  background: var(--surface);
}

.catalogue {
  margin: 0;
  padding: 0;
}

.catalogue .container {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.catalogue .section-head h2 {
  max-width: 900px;
  margin: 0;
  font-size: 3rem;
  line-height: 1.12;
}

.catalogue .section-head p {
  max-width: 880px;
  margin: 18px 0 0;
  color: var(--steel);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  display: grid;
  grid-template-columns: 1fr;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.product-media {
  display: grid;
  aspect-ratio: 16 / 10;
  min-height: 0;
  margin: 0;
  place-items: center;
  overflow: hidden;
  background: var(--mist);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 240ms ease;
}

.product-media-link:hover img {
  transform: scale(1.035);
}

.product-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 30px;
}

.product-type {
  margin-bottom: 16px;
  color: #397819;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-body h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.25;
}

.product-body h3 a {
  text-decoration: none;
}

.product-body > p {
  margin: 16px 0 24px;
  color: var(--steel);
  font-size: 0.88rem;
}

.product-status {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.7rem;
  font-weight: 800;
  white-space: nowrap;
}

.product-status del {
  color: var(--steel);
  font-size: 0.9rem;
}

.product-status ins {
  text-decoration: none;
}

.product-link {
  margin-top: 18px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.asset-slot {
  display: grid;
  min-height: 220px;
  padding: 28px;
  place-items: center;
  color: var(--steel);
  text-align: center;
}

.project-process-section {
  padding-top: 0;
}

.faq-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  margin: 0;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
}

.faq-list details p {
  max-width: 850px;
  margin: 16px 0 0;
  color: var(--steel);
}

.secondary-products {
  margin: 0;
  padding: 70px 0;
  background: var(--surface);
}

.secondary-products > .wp-block-group {
  gap: 32px;
}

.secondary-products h2 {
  max-width: 760px;
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.25;
}

.secondary-products .section-kicker {
  margin-bottom: 10px;
  color: #397819;
}

.aeronest-quote-wrap {
  margin: 0;
  padding: 88px 0;
  background: var(--ink);
  color: var(--surface);
}

.aeronest-quote {
  align-items: center !important;
  gap: 72px;
  margin-bottom: 0;
}

.aeronest-quote > .wp-block-column:first-child {
  flex-basis: 34% !important;
}

.aeronest-quote > .wp-block-column:last-child {
  flex-basis: 66% !important;
}

.aeronest-quote h2 {
  color: var(--surface);
}

.aeronest-quote p {
  color: #b8c2c7;
}

.quote-actions {
  padding-left: 42px;
  border-left: 1px solid #384148;
}

.quote-actions .wp-block-buttons {
  margin-bottom: 24px;
}

.quote-actions .is-style-outline .wp-block-button__link {
  color: var(--surface);
}

.quote-form-panel {
  padding-left: 48px;
  border-left: 1px solid #384148;
}

.quote-form-intro {
  max-width: 52ch;
  margin-top: 20px;
}

.project-quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 18px;
}

.quote-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
}

.quote-field--wide,
.quote-consent,
.quote-form-footer,
.quote-honeypot {
  grid-column: 1 / -1;
}

.quote-field label,
.quote-consent label {
  color: var(--surface);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
}

.quote-required {
  color: var(--signal);
}

.project-quote-form input,
.project-quote-form select,
.project-quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #53616a;
  border-radius: 4px;
  background: #171d21;
  color: var(--surface);
  font-size: 1rem;
  line-height: 1.45;
  transition: border-color 140ms ease-out, background-color 140ms ease-out;
}

.project-quote-form textarea {
  min-height: 132px;
  resize: vertical;
}

.project-quote-form input::placeholder,
.project-quote-form textarea::placeholder {
  color: #aeb8bd;
  opacity: 1;
}

.project-quote-form select option {
  background: #171d21;
  color: var(--surface);
}

.project-quote-form input:hover,
.project-quote-form select:hover,
.project-quote-form textarea:hover {
  border-color: #7e8a91;
}

.project-quote-form input:focus-visible,
.project-quote-form select:focus-visible,
.project-quote-form textarea:focus-visible,
.quote-consent input:focus-visible,
.quote-submit:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 3px;
}

.project-quote-form [aria-invalid="true"] {
  border-color: #ff9b72;
}

.quote-field-error {
  min-height: 1.2em;
  margin: 0;
  color: #ffc1a8;
  font-size: 0.78rem;
  line-height: 1.4;
}

.quote-consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
}

.quote-consent input {
  width: 20px;
  min-width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--signal);
}

.quote-form-footer {
  display: flex;
  align-items: center;
  gap: 18px;
}

.quote-submit {
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--signal);
  border-radius: 4px;
  background: var(--signal);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  transition: background-color 140ms ease-out, border-color 140ms ease-out, transform 140ms ease-out;
}

.quote-submit:hover {
  border-color: #b3ec2d;
  background: #b3ec2d;
}

.quote-submit:active {
  transform: translateY(1px);
}

.quote-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.quote-form-status {
  min-height: 1.5em;
  margin: 0;
  color: #c7d0d4;
  font-size: 0.875rem;
  line-height: 1.5;
}

.quote-form-status[data-state="success"] {
  color: var(--signal);
}

.quote-form-status[data-state="error"] {
  color: #ffc1a8;
}

.quote-form-fallback {
  grid-column: 1 / -1;
  margin: -4px 0 0;
  color: #b8c2c7;
  font-size: 0.82rem;
}

.quote-form-fallback a {
  color: var(--surface);
  font-weight: 700;
}

.quote-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 900px) {
  .aeronest-quote {
    flex-direction: column;
    align-items: stretch !important;
    gap: 40px;
  }

  .aeronest-quote > .wp-block-column:first-child,
  .aeronest-quote > .wp-block-column:last-child {
    flex-basis: auto !important;
  }

  .quote-form-panel {
    padding: 38px 0 0;
    border-top: 1px solid #384148;
    border-left: 0;
  }
}

@media (max-width: 600px) {
  .project-quote-form {
    grid-template-columns: 1fr;
  }

  .quote-field--wide,
  .quote-consent,
  .quote-form-footer,
  .quote-form-fallback,
  .quote-honeypot {
    grid-column: 1;
  }

  .quote-form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .quote-submit {
    width: 100%;
  }
}

.site-footer {
  margin: 0;
  padding: 70px 0 32px;
  background: #0b0e10;
  color: var(--surface);
}

.footer-grid {
  gap: 44px;
}

.footer-grid h2,
.footer-grid h3 {
  margin: 0 0 16px;
  color: var(--surface);
}

.footer-grid h2 {
  font-size: 1.3rem;
}

.footer-grid h3 {
  font-size: 0.82rem;
  text-transform: uppercase;
}

.footer-grid p {
  margin: 0;
  color: #9ea9ae;
  font-size: 0.8rem;
}

.footer-grid a {
  color: #c8d0d4;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--signal);
}

.footer-rule {
  margin: 50px auto 26px;
  border-color: #30383d;
}

.footer-legal {
  max-width: 960px;
  margin: 0 auto;
  color: #77838a;
  font-size: 0.7rem;
}

.content-shell,
.shop-shell {
  min-height: 55vh;
  padding: 84px 0;
}

.content-shell > .wp-block-post-title {
  width: min(100%, 1040px);
  margin: 0 auto 28px;
  font-size: 3.35rem;
  line-height: 1.08;
}

.content-shell .wp-block-post-content {
  width: 100%;
}

.content-shell .wp-block-post-content > * + * {
  margin-top: 24px;
}

.content-shell .wp-block-post-content h2 {
  margin-top: 64px;
  font-size: 2rem;
  line-height: 1.2;
}

.content-shell .wp-block-post-content h3 {
  font-size: 1.15rem;
}

.seo-eyebrow {
  margin-bottom: 16px !important;
  color: #397819;
  font-size: 0.76rem;
  font-weight: 800;
}

.seo-lead {
  max-width: 900px;
  margin-top: 0 !important;
  color: var(--carbon);
  font-size: 1.15rem;
  line-height: 1.65;
}

.seo-hero-image {
  aspect-ratio: 16 / 7;
  margin-top: 42px !important;
  overflow: hidden;
  background: var(--mist);
}

.seo-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seo-summary {
  margin-top: 42px !important;
  padding: 28px 32px;
  border-top: 3px solid var(--signal);
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}

.seo-summary h2 {
  margin-top: 0 !important;
  font-size: 1.45rem !important;
}

.seo-feature-grid,
.seo-check-grid,
.seo-price-grid {
  gap: 18px;
  margin-top: 36px !important;
}

.seo-feature-grid > .wp-block-column,
.seo-check-grid > .wp-block-column,
.seo-price-grid > .wp-block-column {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.seo-feature-grid h3,
.seo-check-grid h3,
.seo-price-grid h2 {
  margin-top: 0 !important;
}

.seo-price-grid > .wp-block-column {
  display: flex;
  flex-direction: column;
}

.seo-price-grid .wp-block-buttons {
  margin-top: auto;
  padding-top: 24px;
}

.seo-price-label {
  color: #397819;
  font-size: 0.72rem;
  font-weight: 800;
}

.seo-price {
  margin: 8px 0 14px;
  color: var(--ink);
  font-size: 2.35rem;
  font-weight: 800;
  white-space: nowrap;
}

.seo-table {
  width: min(100%, var(--max));
  margin-top: 28px !important;
  overflow-x: auto;
  border: 1px solid var(--line);
}

.seo-table table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.seo-table th,
.seo-table td {
  padding: 15px 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.seo-table th {
  background: var(--carbon);
  color: var(--surface);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.seo-table tr:last-child td {
  border-bottom: 0;
}

.seo-table tr:nth-child(even) td {
  background: var(--mist);
}

.seo-comparison-table td:first-child {
  width: 28%;
  color: var(--ink);
  font-weight: 700;
}

.seo-process {
  margin-top: 30px !important;
  padding-left: 32px;
  border-left: 3px solid var(--signal);
}

.seo-process h3 {
  margin: 30px 0 8px;
}

.seo-process h3:first-child {
  margin-top: 0;
}

.seo-callout {
  margin-top: 34px !important;
  padding: 22px 24px;
  border-left: 4px solid var(--thermal);
  background: #fff3eb;
}

.seo-footnote {
  color: var(--steel);
  font-size: 0.78rem;
}

.seo-resource-links {
  margin-top: 72px !important;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.seo-resource-links h2 {
  margin-top: 0 !important;
  font-size: 1.45rem !important;
}

.seo-resource-links .wp-block-columns {
  gap: 40px;
}

.seo-resource-links p {
  color: var(--steel);
  font-size: 0.88rem;
}

.seo-resource-links a {
  color: var(--ink);
}

.seo-cta {
  margin-top: 64px !important;
  padding: 42px;
  background: var(--carbon);
  color: var(--surface);
}

.seo-cta h2 {
  margin-top: 0 !important;
  color: var(--surface);
}

.seo-cta p {
  color: #c2ccd1;
}

.shop-shell {
  width: min(calc(100% - 48px), var(--max));
  max-width: var(--max);
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
}

.woocommerce div.product > .woocommerce-product-gallery,
.woocommerce div.product > .summary {
  min-width: 0;
}

.woocommerce div.product > .woocommerce-tabs,
.woocommerce div.product > .related,
.woocommerce div.product > .upsells {
  grid-column: 1 / -1;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  float: none;
  width: auto;
}

.woocommerce div.product > .summary p.price,
.woocommerce div.product > .summary span.price {
  color: var(--ink);
  font-size: 2rem;
  font-weight: 800;
}

.woocommerce div.product > .woocommerce-tabs {
  margin-top: 16px;
}

.aeronest-spec-tables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 26px 0 22px;
}

.aeronest-product-specs {
  width: 100%;
  margin: 0;
  border: 1px solid var(--line);
  border-collapse: collapse;
  background: var(--surface);
}

.aeronest-product-specs thead th {
  padding: 16px 18px;
  border: 0;
  background: var(--carbon);
  color: var(--surface);
  font-size: 1rem;
  text-align: left;
}

.aeronest-product-specs tbody th,
.aeronest-product-specs tbody td {
  padding: 12px 14px;
  border: 0;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.aeronest-product-specs tbody th {
  width: 38%;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
}

.aeronest-product-specs tbody td {
  color: var(--steel);
  font-size: 0.8rem;
  line-height: 1.55;
}

.aeronest-product-specs tbody tr:nth-child(even) {
  background: var(--mist);
}

.aeronest-official-spec-note {
  max-width: 920px;
  margin: 0 0 42px;
  padding: 16px 18px;
  border-left: 3px solid var(--signal);
  background: var(--mist);
  color: var(--steel);
  font-size: 0.78rem;
}

.aeronest-official-spec-note a {
  color: var(--ink);
  font-weight: 700;
}

.woocommerce div.product > .related,
.woocommerce div.product > .upsells {
  margin-top: 18px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.woocommerce div.product > .related > h2,
.woocommerce div.product > .upsells > h2 {
  margin: 0 0 24px;
  font-size: 1.7rem;
}

.woocommerce div.product > .related ul.products,
.woocommerce div.product > .upsells ul.products {
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  justify-content: start;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce .quantity .qty,
.woocommerce select {
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 3px;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  float: none;
  width: auto;
  margin: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.woocommerce ul.products li.product a img {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0 0 20px;
  object-fit: contain;
  background: var(--mist);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 0;
  font-size: 1.08rem;
  line-height: 1.35;
}

.woocommerce ul.products li.product .price {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .primary-navigation {
    display: flex;
    flex: 0 0 auto;
    order: 3;
    margin-left: auto;
  }

  .primary-navigation .wp-block-navigation__responsive-container-open {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    min-width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--surface);
    color: var(--ink);
    cursor: pointer;
  }

  .primary-navigation .wp-block-navigation__responsive-container-open:hover,
  .primary-navigation .wp-block-navigation__responsive-container-open:focus-visible {
    border-color: var(--ink);
  }

  .primary-navigation .wp-block-navigation__responsive-container-open:focus-visible,
  .primary-navigation .wp-block-navigation__responsive-container-close:focus-visible {
    outline: 3px solid var(--signal);
    outline-offset: 3px;
  }

  .primary-navigation .wp-block-navigation__responsive-container:not(.is-menu-open) {
    display: none !important;
  }

  .primary-navigation .wp-block-navigation__responsive-container.is-menu-open {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: flex !important;
    width: 100vw;
    min-height: 100dvh;
    max-height: none;
    overflow-y: auto;
    padding: clamp(28px, 6vw, 64px);
    background: var(--ink) !important;
    color: var(--surface) !important;
  }

  .primary-navigation .wp-block-navigation__responsive-container-close {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    min-width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--surface);
    cursor: pointer;
  }

  .primary-navigation .wp-block-navigation__responsive-container-content,
  .primary-navigation .wp-block-navigation__responsive-container-content > .wp-block-navigation__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 12px;
  }

  .primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item {
    list-style: none;
  }

  .primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
    padding: 8px 0;
    color: var(--surface);
    font-size: 1rem;
  }

  .primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container {
    position: static !important;
    display: flex !important;
    width: min(100%, 300px) !important;
    height: auto !important;
    margin-top: 6px;
    padding: 12px 18px;
    overflow: visible !important;
    visibility: visible !important;
    opacity: 1 !important;
    border-color: #4a555c !important;
    background: transparent !important;
    box-shadow: none;
  }

  .project-flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-flow-step,
  .project-flow-step:first-child {
    padding: 26px 24px 28px;
    border-bottom: 1px solid #4a555c;
    border-left: 1px solid #4a555c;
  }

  .project-flow-step:nth-child(odd) {
    border-left: 0;
  }

  .project-flow-step.is-final {
    grid-column: 1 / -1;
    border-bottom: 0;
  }
}

@media (max-width: 782px) {
  :root {
    --header-height: 68px;
  }

  .alignwide,
  .catalogue .container,
  .shop-shell {
    width: min(calc(100% - 32px), var(--max));
  }

  .header-inner {
    min-height: var(--header-height);
    gap: 12px;
  }

  .brand-copy p,
  .header-actions {
    display: none;
  }

  .brand-lockup .custom-logo-link,
  .brand-lockup .custom-logo {
    width: 42px;
    height: 42px;
  }

  .primary-navigation.has-overlay-menu {
    flex: 0 0 auto;
    order: 3;
  }

  .primary-navigation .wp-block-navigation__responsive-container.is-menu-open {
    width: 100vw;
    min-height: 100dvh;
    max-height: none;
    padding: 28px 22px;
    background: var(--ink) !important;
    color: var(--surface) !important;
  }

  .primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
    padding: 8px 0;
    color: var(--surface);
    font-size: 1rem;
  }

  .aeronest-hero-block {
    min-height: calc(100svh - var(--header-height)) !important;
  }

  .aeronest-hero-block::after {
    background: linear-gradient(0deg, rgba(6, 9, 11, 0.9) 0%, rgba(6, 9, 11, 0.4) 78%, rgba(6, 9, 11, 0.18) 100%);
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 120px 0 50px;
  }

  .hero-content h1 {
    font-size: 2.65rem;
    line-height: 1.08;
  }

  .hero-copy {
    margin-top: 20px;
    font-size: 0.95rem;
  }

  .hero-actions,
  .hero-actions .wp-block-button,
  .hero-actions .wp-block-button__link {
    width: 100%;
  }

  .aeronest-trust-block {
    padding: 8px 0;
  }

  .aeronest-trust-block .wp-block-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aeronest-trust-block .wp-block-column,
  .aeronest-trust-block .wp-block-column:first-child {
    padding: 15px 12px;
    border: 0;
    border-bottom: 1px solid #31383d;
  }

  .aeronest-section,
  .package-section {
    padding: 72px 0;
  }

  .section-head h2,
  .project-flow-head h2,
  .aeronest-quote h2,
  .catalogue .section-head h2 {
    font-size: 2.15rem;
  }

  .content-shell > .wp-block-post-title {
    font-size: 2.45rem;
  }

  .content-shell .wp-block-post-content h2 {
    margin-top: 48px;
    font-size: 1.65rem;
  }

  .seo-lead {
    font-size: 1rem;
  }

  .seo-hero-image {
    aspect-ratio: 4 / 3;
  }

  .seo-summary,
  .seo-feature-grid > .wp-block-column,
  .seo-check-grid > .wp-block-column,
  .seo-price-grid > .wp-block-column,
  .seo-cta {
    padding: 24px;
  }

  .workflow-grid,
  .project-step-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 48px;
  }

  .software-grid {
    grid-template-columns: 1fr;
  }

  .home-resource-grid {
    gap: 26px;
  }

  .software-purpose {
    min-height: 0;
  }

  .workflow-grid > .wp-block-column,
  .workflow-grid > .wp-block-column:first-child,
  .project-step-grid > .wp-block-column,
  .project-step-grid > .wp-block-column:first-child {
    padding: 22px 16px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .step-index {
    margin-bottom: 24px;
  }

  .system-split,
  .aeronest-quote {
    gap: 0;
  }

  .system-image,
  .system-image img {
    min-height: 320px;
  }

  .system-copy {
    padding: 36px 24px;
  }

  .industry-grid {
    gap: 48px;
  }

  .project-flow-head {
    margin-bottom: 40px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-media {
    min-height: 0;
  }

  .product-body {
    padding: 28px 22px;
  }

  .secondary-products > .wp-block-group {
    align-items: flex-start;
  }

  .quote-actions {
    margin-top: 34px;
    padding: 34px 0 0;
    border-top: 1px solid #384148;
    border-left: 0;
  }

  .woocommerce div.product {
    grid-template-columns: 1fr;
  }

  .woocommerce div.product > .woocommerce-product-gallery,
  .woocommerce div.product > .summary,
  .woocommerce div.product > .woocommerce-tabs,
  .woocommerce div.product > .related,
  .woocommerce div.product > .upsells {
    grid-column: 1;
  }

  .aeronest-spec-tables {
    grid-template-columns: 1fr;
  }

  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .woocommerce div.product > .related ul.products,
  .woocommerce div.product > .upsells ul.products {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 540px) {
  .hero-content h1 {
    font-size: 2.25rem;
  }

  .aeronest-trust-block .wp-block-columns,
  .workflow-grid,
  .project-step-grid,
  .project-flow-steps,
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .project-flow-step,
  .project-flow-step:first-child,
  .project-flow-step:nth-child(odd) {
    min-height: 0;
    padding: 24px 20px 26px;
    border-bottom: 1px solid #4a555c;
    border-left: 0;
  }

  .project-flow-step.is-final {
    grid-column: auto;
    border-bottom: 0;
  }

  .project-flow-step h3 {
    margin-top: 22px;
  }

  .project-flow-step:nth-child(3) h3 {
    font-size: 1.08rem;
    white-space: normal;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-media {
    min-height: 0;
  }

  .footer-grid {
    gap: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .aeronest-hero-block .wp-block-cover__video-background {
    display: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* 2026-08 homepage refinement */
:root {
  --ink: #07141d;
  --carbon: #0c1d27;
  --surface: #ffffff;
  --mist: #f2f6f7;
  --signal: #58d6e6;
  --steel: #52636d;
  --line: #dce5e8;
}

body {
  letter-spacing: -0.005em;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.site-header,
.header-inner {
  min-height: 72px;
}

.brand-copy .wp-block-site-title {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.primary-navigation .wp-block-navigation-item__content {
  padding-block: 24px 22px;
  color: #354854;
  font-size: 0.8rem;
  font-weight: 600;
}

.primary-navigation .wp-block-navigation-item__content:hover,
.primary-navigation .wp-block-navigation-item__content:focus-visible {
  color: #167b8a;
}

.header-quote .wp-block-button__link,
.hero-actions .wp-block-button:first-child .wp-block-button__link {
  border-color: var(--signal);
  background: var(--signal);
  color: var(--ink);
  border-radius: 7px;
}

.header-quote .wp-block-button__link {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 0.78rem;
}

.aeronest-hero-block {
  min-height: 650px !important;
  background-color: var(--ink);
}

.aeronest-hero-block::after {
  background: linear-gradient(90deg, rgba(7, 20, 29, 0.92) 0%, rgba(7, 20, 29, 0.72) 46%, rgba(7, 20, 29, 0.12) 100%);
}

.hero-content {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
  padding: 102px 0 92px;
}

.hero-kicker,
.section-kicker,
.industry-label {
  margin-bottom: 15px;
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  text-transform: none;
}

.section-head .section-kicker {
  color: #167b8a;
}

.hero-content h1 {
  max-width: 770px;
  font-size: clamp(3.2rem, 4.4vw, 4rem);
  font-weight: 600;
  line-height: 1.01;
  letter-spacing: -0.05em;
}

.hero-copy {
  max-width: 620px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.72;
}

.hero-actions {
  margin-top: 30px;
}

.hero-actions .wp-block-button__link {
  min-height: 45px;
  padding-inline: 18px;
  border-radius: 7px;
  font-size: 0.81rem;
  font-weight: 700;
}

.aeronest-trust-block {
  padding-block: 20px;
  border-color: #1f333d;
  background: var(--ink);
}

.aeronest-trust-block .wp-block-column {
  border-color: #29404b;
}

.aeronest-trust-block p {
  font-size: 0.72rem;
}

.aeronest-section,
.package-section {
  padding-block: clamp(72px, 8vw, 96px);
}

.section-head {
  margin-bottom: 36px;
}

.section-head h2,
.deployment-section h2,
.aeronest-quote h2,
.project-flow-head h2 {
  max-width: 800px;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-head > p:last-child,
.project-flow-head > p:last-child {
  max-width: 680px;
  line-height: 1.7;
}

/* Installed Cases near the top of the homepage */
.home-cases-showcase {
  padding: clamp(72px, 9vw, 112px) 0;
  background: #f6f9fa;
}

.home-cases-inner {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.home-cases-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.56fr);
  align-items: end;
  gap: clamp(36px, 7vw, 96px);
  margin-bottom: 34px;
}

.home-cases-eyebrow {
  margin: 0 0 13px;
  color: #167b8a;
  font-size: 0.74rem;
  font-weight: 650;
}

.home-cases-heading h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.35rem, 3.9vw, 3.6rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.home-cases-heading p {
  margin: 0;
  color: var(--steel);
  font-size: 0.91rem;
  line-height: 1.65;
}

.home-cases-heading a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 19px;
  color: #167b8a;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.home-cases-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  gap: 16px;
}

.home-cases-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.home-case-card {
  position: relative;
  min-height: 260px;
  display: block;
  overflow: hidden;
  color: #fff;
  background: #102631;
  border-radius: 10px;
  text-decoration: none;
}

.home-case-featured {
  min-height: 550px;
}

.home-case-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(7, 20, 29, 0.88) 100%);
  content: "";
}

.home-case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

.home-case-card:hover img {
  transform: scale(1.025);
}

.home-case-overlay {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
}

.home-case-type {
  margin-bottom: 8px;
  color: #9be8f1;
  font-size: 0.7rem;
  font-weight: 600;
}

.home-case-card strong {
  font-size: clamp(1.35rem, 2.5vw, 2.25rem);
  font-weight: 600;
  line-height: 1.13;
  letter-spacing: -0.03em;
}

.home-cases-stack .home-case-card strong {
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
}

.home-case-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 14px;
  color: var(--signal);
  font-size: 0.76rem;
  font-weight: 650;
}

@media (max-width: 900px) {
  .home-cases-heading,
  .home-cases-grid {
    grid-template-columns: 1fr;
  }

  .home-cases-stack {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .home-case-featured {
    min-height: 480px;
  }
}

@media (max-width: 680px) {
  .aeronest-hero-block {
    min-height: 610px !important;
  }

  .aeronest-hero-block::after {
    background: linear-gradient(0deg, rgba(7, 20, 29, 0.94) 0%, rgba(7, 20, 29, 0.5) 82%, rgba(7, 20, 29, 0.25) 100%);
  }

  .hero-content {
    width: calc(100% - 32px);
    padding: 98px 0 46px;
  }

  .hero-content h1 {
    font-size: clamp(2.45rem, 11vw, 3.25rem);
    line-height: 1.04;
  }

  .home-cases-inner {
    width: calc(100% - 32px);
  }

  .home-cases-stack {
    grid-template-columns: 1fr;
  }

  .home-case-featured,
  .home-case-card {
    min-height: 340px;
  }
}
