.cost-teaser-section {
  background:
    linear-gradient(135deg, rgba(23, 50, 77, 0.08), rgba(212, 154, 69, 0.11) 52%, rgba(255, 255, 255, 0.9)),
    var(--white);
}

.cost-hero {
  background:
    linear-gradient(90deg, rgba(9, 22, 35, 0.98) 0%, rgba(15, 34, 53, 0.88) 34%, rgba(15, 34, 53, 0.34) 70%, rgba(15, 34, 53, 0.18) 100%),
    linear-gradient(180deg, rgba(15, 34, 53, 0.2), rgba(15, 34, 53, 0.62)),
    url("assets/global-simulator-hero.png") center / cover;
}

.cost-teaser-shell,
.cost-page-shell {
  width: min(1220px, 100%);
  margin: 0 auto;
}

.cost-teaser-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
}

.cost-teaser-section .cost-teaser-shell {
  grid-template-columns: 1fr;
}

.cost-teaser-copy h2,
.cost-page-intro h2 {
  color: var(--navy);
}

.cost-teaser-copy p,
.cost-page-intro p,
.cost-smallprint,
.cost-table-note {
  color: var(--muted);
  line-height: 1.75;
}

.cost-mini-calculator,
.cost-calculator-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(17, 31, 48, 0.09);
}

.cost-mini-calculator {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

.cost-mini-grid,
.cost-control-grid {
  display: grid;
  gap: 14px;
}

.cost-mini-calculator label,
.cost-calculator-panel label {
  display: grid;
  gap: 7px;
}

.cost-mini-calculator label span,
.cost-calculator-panel label span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.cost-mini-calculator select,
.cost-calculator-panel select {
  width: 100%;
  height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.cost-mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cost-control-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.cost-result {
  display: grid;
  gap: 7px;
  padding: 18px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: #eef4f7;
}

.cost-result span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cost-result strong {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.05;
}

.cost-result small {
  color: var(--muted);
  line-height: 1.55;
}

.cost-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cost-calculator-panel .secondary-cta {
  border-color: var(--line);
  color: var(--navy);
  background: var(--white);
}

.cost-calculator-panel .secondary-cta:hover,
.cost-calculator-panel .primary-cta:hover {
  filter: brightness(0.98);
}

.cost-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  padding: clamp(56px, 7vw, 92px) clamp(18px, 5vw, 72px);
  background: var(--paper);
}

.cost-calculator-panel {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 38px);
}

.cost-output-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.cost-output-card {
  min-height: 138px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfc;
}

.cost-output-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cost-output-card strong {
  display: block;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.08;
}

.cost-output-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.cost-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 22px;
  align-items: start;
}

.cost-table-section,
.cost-info-panel,
.cost-side-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(17, 31, 48, 0.06);
}

.cost-table-section,
.cost-info-panel,
.cost-side-panel {
  padding: clamp(22px, 4vw, 34px);
}

.cost-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cost-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: var(--white);
}

.cost-table th,
.cost-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.cost-table th {
  color: var(--navy);
  background: #eef4f7;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cost-table td {
  color: var(--muted);
  line-height: 1.55;
}

.cost-table td:first-child {
  color: var(--ink);
  font-weight: 900;
}

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

.cost-info-panel h3,
.cost-side-panel h3 {
  color: var(--navy);
}

.cost-info-panel ul,
.cost-side-panel ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.cost-side-panel {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 16px;
}

.cost-faq {
  display: grid;
  gap: 12px;
}

.aircraft-cost-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  gap: 18px;
  margin-bottom: 24px;
}

.aircraft-cost-card,
.aircraft-fit-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(17, 31, 48, 0.06);
}

.aircraft-cost-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.aircraft-cost-card div,
.aircraft-fit-card {
  padding: clamp(20px, 3vw, 30px);
  background: var(--white);
}

.aircraft-cost-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.aircraft-cost-card strong {
  display: block;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.5vw, 36px);
  line-height: 1.08;
}

.aircraft-fit-card h2,
.aircraft-cost-article h2 {
  color: var(--navy);
}

.aircraft-fit-card p,
.aircraft-cost-article p,
.aircraft-cost-article li {
  color: var(--muted);
  line-height: 1.75;
}

.training-investment-card {
  margin-bottom: 24px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(17, 31, 48, 0.06);
}

.training-investment-card h2 {
  margin-bottom: 18px;
  color: var(--navy);
}

.training-investment-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}

.training-investment-card dl div {
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  background: #eef4f7;
}

.training-investment-card dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.training-investment-card dd {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
  line-height: 1.45;
}

.training-investment-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.aircraft-cost-article {
  display: grid;
  gap: 18px;
}

.aircraft-cost-article section {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(17, 31, 48, 0.06);
}

.aircraft-cost-article ul {
  margin: 0;
  padding-left: 20px;
}

.aircraft-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(184, 64, 50, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(184, 64, 50, 0.08), rgba(212, 154, 69, 0.1)),
    var(--white);
  box-shadow: 0 14px 36px rgba(17, 31, 48, 0.06);
}

.aircraft-cta-panel h2 {
  margin-bottom: 8px;
  color: var(--navy);
}

.aircraft-cta-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.aircraft-compare-panel {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(17, 31, 48, 0.06);
}

.aircraft-compare-panel h2 {
  margin-bottom: 10px;
  color: var(--navy);
}

.aircraft-compare-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.aircraft-compare-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.aircraft-compare-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  background: #eef4f7;
  font-weight: 900;
}

.aircraft-budget-section,
.aircraft-detail-section {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(17, 31, 48, 0.06);
}

.aircraft-budget-section h2,
.aircraft-detail-section h2 {
  margin-bottom: 0;
  color: var(--navy);
}

.aircraft-budget-section > p,
.aircraft-detail-section > p,
.aircraft-card-disclaimer {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.aircraft-budget-grid,
.aircraft-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.aircraft-budget-card,
.aircraft-detail-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 14px;
  padding: clamp(18px, 2.4vw, 24px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.aircraft-budget-card h3,
.aircraft-detail-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
}

.aircraft-budget-card dl,
.aircraft-detail-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.aircraft-budget-card div,
.aircraft-detail-card div {
  display: grid;
  gap: 4px;
}

.aircraft-budget-card dt,
.aircraft-detail-card dt,
.aircraft-card-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.aircraft-budget-card dd,
.aircraft-detail-card dd {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
  line-height: 1.45;
}

.aircraft-budget-card ul,
.aircraft-detail-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.aircraft-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.aircraft-card-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  background: var(--white);
  font-weight: 900;
}

.aircraft-card-actions a:first-child {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

@media (max-width: 980px) {
  .aircraft-cost-summary,
  .aircraft-cta-panel {
    grid-template-columns: 1fr;
  }

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

  .aircraft-budget-grid,
  .aircraft-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {
  .cost-control-grid,
  .cost-output-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .cost-teaser-shell,
  .cost-content-grid,
  .cost-info-grid {
    grid-template-columns: 1fr;
  }

  .cost-side-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .cost-mini-grid,
  .cost-control-grid,
  .cost-output-grid,
  .training-investment-card dl,
  .aircraft-budget-grid,
  .aircraft-detail-grid {
    grid-template-columns: 1fr;
  }
}

/* Premium advisory visual alignment */
.cost-teaser-card,
.cost-side-panel,
.cost-calculator-card,
.cost-output-card,
.cost-info-card,
.cost-mini-card,
.training-investment-card,
.aircraft-cost-card,
.aircraft-budget-card,
.aircraft-detail-card,
.aircraft-cta-panel,
.sample-card {
  border-color: var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.cost-action-row a,
.aircraft-card-actions a,
.cost-submit {
  border-radius: 12px;
  font-weight: 700;
}

.cost-action-row a:first-child,
.aircraft-card-actions a:first-child,
.cost-submit {
  color: var(--navy);
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 14px 34px rgba(8, 18, 31, 0.14);
}

.cost-mini-card,
.aircraft-detail-card,
.sample-card {
  background: var(--white);
}
