/* ===== HERO SECTION ===== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.84;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.24) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 900px;
}

.hero-title {
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: 2px;
}

.hero-title .gold {
  color: #f1ad63;
}

.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 22px);
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 40px;
  line-height: 1.5;
}

.hero-subtitle span {
  color: #f1ad63;
  margin: 0 12px;
}

.hero-content-refined {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: min(1120px, 100%);
  max-width: 1120px;
  padding: 70px 24px 110px;
}

.hero-title-refined {
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(37px, 4.93vw, 63px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: 2.5px;
  margin-top: auto;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.hero-services {
  font-family: 'Tenor Sans', sans-serif;
  margin: 0 0 54px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2.07vw, 23px);
  line-height: 1.5;
}

.hero-services span {
  color: #f1ad63;
  margin: 0 10px;
}


.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: auto;
  padding-bottom: 20px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  width: 24px;
  height: 24px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== AGGREGATOR / CALCULATOR ===== */

.aggregator {
  padding: 80px 24px;
  background: #f8f8f8;
}

.aggregator-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.calc-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.calc-label-accent {
  color: #f1ad63;
}

.calc-label-spacer {
  visibility: hidden;
}

.calc-date-field {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 14px 16px 14px 46px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  background: #fff;
  transition: border-color 0.3s;
}

.calc-date-field:focus-within {
  border-color: #f1ad63;
}

.calc-date-field svg {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  color: #888;
  pointer-events: none;
  z-index: 1;
}

.calc-date-placeholder,
.calc-date-value {
  position: absolute;
  left: 46px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  line-height: 1.2;
  pointer-events: none;
  z-index: 1;
}

.calc-date-placeholder {
  color: #888;
}

.calc-date-value {
  color: #424242;
}

.calc-date-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
  opacity: 0;
  color: transparent;
  caret-color: transparent;
  z-index: 2;
}

.calc-date-input::-webkit-datetime-edit,
.calc-date-input::-webkit-datetime-edit-fields-wrapper,
.calc-date-input::-webkit-datetime-edit-text,
.calc-date-input::-webkit-datetime-edit-month-field,
.calc-date-input::-webkit-datetime-edit-day-field,
.calc-date-input::-webkit-datetime-edit-year-field {
  color: transparent;
}

.calc-date-input::-webkit-calendar-picker-indicator {
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.calc-date-input::-webkit-inner-spin-button {
  display: none;
}

.calc-passengers-wrap {
  display: flex;
  flex-direction: column;
}

.calc-passengers-control {
  display: inline-flex;
  align-items: center;
  width: auto;
  min-height: 52px;
  padding: 0 2px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  background: #fff;
  transition: border-color 0.3s;
}

.calc-passengers-control:focus-within,
.calc-passengers-control:hover {
  border-color: #f1ad63;
}

.calc-passengers-btn {
  width: 36px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #3a3a3a;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s, background 0.3s;
}

.calc-passengers-btn:hover {
  color: #f1ad63;
}

.calc-passengers-input {
  min-width: 68px;
  padding: 0 2px;
  color: #3a3a3a;
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

@media (min-width: 1200px) {
  .calc-grid {
    grid-template-columns: minmax(150px, 1.28fr) minmax(150px, 1.28fr) minmax(175px, 1.15fr) minmax(175px, 1.15fr) auto;
    align-items: end;
  }

  .calc-field-date {
    min-width: 0;
  }

  .calc-field-pax {
    justify-self: start;
  }
}

.calc-result {
  background: #fdf6e3;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin-bottom: 32px;
}

.calc-result-value {
  font-size: 42px;
  font-weight: 900;
  color: #f1ad63;
  margin: 0 0 8px;
}

.calc-result-label {
  font-size: 15px;
  color: #888;
  margin: 0;
}

.calc-result-meta {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.calc-result-meta-item {
  font-size: 14px;
  color: #666;
}

.calc-result-meta-item strong {
  color: #424242;
  font-weight: 700;
}

.leads-form {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 32px;
  color: #fff;
}

.leads-form h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #fff;
}

.leads-form p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 24px;
}

.leads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.leads-grid .form-input,
.leads-grid .form-textarea {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.leads-grid .form-input:focus,
.leads-grid .form-textarea:focus {
  border-color: #f1ad63;
}

.leads-grid .form-input::placeholder,
.leads-grid .form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.leads-grid .form-input:-webkit-autofill,
.leads-grid .form-textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #2a2a2a inset !important;
  -webkit-text-fill-color: #fff !important;
}

.leads-enter {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.leads-enter-start {
  opacity: 0;
  transform: translateY(-14px);
}

.leads-enter-end {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PORTHOLE SECTION ===== */

.porthole-section {
  padding: 40px 24px 80px;
  background: #f8f8f8;
}

.porthole-section .section-title {
  color: #3a3a3a;
}

.porthole-section .section-subtitle {
  color: #666;
}

.porthole-grid {
  max-width: 1280px;
  margin: 0 auto;
}

.porthole-item {
  background: #424242;
}

.fleet-mini-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.fleet-mini-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  padding-top: 16px;
  padding-bottom: 16px;
}

.fleet-mini-card.aircraft-mini {
  border-bottom: none;
}

/* ===== AIRCRAFT LISTING ===== */

.aircraft-listing {
  padding: 80px 24px;
  background: #f8f8f8;
}

.aircraft-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.fleet-card {
  display: block;
}

.fleet-detail-specs {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.fleet-detail-spec-row {
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid #efefef;
}

.fleet-detail-spec-row:first-child {
  padding-top: 0;
}

.fleet-detail-spec-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.fleet-detail-spec-label {
  max-width: 48%;
}

.fleet-detail-spec-value {
  text-align: right;
}

.empty-legs-city {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #3a3a3a;
}

.empty-legs-model {
  color: #3a3a3a;
}

.empty-legs-price {
  color: #f1ad63;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.15;
}

.empty-legs-date-field {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 52px;
  min-width: 180px;
  padding: 14px 16px 14px 46px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.3s;
}

.empty-legs-date-field:focus-within,
.empty-legs-date-field:hover {
  border-color: #f1ad63;
}

.empty-legs-date-field svg {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  color: #888;
  pointer-events: none;
}

.empty-legs-date-placeholder {
  position: absolute;
  left: 46px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 15px;
  line-height: 1.2;
  pointer-events: none;
}

.empty-legs-date-placeholder.has-value {
  color: #424242;
}

.empty-legs-date-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.empty-legs-date-input::-webkit-calendar-picker-indicator {
  opacity: 0;
  width: 0;
  height: 0;
  display: none;
}

.empty-legs-date-input::-webkit-inner-spin-button,
.empty-legs-date-input::-webkit-clear-button {
  display: none;
}

/* ===== CONTACTS PAGE ===== */

.contacts-section {
  padding: 140px 24px 80px;
  min-height: 100vh;
}

.contacts-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contacts-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contacts-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.contacts-form-card h2 {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #3a3a3a;
}

.contacts-form-card > p {
  font-size: 15px;
  color: #888;
  margin: 0 0 32px;
}

/* ===== AIRCRAFT CLASSES ===== */

.classes-page {
  background: #f8f8f8;
}

.classes-intro,
.classes-section {
  padding: 0 24px 80px;
}

.classes-intro-inner,
.classes-section-head,
.classes-grid {
  max-width: 1280px;
  margin: 0 auto;
}

.classes-intro .section-title,
.classes-section-head .section-title {
  text-align: left;
  max-width: 980px;
}

.classes-intro .gold-line,
.classes-section-head .gold-line {
  margin-left: 0;
  margin-right: 0;
}

.classes-intro-text {
  max-width: 980px;
  margin-top: 32px;
  display: grid;
  gap: 16px;
}

.classes-intro-text p {
  margin: 0;
  color: #666;
  font-size: 17px;
  line-height: 1.7;
}

.classes-section-head {
  margin-bottom: 40px;
}

.classes-section-head .section-subtitle {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 760px;
}

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

.class-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.class-card-head {
  margin-bottom: 24px;
}

.class-card-title {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.15;
  color: #424242;
}

.class-card-desc {
  margin: 0;
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

.class-card-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.class-stat {
  padding: 16px 18px;
  border-radius: 14px;
  background: #fafafa;
  border: 1px solid #efefef;
}

.class-stat-label {
  margin-bottom: 8px;
  color: #888;
  font-size: 13px;
  line-height: 1.45;
}

.class-stat-value {
  color: #424242;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
}

.class-card-meta {
  display: grid;
  gap: 18px;
}

.class-card-meta-label {
  margin-bottom: 8px;
  color: #424242;
  font-size: 14px;
  font-weight: 600;
}

.class-card-meta-text {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

/* ===== AIRCRAFT SALE ===== */

.sale-section {
  padding: 140px 24px 72px;
  min-height: 100vh;
  background: #f8f8f8;
}

main > .sale-section:first-child {
  padding-top: 64px;
}

.sale-filters {
  max-width: 1280px;
  margin: 0 auto 40px;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.sale-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.sale-detail-header {
  max-width: 1280px;
  margin: 0 auto;
}

.sale-detail-header .section-title {
  text-align: left;
  font-size: clamp(24px, 3.2vw, 34px);
}

.sale-detail-header .gold-line {
  margin-left: 0;
  margin-right: 0;
}

.sale-detail-wrap {
  max-width: 1280px;
  margin: 40px auto 56px;
}

.sale-detail-grid {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 40px;
  align-items: start;
}

.sale-specs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sale-spec-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 16px;
  line-height: 1.35;
}

.sale-spec-label {
  color: #424242;
  font-weight: 600;
}

.sale-spec-value {
  color: #424242;
  font-weight: 400;
}

.sale-spec-description {
  margin-top: 8px;
  color: #888;
  font-size: 14px;
  line-height: 1.6;
}

.sale-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sale-gallery-frame {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #ececec;
  aspect-ratio: 16 / 10;
}

.sale-gallery-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sale-gallery-enter,
.sale-gallery-leave {
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.sale-gallery-enter-start,
.sale-gallery-leave-end {
  opacity: 0;
  transform: scale(1.025);
}

.sale-gallery-enter-end,
.sale-gallery-leave-start {
  opacity: 1;
  transform: scale(1);
}

.sale-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #424242;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.sale-gallery-nav:hover {
  background: rgba(255, 255, 255, 0.58);
}

.sale-gallery-nav.prev {
  left: 14px;
}

.sale-gallery-nav.next {
  right: 14px;
}

.sale-gallery-nav svg {
  width: 18px;
  height: 18px;
}

.sale-gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.sale-gallery-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d8d8d8;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.sale-gallery-dot.active {
  background: #f1ad63;
}

.sale-gallery-dot:hover {
  transform: scale(1.08);
}

@media (max-width: 1024px) {
  .classes-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .sale-detail-grid {
    grid-template-columns: 1fr;
  }

  .fleet-detail-spec-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .fleet-detail-spec-label,
  .fleet-detail-spec-value {
    max-width: none;
    text-align: left;
  }
}

.prefooter-pattern {
  /*background-color: #f8f8f8;*/
  /*background-image: radial-gradient(ellipse 100% 72% at right bottom, rgba(248, 248, 248, 0) 0%, rgba(248, 248, 248, 0.03) 20%, rgba(248, 248, 248, 0.09) 36%, rgba(248, 248, 248, 0.18) 50%, rgba(248, 248, 248, 0.32) 63%, rgba(248, 248, 248, 0.54) 75%, #f8f8f8 86%), url('/images/squares_bg.png');*/
  background-image: linear-gradient(to bottom, rgb(248, 248, 248) 0%, rgb(248, 248, 248) 50%, transparent 75%, transparent 100%), url("/images/squares_bg.png");
  background-repeat: no-repeat, no-repeat;
  background-position: right bottom, right bottom;
  background-size: 100% 100%, 120% auto;
}

.prefooter-pattern .porthole-section,
.prefooter-pattern .final-cta {
  background: transparent !important;
}

/* ===== FOOTER ===== */

.site-footer {
  background: #424242;
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 24px 34px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-main-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-brand-title {
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

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

.footer-links-grid a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.3;
  transition: color 0.2s;
}

.footer-links-grid a:hover {
  color: #f1ad63;
}

.footer-side-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.footer-subcol {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.footer-subcol h4 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 16px;
}

.footer-subcol p {
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.footer-meta-link,
.footer-meta-text {
  margin-top: auto;
  padding-top: 36px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
}

.footer-meta-link:hover {
  color: rgba(255, 255, 255, 0.68);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
  transition: color 0.2s;
}

.footer-contact-item:hover {
  color: #f1ad63;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (max-width: 1180px) {
  .footer-inner {
    gap: 36px;
  }

  .footer-side-col {
    gap: 24px;
  }

  .footer-brand-title {
    font-size: clamp(30px, 3.8vw, 40px);
  }
}

@media (max-width: 1080px) and (min-width: 769px) {
  .prefooter-pattern {
    background-size: 100% 100%, 130% auto;
  }
}

@media (max-width: 980px) {
  .porthole-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-side-col {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-main-col {
    gap: 22px;
  }

  .footer-meta-link,
  .footer-meta-text {
    margin-top: 0;
    padding-top: 18px;
  }
}

@media (max-width: 768px) {
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .calc-card {
    padding: 24px;
  }

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

  .classes-intro,
  .classes-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .class-card {
    padding: 22px;
  }

  .class-card-title {
    font-size: 22px;
  }

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

  .hero-content-refined {
    padding: 70px 20px 88px;
  }

  .hero-title-refined {
    font-size: clamp(29px, 8.5vw, 44px);
    letter-spacing: 1.2px;
  }

  .hero-services {
    font-size: 18px;
  }

  .prefooter-pattern {
    background-image: linear-gradient(to bottom, rgb(248, 248, 248) 0%, rgb(248, 248, 248) 50%, transparent 100%), url("/images/squares_bg_mobile.png");
    background-repeat: no-repeat, no-repeat;
    background-position: right bottom, right bottom;
    background-size: 100% 100%, 100% auto;

 }


  .site-footer {
    padding: 44px 20px 28px;
  }

  .footer-inner {
    gap: 28px;
  }

  .footer-brand-title {
    font-size: clamp(28px, 9vw, 36px);
    letter-spacing: 0.06em;
  }

  .footer-links-grid {
    gap: 10px 20px;
  }

  .footer-side-col {
    gap: 24px;
  }

  .aircraft-grid,
  .sale-grid,
  .fleet-mini-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 512px) {
  .hero-bg img {
    object-position: 32% center;
  }

  .footer-links-grid,
  .footer-side-col {
    grid-template-columns: 1fr;
  }

  .footer-links-grid a,
  .footer-contact-item,
  .footer-subcol p {
    font-size: 14px;
  }

  .footer-meta-link,
  .footer-meta-text {
    padding-top: 14px;
  }
}
