/* ==========================================================
   AMM WEB - CONSOLIDATED STYLES
   Shared by marketplaces.html, aircraft.html and engine.html
   Includes retained future-page styles: membership, pricing,
   marketplace pricing and asset sourcing.
   ========================================================== */


/* 1. GLOBAL / SHARED */
:root {
      --amm-dark: #030E1A;
      --amm-navy: #030E1A;
      --amm-card: #030E1A;
      --amm-orange: #f5a400;
      --amm-orange-2: #ffb526;
      --amm-light: #ffffff;
      --amm-muted: #d6dde6;
      --amm-border: rgba(255,255,255,.16);
    }

    body {
      margin: 0;
      font-family: "Inter", "Segoe UI", Arial, sans-serif;
      color: #111;
      background: #f6f7f9;
    }

    a {
      text-decoration: none;
    }

    p {
        font-size: 14px;
        font-weight: 400;
    }

    /* HEADER */
    .amm-header {
      background: #030E1A;
      border-bottom: 1px solid var(--amm-border);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .amm-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #fff;
      font-weight: 800;
      font-size: 30px;
      letter-spacing: -1px;
    }

    .amm-logo-mark {
      width: 240px;
      height: 120px;
      background: url("/v2/assets/logos/amm-logo-dark.jpg") center center/cover no-repeat;
    }

    .amm-logo small {
      display: block;
      font-size: 9px;
      font-weight: 600;
      letter-spacing: .6px;
      color: var(--amm-muted);
      margin-top: -6px;
    }

    .navbar-nav .nav-link {
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      margin: 0 10px;
      padding: 26px 0;
      position: relative;
    }

    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link:hover {
      color: #fff;
    }

    .navbar-nav .nav-link.active::after,
    .navbar-nav .nav-link:hover::after {
      content: "";
      position: absolute;
      height: 3px;
      background: var(--amm-orange);
      left: 0;
      right: 0;
      bottom: 16px;
      border-radius: 4px;
    }

    .btn-amm-outline {
      color: #fff;
      border: 1px solid rgba(255,255,255,.45);
      font-weight: 700;
      border-radius: 4px;
      padding: 10px 24px;
      font-size: 15px;
    }

    .btn-amm-outline:hover {
      background: #fff;
      color: var(--amm-dark);
    }

    .btn-amm-primary {
      background: linear-gradient(90deg, var(--amm-orange), var(--amm-orange-2));
      color: #07111f;
      font-weight: 800;
      border: none;
      border-radius: 4px;
      padding: 11px 24px;
      font-size: 15px;
      box-shadow: 0 10px 25px rgba(245,164,0,.25);
    }

    .btn-amm-primary:hover {
      background: #ffc14a;
      color: #07111f;
    }

    /* HERO */
    .hero-slider {
      position: relative;
      background: var(--amm-dark);
      color: #fff;
      overflow: hidden;
    }

    .hero-slide {
      min-height: 650px;
      display: flex;
      align-items: center;
      background:
        linear-gradient(90deg, rgba(2,11,22,.96) 0%, rgba(2,11,22,.78) 35%, rgba(2,11,22,.18) 70%),
        url("/v2/assets/images/hero-aircraft.png") center right / cover no-repeat;
    }

    .hero-title {
      font-size: clamp(42px, 6vw, 78px);
      font-weight: 900;
      line-height: .95;
      letter-spacing: -2px;
      text-transform: uppercase;
    }

    .hero-title span {
      color: var(--amm-orange);
    }

    .hero-subtitle {
      color: var(--amm-muted);
      font-size: 20px;
      max-width: 560px;
      margin-top: 24px;
      line-height: 1.45;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 34px;
    }

    .hero-product-menu {
      background: rgba(3, 14, 27, .92);
      border: 1px solid var(--amm-border);
      border-radius: 8px;
      padding: 16px;
      max-width: 320px;
      margin-top: 0px;
      backdrop-filter: blur(10px);
    }

    .hero-product-menu .item {
      display: flex;
      gap: 12px;
      color: #fff;
      padding: 10px 4px;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .hero-product-menu .item:last-child {
      border-bottom: 0;
    }

    .hero-product-menu i {
      color: var(--amm-orange);
      font-size: 20px;
      width: 24px;
    }

    .hero-product-menu strong {
      display: block;
      font-size: 13px;
      text-transform: uppercase;
    }

    .hero-product-menu small {
      color: var(--amm-muted);
    }

    .discount-ribbon {
      position: absolute;
      top: 95px;
      right: 70px;
      width: 120px;
      background: #d71920;
      color: #fff;
      text-align: center;
      padding: 18px 10px 26px;
      font-weight: 900;
      clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 83%, 0 100%);
    }

    .discount-ribbon span {
      display: block;
      font-size: 40px;
      line-height: 1;
    }

    /* STATS */
    .stats-section {
      margin-top: -48px;
      position: relative;
      z-index: 5;
    }

    .stats-box {
      background: #061728;
      border: 1px solid var(--amm-border);
      border-radius: 8px;
      box-shadow: 0 20px 50px rgba(0,0,0,.25);
      overflow: hidden;
    }

    .stat-item {
      color: #fff;
      text-align: center;
      padding: 26px 12px;
      border-right: 1px solid rgba(255,255,255,.12);
    }

    .stat-item:last-child {
      border-right: 0;
    }

    .stat-item i {
      color: var(--amm-orange);
      font-size: 28px;
      margin-bottom: 10px;
    }

    .stat-item strong {
      display: block;
      font-size: 24px;
      font-weight: 900;
    }

    .stat-item small {
      color: var(--amm-muted);
      font-size: 11px;
      text-transform: uppercase;
      font-weight: 700;
    }

    /* SECTION COMMON */
    .section {
      padding: 70px 0;
    }

    .section-title {
      text-align: center;
      font-size: 26px;
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 36px;
    }

    .section-title::after {
      content: "";
      display: block;
      width: 48px;
      height: 3px;
      background: var(--amm-orange);
      margin: 12px auto 0;
      border-radius: 5px;
    }

    /* TRUST LOGOS */
    .trust-logos {
      background: #fff;
      padding: 34px 0;
    }

    .logo-strip {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 34px;
      align-items: center;
      color: #5d6875;
      font-weight: 800;
    }

    /* PRODUCT CARDS */
    .product-card {
      background: #fff;
      border: 1px solid #e5e8ee;
      border-radius: 12px;
      overflow: hidden;
      height: 100%;
      box-shadow: 0 8px 24px rgba(9, 24, 44, .08);
      transition: .25s ease;
    }

    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 36px rgba(9, 24, 44, .13);
    }

    .product-image {
      height: 190px;
      background: linear-gradient(135deg, #eaf0f7, #fff);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--amm-orange);
      font-size: 58px;
    }

    .product-body {
      padding: 24px;
    }

    .product-body h3 {
      font-size: 20px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .product-body ul {
      padding-left: 18px;
      margin: 18px 0 24px;
      color: #3b4652;
      font-size: 14px;
    }

    /* CTA */
    .cta-banner {
      background:
        linear-gradient(90deg, rgba(2,11,22,.96), rgba(2,11,22,.55)),
        url("/v2/assets/images/cta-aircraft.png") center right / cover no-repeat;
      color: #fff;
      padding: 80px 0;
    }

    .cta-banner h2 {
      font-size: clamp(34px, 5vw, 52px);
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1;
    }

    .cta-banner h2 span {
      color: var(--amm-orange);
    }

    /* FOOTER */
    .amm-footer {
      background: #020b16;
      color: #fff;
      padding-top: 60px;
    }

    .amm-footer p,
    .amm-footer a {
      color: var(--amm-muted);
      font-size: 14px;
    }

    .amm-footer a:hover {
      color: var(--amm-orange);
    }

    .footer-title {
      font-size: 14px;
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.1);
      padding: 18px 0;
      margin-top: 40px;
      color: #9ba7b5;
      font-size: 13px;
      text-align: center;
    }

    @media (max-width: 991px) {
      .hero-slide {
        min-height: auto;
        padding: 90px 0 130px;
      }

      .discount-ribbon {
        display: none;
      }

      .stat-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.1);
      }

      .navbar-nav .nav-link {
        padding: 12px 0;
      }
    }


/* 2. MEMBERSHIP / PRICING CARDS (retained for future pages) */
/* MEMBERSHIP / PRICING CARDS */
    .membership-section {
    padding: 10px 0 70px;
    background: #f6f7f9;
    }

    .membership-header {
    position: relative;
    margin-bottom: 24px;
    }

    .membership-title {
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
    }

    .billing-toggle {
    position: absolute;
    right: 0;
    top: 2px;
    display: flex;
    gap: 18px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    }

    .billing-toggle span::before {
    content: "";
    width: 13px;
    height: 13px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
    vertical-align: -2px;
    border: 2px solid #d8dce3;
    background: #fff;
    }

    .billing-toggle .active::before {
    border-color: var(--amm-orange);
    background: radial-gradient(circle, var(--amm-orange) 45%, #fff 50%);
    }

    .membership-section .row > [class*="col-"] {
    display: flex;
    }

    .price-card {
    position: relative;
    width: 100%;
    height: 400px;
    padding: 30px 28px 34px;
    border-radius: 9px;
    text-align: center;
    color: #fff;
    overflow: visible;
    box-shadow: 0 12px 30px rgba(9, 24, 44, .16);

    display: flex;
    flex-direction: column;
    align-items: center;
    }

    .price-blue {
    background: linear-gradient(145deg, #0055aa, #003b84);
    }

    .price-dark {
    background: linear-gradient(145deg, #050b12, #0b0f13);
    }

    .price-gold {
    color: #111827;
    background: linear-gradient(145deg, #ffd36f, #fff1c7 45%, #ffc44c);
    }

    .price-enterprise {
    background: linear-gradient(145deg, #202020, #3a3a3a);
    }

    .price-card h3 {
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0 0 12px;
    height: 28px;
    line-height: 28px;
    }

    .price-card i {
    font-size: 34px;
    margin-bottom: 14px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    }

    .price-desc {
    font-size: 13px;
    font-weight: 800;
    line-height: 1.55;
    height: 62px;
    margin-bottom: 16px;
    }

    .price-main {
    height: 92px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 18px;
    }

    .price-label {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    opacity: .75;
    height: 18px;
    line-height: 18px;
    margin-bottom: 4px;
    }

    .price-value {
    font-size: 42px;
    font-weight: 900;
    line-height: 44px;
    height: 44px;
    }

    .price-value small {
    font-size: 15px;
    font-weight: 900;
    }

    .price-note {
    font-size: 13px;
    font-weight: 700;
    height: 18px;
    line-height: 18px;
    margin-top: 4px;
    opacity: .85;
    }

    .price-btn {
    width: 100%;
    margin-top: 8px;
    border-radius: 5px;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    }

    .price-btn-light {
    background: #fff;
    color: #07111f;
    border: 1px solid #fff;
    }

    .price-btn-outline {
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255,255,255,.65);
    }

    .price-btn-orange {
    color: #07111f;
    background: var(--amm-orange);
    border: 1px solid var(--amm-orange);
    }

    .after-btn-note {
    font-size: 12px;
    font-weight: 700;
    margin-top: 12px;
    min-height: 18px;
    opacity: .85;
    }

    /* Attached-design ribbon */
    .most-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    height: 28px;
    min-width: 164px;
    background: var(--amm-orange);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 6px 14px rgba(245,164,0,.25);
    }

    .most-popular::before,
    .most-popular::after {
    content: "";
    position: absolute;
    bottom: -10px;
    border-top: 10px solid #d88a00;
    }

    .most-popular::before {
    left: 0;
    border-left: 14px solid transparent;
    }

    .most-popular::after {
    right: 0;
    border-right: 14px solid transparent;
    }

    .special-offer {
    color: var(--amm-orange);
    font-size: 25px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.18;
    padding-top: 15px;
    }

    @media (max-width: 991px) {
    .membership-header {
        display: block;
    }

    .billing-toggle {
        position: static;
        justify-content: center;
        margin-top: 16px;
    }

    .price-card {
        height: 380px;
    }
    }


/* 3. PRICING PAGE (retained for future pages) */
.pricing-page{background:#f5f6f8;}

  .pricing-hero{
    position:relative;
    min-height:480px;
    color:#fff;
    display:flex;
    align-items:center;
    background:
      linear-gradient(90deg,rgba(3,14,26,.98) 0%,rgba(3,14,26,.82) 34%,rgba(3,14,26,.16) 74%),
      url("/v2/assets/images/hero-aircraft.png") center right/cover no-repeat;
  }

  .pricing-hero h1{
    font-size:clamp(34px,4.5vw,52px);
    font-weight:900;
    margin-bottom:6px;
  }

  .pricing-hero h2{
    color:var(--amm-orange);
    font-size:22px;
    font-weight:900;
    line-height:1.25;
    max-width:430px;
  }

  .pricing-hero ul{
    list-style:none;
    padding:0;
    margin:18px 0 18px;
  }

  .pricing-hero li{
    color:#fff;
    font-size:13px;
    font-weight:800;
    margin-bottom:7px;
  }

  .pricing-hero li i{color:var(--amm-orange);margin-right:8px;}

  .pricing-discount{
    position:absolute;
    top:25px;
    right:55px;
    width:90px;
    height:100px;
    background:#c9141b;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-size:26px;
    font-weight:900;
    line-height:1.05;
  }

  .pricing-title-bar{
    text-align:center;
    font-size:18px;
    font-weight:900;
    text-transform:uppercase;
    margin:18px 0 12px;
  }

  .plan-card{
    height:250px;
    background:#fff;
    border:1px solid #d9dee7;
    border-radius:6px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(9,24,44,.08);
  }

  .plan-head{
    height:54px;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    font-size:17px;
    font-weight:900;
    text-transform:uppercase;
  }

  .plan-blue{background:#075db8;}
  .plan-dark{background:#05080c;}
  .plan-orange{background:var(--amm-orange);color:#07111f;}
  .plan-gray{background:#45484c;}

  .plan-body{
    padding:18px 26px;
  }

  .plan-body ul{
    list-style:none;
    padding:0;
    margin:0 0 16px;
  }

  .plan-body li{
    font-size:12px;
    font-weight:700;
    margin-bottom:9px;
  }

  .plan-body li i{
    color:#1d6db5;
    width:18px;
  }

  .plan-price{
    text-align:center;
    font-size:21px;
    font-weight:900;
    margin-bottom:12px;
  }

  .pricing-section-box{
    border-radius:6px;
    overflow:hidden;
    margin-top:14px;
    border:1px solid #d9dee7;
    background:#fff;
  }

  .price-section-head{
    padding:14px 18px 8px;
  }

  .price-section-head h3{
    font-size:21px;
    font-weight:900;
    text-transform:uppercase;
    margin:0;
  }

  .price-section-head p{
    font-size:12px;
    font-weight:800;
    color:var(--amm-orange);
    margin:0;
  }

  .dark-box{
    background:#05090f;
    color:#fff;
    border-color:#05090f;
  }

  .dark-box table{color:#fff;}

  .price-table{
    width:100%;
    margin:0;
    font-size:14px;
  }

  .price-table th{
    font-size:11px;
    text-transform:uppercase;
    padding:8px 12px;
    border-bottom:1px solid rgba(255,255,255,.14);
  }

  .price-table td{
    padding:7px 12px;
    border-bottom:1px solid rgba(255,255,255,.10);
    font-weight:700;
  }

  .pricing-section-box:not(.dark-box) .price-table td,
  .pricing-section-box:not(.dark-box) .price-table th{
    border-bottom:1px solid #e4e8ef;
  }

  .price-table i{color:var(--amm-orange);width:20px;}
  .green-icons i{color:#16a060;}

  .free-box{
    border:1px dashed rgba(255,255,255,.5);
    border-radius:6px;
    padding:22px 14px;
    text-align:center;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
  }

  .free-box i{
    font-size:42px;
    margin-bottom:12px;
  }

  .free-box strong{
    display:block;
    font-size:24px;
    color:var(--amm-orange);
  }

  .package-card{
    background:linear-gradient(145deg,#081522,#02070d);
    border:1px solid rgba(255,255,255,.18);
    border-radius:8px;
    padding:22px;
    color:#fff;
    height:100%;
  }

  .package-card h4{
    font-size:18px;
    font-weight:900;
    text-transform:uppercase;
  }

  .package-card i{
    color:var(--amm-orange);
    font-size:34px;
    margin-bottom:12px;
  }

  .package-card ul{
    padding-left:16px;
    min-height:95px;
    font-size:12px;
  }

  .package-price{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:1px;
    border-top:1px solid rgba(255,255,255,.15);
    padding-top:14px;
  }

  .package-price div{
    text-align:center;
  }

  .package-price strong{
    display:block;
    font-size:22px;
  }

  .custom-solution{
    background:#fff;
    border:1px solid #d9dee7;
    border-radius:6px;
    padding:22px;
  }

  .custom-item{
    text-align:center;
    font-size:12px;
    font-weight:700;
  }

  .custom-item i{
    color:#15944e;
    font-size:28px;
    margin-bottom:8px;
  }

  .compare-table{
    background:#fff;
    border:1px solid #d9dee7;
    font-size:11px;
  }

  .compare-table th{
    background:#eef1f5;
    text-align:center;
    font-size:11px;
  }

  .compare-table td{
    text-align:center;
    font-weight:700;
  }

  .compare-table td:first-child,
  .compare-table th:first-child{
    text-align:left;
  }

  .faq-mini{
    background:#fff;
    border:1px solid #d9dee7;
    border-radius:6px;
    overflow:hidden;
  }

  .faq-mini-row{
    display:flex;
    justify-content:space-between;
    padding:12px 16px;
    font-size:12px;
    font-weight:800;
    border-bottom:1px solid #e4e8ef;
  }

  .pricing-bottom-cta{
    margin-top:18px;
    min-height: 320px;
    color:#fff;
    background:
      linear-gradient(90deg,rgba(3,14,26,.98),rgba(3,14,26,.78) 5%,rgba(3,14,26,.20)),
      url("/v2/assets/images/pricing-bottom-aircraft-2.jpg") center right/cover no-repeat;
    padding:64px;
  }

  .pricing-bottom-cta h2{
    font-size:28px;
    font-weight:900;
  }

  @media(max-width:991px){
    .pricing-discount{display:none;}
    .plan-card{height:auto;}
  }


/* 4. MARKETPLACE PRICING (retained for future pages) */
.marketplace-pricing-box{
    background:#030609;
    color:#fff;
    border-radius:7px;
    padding:22px 24px;
    margin-top:14px;
    border:1px solid rgba(255,255,255,.15);
    box-shadow:0 10px 28px rgba(0,0,0,.22);
  }

  .marketplace-head h3{
    font-size:27px;
    font-weight:900;
    text-transform:uppercase;
    margin:0;
  }

  .marketplace-head p{
    color:var(--amm-orange);
    font-size:15px;
    font-weight:900;
    margin:2px 0 10px;
  }

  .marketplace-table{
    width:100%;
    border-collapse:separate;
    border-spacing:0;
    overflow:hidden;
    border-radius:7px;
    font-size:15px;
  }

  .marketplace-table th{
    color:#fff;
    font-size:14px;
    font-weight:900;
    text-align:center;
    padding:0 14px 9px;
    text-transform:uppercase;
  }

  .marketplace-table th:first-child{
    text-align:left;
  }

  .marketplace-table th span{
    color:#d9dde4;
    font-size:12px;
    text-transform:none;
  }

  .marketplace-table .premium-th{
    color:var(--amm-orange);
  }

  .marketplace-table td{
    background:#11171d;
    border-right:2px solid rgba(255,255,255,.10);
    border-bottom:2px solid rgba(255,255,255,.08);
    padding:7px 16px;
    font-weight:800;
    text-align:center;
  }

  .marketplace-table td:first-child{
    text-align:left;
    width:40%;
  }

  .marketplace-table i{
    color:var(--amm-orange);
    width:32px;
    font-size:18px;
    text-align:center;
    margin-right:10px;
  }

  .marketplace-free-col{
    padding-left:30px;
    display:flex;
    align-items:center;
  }

  .marketplace-free-card{
    width:100%;
    min-height:220px;
    border:2px dashed rgba(255,255,255,.35);
    border-radius:7px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:18px 12px;
  }

  .marketplace-free-card i{
    font-size:42px;
    margin-bottom:16px;
  }

  .marketplace-free-card h4{
    font-size:24px;
    font-weight:900;
    margin-bottom:10px;
  }

  .marketplace-free-card p{
    color:#fff;
    font-size:15px;
    font-weight:700;
    line-height:1.35;
    margin-bottom:8px;
  }

  .marketplace-free-card strong{
    color:var(--amm-orange);
    font-size:29px;
    font-weight:900;
  }

  @media(max-width:991px){
    .marketplace-free-col{
      padding-left:0;
      padding-top:20px;
    }
  }


/* 5. ASSET SOURCING PAGE (retained for future pages) */
.asset-page{background:#fff;font-family:"Inter","Segoe UI",Arial,sans-serif;color:#07111f}

  .asset-hero{
    min-height:470px;
    color:#fff;
    padding:12px 0 18px;
    position:relative;
    overflow:hidden;
    background:
      linear-gradient(90deg,
        rgba(3,14,26,1) 0%,
        rgba(3,14,26,.96) 18%,
        rgba(3,14,26,.76) 31%,
        rgba(3,14,26,.40) 42%,
        rgba(3,14,26,.12) 51%,
        rgba(3,14,26,0) 60%,
        rgba(3,14,26,0) 100%
      ),
      url("/v2/assets/images/full-asset-sourcing-hero.jpg") center right/cover no-repeat;
  }

  .asset-hero .container{position:relative;z-index:3}

  .asset-breadcrumb{font-size:13px;font-weight:700;margin-bottom:34px}
  .asset-breadcrumb a{color:#fff}
  .asset-hero h1{font-size:48px;font-weight:950;text-transform:uppercase;margin:0;line-height:1.04}
  .asset-hero h2{font-size:34px;font-weight:950;color:var(--amm-orange);text-transform:uppercase;margin:4px 0 16px}
  .asset-hero p{max-width:520px;color:#fff;font-size:17px;font-weight:750;line-height:1.45}

  .asset-discount{
    position:absolute;
    right:44px;
    top:0;
    width:92px;
    height:132px;
    background:linear-gradient(180deg,#d71920 0%,#bd1017 100%);
    color:#fff;
    text-align:center;
    font-size:30px;
    line-height:.95;
    font-weight:950;
    padding:18px 8px 20px;
    box-shadow:0 8px 22px rgba(0,0,0,.35);
    z-index:4;
    border-radius:0 0 3px 3px;
  }

  .asset-discount::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:-1px;
    height:20px;
    background:#bd1017;
    clip-path:polygon(0 0,100% 0,100% 100%,50% 68%,0 100%);
  }

  .asset-discount span,
  .asset-discount small{
    position:relative;
    z-index:2;
  }

  .asset-discount small{
    display:block;
    font-size:12px;
    line-height:1.1;
    margin-top:9px;
    text-transform:uppercase;
  }

  .asset-stats{display:flex;margin-top:34px;max-width:650px}
  .asset-stat{width:20%;border-right:1px solid rgba(255,255,255,.28);padding-right:18px;margin-right:18px}
  .asset-stat:last-child{border-right:0}
  .asset-stat i{color:var(--amm-orange);font-size:28px;margin-bottom:10px}
  .asset-stat strong{display:block;font-size:22px;font-weight:950;color:#fff}
  .asset-stat span{font-size:12px;font-weight:750;color:#fff;line-height:1.25;display:block}

  .asset-actions{display:flex;gap:18px;margin-top:26px;flex-wrap:wrap}

  .asset-section{padding:24px 0 28px;background:#fff}
  .asset-title{text-align:center;font-size:22px;font-weight:950;text-transform:uppercase;margin-bottom:22px}
  .asset-title:after{content:"";display:block;width:34px;height:2px;background:var(--amm-orange);margin:8px auto 0}

  .asset-include-card{
    height:100%;
    background:#fff;
    border:1px solid #dce2e8;
    border-radius:7px;
    padding:24px 28px;
    box-shadow:0 8px 22px rgba(9,24,44,.04)
  }

  .asset-include-card h3{text-align:center;font-size:18px;font-weight:950;text-transform:uppercase;margin-bottom:20px}
  .asset-include-row{display:flex;gap:15px;margin-bottom:14px}
  .asset-include-row i{color:var(--amm-orange);font-size:25px;width:32px;text-align:center}
  .asset-include-row strong{display:block;font-size:14px;font-weight:950}
  .asset-include-row span{display:block;font-size:12px;font-weight:650;line-height:1.35}
  .asset-include-card.green .asset-include-row i{color:#168345}
  .asset-plus{position:absolute;right:-18px;top:43%;font-size:44px;font-weight:950;color:var(--amm-orange)}

  .asset-benefit-row{display:flex;gap:18px;margin-bottom:20px}
  .asset-benefit-row i{font-size:34px;width:42px;color:#07111f}
  .asset-benefit-row strong{display:block;font-size:13px;font-weight:950;text-transform:uppercase}
  .asset-benefit-row span{display:block;font-size:12px;font-weight:650;line-height:1.35}

  .asset-plan-row{align-items:stretch}

  .asset-plan{
    height:100%;
    min-height:320px;
    background:#fff;
    border:1px solid #dce2e8;
    border-radius:7px;
    overflow:hidden;
    padding-bottom:16px;
    box-shadow:0 8px 20px rgba(9,24,44,.04);
  }

  .asset-plan-head{
    height:64px;
    background:linear-gradient(180deg,#020b16 0%,#06111b 100%);
    color:#fff;
    text-align:center;
    padding:13px 16px 8px;
    font-size:20px;
    line-height:1;
    font-weight:950;
    text-transform:uppercase;
  }

  .asset-plan-head span{
    display:block;
    font-size:13px;
    margin-top:6px;
    font-weight:850;
  }

  .asset-plan-body{
    padding:20px 28px 0;
  }

  .asset-price{
    text-align:center;
    font-size:36px;
    line-height:1;
    font-weight:950;
    margin-bottom:8px;
  }

  .asset-price small{
    font-size:13px;
    font-weight:900;
  }

  .asset-note{
    text-align:center;
    font-size:10px;
    font-weight:800;
    color:#333;
    margin-bottom:18px;
    text-transform:uppercase;
  }

  .asset-plan-body ul{
    list-style:none;
    padding:0;
    margin:0 0 20px;
  }

  .asset-plan-body li{
    font-size:12px;
    font-weight:650;
    margin-bottom:9px;
    display:flex;
    gap:9px;
    align-items:flex-start;
  }

  .asset-plan-body li i{
    color:#07111f;
    font-size:11px;
    margin-top:3px;
  }

  .asset-plan.premium{
    border:2px solid var(--amm-orange);
    background:linear-gradient(180deg,#fffaf1 0%,#fff 100%);
    position:relative;
  }

  .asset-ribbon{
    height:24px;
    background:linear-gradient(90deg,var(--amm-orange),var(--amm-orange-2));
    color:#fff;
    text-align:center;
    font-size:12px;
    font-weight:950;
    text-transform:uppercase;
    line-height:24px;
  }

  .asset-plan.premium .asset-plan-body{
    padding-top:0;
  }

  .asset-plan.premium h3{
    margin:0 0 18px;
    padding-top:6px;
    text-align:center;
    font-size:20px;
    line-height:1;
    font-weight:950;
    text-transform:uppercase;
  }

  .asset-plan.premium h3 small{
    display:block;
    margin-top:6px;
    font-size:13px;
    font-weight:850;
    color:#07111f;
  }

  .btn-plan-outline,.btn-plan-orange{
    display:block;
    width:100%;
    height:38px;
    line-height:36px;
    text-align:center;
    border-radius:4px;
    padding:0 14px;
    font-size:13px;
    font-weight:950;
    text-transform:uppercase;
  }

  .btn-plan-outline{
    border:1px solid #07111f;
    color:#07111f!important;
    background:#fff;
  }

  .btn-plan-orange{
    background:linear-gradient(90deg,var(--amm-orange),var(--amm-orange-2));
    border:1px solid var(--amm-orange);
    color:#07111f!important;
  }

  .asset-info-card{
    height:100%;
    min-height:320px;
    background:#fff;
    border:1px solid #dce2e8;
    border-radius:7px;
    padding:34px 32px;
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    box-shadow:0 8px 20px rgba(9,24,44,.04);
  }

  .asset-info-card i{
    font-size:56px;
    margin-bottom:26px;
    color:#07111f;
  }

  .asset-info-card h3{
    font-size:22px;
    font-weight:950;
    text-transform:uppercase;
    line-height:1.08;
    margin-bottom:18px;
  }

  .asset-info-card p{
    font-size:13px;
    font-weight:650;
    line-height:1.6;
    margin:0;
  }

  .btn-plan-outline,.btn-plan-orange{
    display:block;
    text-align:center;
    border-radius:4px;
    font-size:13px;
    font-weight:950;
    text-transform:uppercase
  }

  .btn-plan-outline{border:1px solid #07111f;color:#07111f!important}
  .btn-plan-orange{background:var(--amm-orange);color:#07111f!important}

  .asset-how-row{display:grid;grid-template-columns:repeat(4,1fr);gap:26px}
  .asset-how-item{display:flex;gap:18px;align-items:center}
  .asset-how-icon{
    width:72px;
    height:72px;
    border:1px solid #07111f;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    position:relative;
    flex:0 0 72px
  }

  .asset-how-icon b{
    position:absolute;
    right:-5px;
    bottom:0;
    background:var(--amm-orange);
    width:22px;
    height:22px;
    border-radius:50%;
    font-size:12px;
    display:flex;
    align-items:center;
    justify-content:center
  }

  .asset-how-item h4{font-size:13px;font-weight:950;text-transform:uppercase}
  .asset-how-item p{font-size:12px;margin:0}

  .asset-map-cta{
    margin:10px 0 0;
    color:#fff;
    border-radius:7px;
    padding:38px 46px;
    background:
      linear-gradient(90deg,rgba(3,14,26,.58),rgba(3,14,26,.96) 48%),
      url("/v2/assets/images/about-world-map-banner_2.jpg") left center/cover no-repeat
  }

  .asset-map-cta h2{color:var(--amm-orange);font-size:25px;font-weight:950;text-transform:uppercase}
  .asset-map-cta p{color:#fff;font-size:16px;font-weight:650}
  .asset-map-actions{display:flex;gap:18px;flex-wrap:wrap;margin-top:18px}

  @media(max-width:991px){
    .asset-hero{
      background:
        linear-gradient(90deg,rgba(3,14,26,.92),rgba(3,14,26,.62)),
        url("/v2/assets/images/full-asset-sourcing-hero.jpg") center right/cover no-repeat;
    }

    .asset-discount{display:none}
    .asset-stats{flex-wrap:wrap}
    .asset-stat{width:45%;margin-bottom:18px}
    .asset-plus{display:none}
    .asset-how-row{grid-template-columns:1fr}
    .asset-hero h1{font-size:38px}
  }


/* 6. AIRCRAFT LISTING PAGE */
body.aircraft-marketplace .ac-page{background:#fff;color:#07111f;font-family:"Inter","Segoe UI",Arial,sans-serif}
  body.aircraft-marketplace .ac-hero{
    min-height:400px;color:#fff;display:flex;align-items:center;
    background:
      linear-gradient(90deg,rgba(3,14,26,.96),rgba(3,14,26,.68) 18%,rgba(3,14,26,.08) 66%),
      url("/v2/assets/images/aircraft-marketplace-hero-2.jpg") center right/cover no-repeat;
  }
  body.aircraft-marketplace .ac-hero h1{font-size:48px;font-weight:950;line-height:1;text-transform:uppercase;margin:0 0 6px}
  body.aircraft-marketplace .ac-hero h2{font-size:22px;color:var(--amm-orange);font-weight:950;text-transform:uppercase}
  body.aircraft-marketplace .ac-hero p{font-size:18px;color:#fff;margin:8px 0}
  body.aircraft-marketplace .ac-wrap{padding:18px 0 0}
  body.aircraft-marketplace .ac-breadcrumb{font-size:12px;font-weight:650;color:#576170;margin-bottom:16px}
  body.aircraft-marketplace .ac-breadcrumb i{font-size:10px;margin:0 9px;color:#88919c}

  body.aircraft-marketplace .ac-info-card{
    background:#fff;border:1px solid #dfe4ea;border-radius:9px;overflow:hidden;
    box-shadow:0 8px 24px rgba(9,24,44,.07);margin-bottom:20px
  }
  body.aircraft-marketplace .ac-info-img{height:155px;background:url("/v2/assets/images/aircraft-engine-card.jpg") center/cover no-repeat}
  body.aircraft-marketplace .ac-info-body{padding:28px}
  body.aircraft-marketplace .ac-info-body h3{font-size:22px;font-weight:950;margin-bottom:8px}
  body.aircraft-marketplace .ac-stat{height:100%;display:flex;align-items:center;justify-content:center;text-align:center;border-left:1px solid #dfe4ea}
  body.aircraft-marketplace .ac-stat i{font-size:29px;margin-bottom:8px}
  body.aircraft-marketplace .ac-stat strong{display:block;font-size:22px;font-weight:950}
  body.aircraft-marketplace .ac-stat span{font-size:11px;font-weight:850;text-transform:uppercase}

  body.aircraft-marketplace .ac-tabs{display:flex;gap:42px;border-bottom:1px solid #dfe4ea;margin-bottom:16px}
  body.aircraft-marketplace .ac-tab{padding:0 0 12px;font-size:14px;font-weight:950;text-transform:uppercase;color:#07111f}
  body.aircraft-marketplace .ac-tab.active{color:var(--amm-orange);border-bottom:3px solid var(--amm-orange)}

  body.aircraft-marketplace .ac-filter-box{border:1px solid #dfe4ea;border-radius:9px;padding:22px;background:#fff;box-shadow:0 8px 24px rgba(9,24,44,.04)}
  body.aircraft-marketplace .ac-filter-box label{font-size:12px;font-weight:750;margin-bottom:7px}
  body.aircraft-marketplace .ac-filter-box .form-select, body.aircraft-marketplace .ac-filter-box .form-control{height:38px;font-size:12px;border-radius:5px}
  body.aircraft-marketplace .ac-results-head{display:flex;justify-content:space-between;align-items:center;margin:24px 0 10px;font-size:13px}

  body.aircraft-marketplace .ac-listing{
    display:grid;grid-template-columns:360px 1fr 160px; gap:22px;
    background:#fff;border:1px solid #dfe4ea;border-radius:8px;margin-bottom:10px;padding:0 20px 0 0;
    min-height:160px;box-shadow:0 5px 16px rgba(9,24,44,.04);overflow:hidden
  }
  body.aircraft-marketplace .ac-listing-img{background:url("/v2/assets/images/aircraft-listing-default.jpg") center/cover no-repeat}
  body.aircraft-marketplace .ac-listing-main{padding:18px 0}
  body.aircraft-marketplace .ac-listing h3{font-size:24px;font-weight:950;text-transform:uppercase;margin:0 0 3px}
  body.aircraft-marketplace .ac-sub{font-size:14px;font-weight:450;margin-bottom:20px}
  body.aircraft-marketplace .ac-meta{display:grid;grid-template-columns:repeat(5,1fr);gap:18px}
  body.aircraft-marketplace .ac-meta-item i{font-size:17px;color:#555;margin-right:8px}
  body.aircraft-marketplace .ac-meta-item span{display:block;font-size:11px;color:#555;font-weight:450}
  body.aircraft-marketplace .ac-meta-item strong{display:block;font-size:11px;font-weight:900;margin-top:2px}

  body.aircraft-marketplace .ac-status{padding-top:0px; margin-right: 10px; font-size:12px}
  body.aircraft-marketplace .badge-active{border:1px solid #24a05a;color:#158447;background:#eaf8ef;font-weight:900;padding:4px 16px;border-radius:4px}
  body.aircraft-marketplace .badge-passive{border:1px solid #aaa;color:#555;background:#f4f4f4;font-weight:900;padding:4px 16px;border-radius:4px}
  body.aircraft-marketplace .posted{display:block;margin-top:10px;font-size:11px;font-weight:650}

  body.aircraft-marketplace .ac-actions{display:flex;flex-direction:column;gap:10px;justify-content:center}
  body.aircraft-marketplace .btn-ac-outline{border:1px solid #07111f;color:#07111f!important;background:#fff;border-radius:5px;height:38px;font-size:12px;font-weight:950;text-align:center;line-height:36px}
  body.aircraft-marketplace .btn-ac-orange{background:var(--amm-orange);color:#07111f!important;border:0;border-radius:5px;height:38px;font-size:12px;font-weight:950}


  @media(max-width:991px){
    body.aircraft-marketplace .ac-listing{grid-template-columns:1fr;padding:0}
    body.aircraft-marketplace .ac-listing-img{height:190px}
    body.aircraft-marketplace .ac-listing-main, body.aircraft-marketplace .ac-status, body.aircraft-marketplace .ac-actions{padding:16px}
    body.aircraft-marketplace .ac-meta{grid-template-columns:repeat(2,1fr)}
    body.aircraft-marketplace .ac-hero{
      background:
       linear-gradient(90deg,rgba(3,14,26,.96),rgba(3,14,26,.68) 38%,rgba(3,14,26,.08) 76%),
       url("/v2/assets/images/aircraft-marketplace-hero-2.jpg") center right/cover no-repeat;
    }
  }


/* 7. ENGINE LISTING PAGE */
/* ==========================================================
   7. ENGINE MARKETPLACE LISTING PAGE
   ========================================================== */

body.engine-marketplace {
  margin: 0;
  color: #07111f;
  background: #fff;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

body.engine-marketplace .ac-page {
  width: 100%;
  overflow: hidden;
  background: #fff;
}

/* HERO */

body.engine-marketplace .ac-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(3, 14, 26, .98) 0%,
      rgba(3, 14, 26, .91) 24%,
      rgba(3, 14, 26, .48) 52%,
      rgba(3, 14, 26, .06) 78%
    ),
    url("/v2/assets/images/engine-marketplace-hero.jpg")
    center right / cover no-repeat;
}

body.engine-marketplace .ac-hero .container {
  position: relative;
  z-index: 2;
}

body.engine-marketplace .ac-hero h1 {
  max-width: 510px;
  margin: 0;
  color: #fff;
  font-size: clamp(43px, 5vw, 62px);
  line-height: .98;
  letter-spacing: -1.2px;
  font-weight: 950;
  text-transform: uppercase;
}

body.engine-marketplace .ac-hero h1 span {
  display: block;
  margin-top: 7px;
  color: var(--amm-orange);
}

body.engine-marketplace .ac-hero-lead {
  max-width: 520px;
  margin: 20px 0 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 700;
}

body.engine-marketplace .ac-hero .btn-amm-primary,
body.engine-marketplace .ac-hero .btn-amm-outline {
  min-height: 48px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

body.engine-marketplace .ac-hero .btn-amm-outline {
  color: #fff;
  background: rgba(3, 14, 26, .3);
  border: 1px solid rgba(255, 255, 255, .75);
}

/* WRAPPER */

body.engine-marketplace .ac-wrap {
  padding: 0;
  background:
    linear-gradient(180deg, #fff 0%, #fff 78%, #f5f7f9 100%);
}

body.engine-marketplace .ac-breadcrumb {
  padding: 17px 12px 14px;
  margin: 0;
  color: #4e5967;
  font-size: 11px;
  font-weight: 650;
}

body.engine-marketplace .ac-breadcrumb i {
  margin: 0 10px;
  color: #89929e;
  font-size: 8px;
}

/* INFO CARD */

body.engine-marketplace .ac-info-card {
  margin: 0 0 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dfe4ea;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(9, 24, 44, .08);
}

body.engine-marketplace .ac-info-img {
  min-height: 190px;
  background:
    url("/v2/assets/images/engine-marketplace-card.png")
    center / cover no-repeat;
}

body.engine-marketplace .ac-info-body {
  min-height: 190px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.engine-marketplace .ac-info-body h3 {
  margin: 0 0 10px;
  color: #111;
  font-size: 22px;
  font-weight: 950;
}

body.engine-marketplace .ac-info-body p {
  margin: 0;
  color: #26313e;
  font-size: 12px;
  line-height: 1.75;
}

body.engine-marketplace .ac-stat {
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-left: 1px solid #dfe4ea;
}

body.engine-marketplace .ac-stat > div {
  width: 100%;
  padding: 20px 9px;
}

body.engine-marketplace .ac-stat i {
  display: block;
  margin: 0 auto 11px;
  color: #07111f;
  font-size: 31px;
}

body.engine-marketplace .ac-stat strong {
  display: block;
  color: #07111f;
  font-size: 22px;
  line-height: 1;
  font-weight: 950;
}

body.engine-marketplace .ac-stat span {
  display: block;
  margin-top: 7px;
  color: #07111f;
  font-size: 10px;
  line-height: 1.3;
  font-weight: 900;
  text-transform: uppercase;
}

/* TABS */

body.engine-marketplace .ac-tabs {
  min-height: 52px;
  display: flex;
  align-items: flex-end;
  gap: 44px;
  border-bottom: 1px solid #dfe4ea;
}

body.engine-marketplace .ac-tab {
  position: relative;
  padding: 0 12px 14px;
  color: #07111f;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

body.engine-marketplace .ac-tab:hover,
body.engine-marketplace .ac-tab.active {
  color: var(--amm-orange);
}

body.engine-marketplace .ac-tab.active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--amm-orange);
}

/* FILTER BOX */

body.engine-marketplace .ac-filter-box {
  padding: 20px 22px 16px;
  background: #fff;
  border: 1px solid #dfe4ea;
  border-top: 0;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 10px 28px rgba(9, 24, 44, .05);
}

body.engine-marketplace .engine-filter-form {
  padding-bottom: 17px;
  border-bottom: 1px solid #edf0f3;
}

body.engine-marketplace .engine-filter-grid {
  display: grid;
  grid-template-columns:
    repeat(6, minmax(125px, 1fr))
    minmax(168px, .9fr);
  gap: 16px;
  align-items: end;
}

body.engine-marketplace .engine-filter-field {
  min-width: 0;
}

body.engine-marketplace .engine-filter-field label {
  display: block;
  margin: 0 0 7px;
  color: #242e3a;
  font-size: 11px;
  font-weight: 700;
}

body.engine-marketplace .engine-filter-field .form-select {
  width: 100%;
  height: 42px;
  color: #25303d;
  background-color: #fff;
  border: 1px solid #cfd6df;
  border-radius: 5px;
  font-size: 11px;
  box-shadow: none;
}

body.engine-marketplace .engine-filter-field .form-select:focus {
  border-color: var(--amm-orange);
  box-shadow: 0 0 0 3px rgba(245, 164, 0, .12);
}

body.engine-marketplace .engine-filter-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

body.engine-marketplace .btn-ac-outline,
body.engine-marketplace .btn-ac-orange {
  min-height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

body.engine-marketplace .btn-ac-outline {
  color: #07111f !important;
  background: #fff;
  border: 1px solid #aeb7c2;
}

body.engine-marketplace .btn-ac-outline:hover {
  color: #fff !important;
  background: #07111f;
  border-color: #07111f;
}

body.engine-marketplace .btn-ac-orange {
  color: #07111f !important;
  background: linear-gradient(
    90deg,
    var(--amm-orange),
    var(--amm-orange-2)
  );
  border: 1px solid var(--amm-orange);
}

/* RESULTS TOOLBAR */

body.engine-marketplace .ac-results-head {
  min-height: 56px;
  margin: 6px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #26313e;
  font-size: 11px;
}

body.engine-marketplace .engine-result-count strong {
  font-weight: 900;
}

body.engine-marketplace .engine-result-tools {
  display: flex;
  align-items: center;
  gap: 11px;
}

body.engine-marketplace .engine-sort-form {
  display: flex;
  align-items: center;
  gap: 8px;
}

body.engine-marketplace .engine-sort-form label {
  margin: 0;
  white-space: nowrap;
  font-size: 11px;
}

body.engine-marketplace .engine-sort-form .form-select {
  width: 155px;
  height: 34px;
  font-size: 10px;
}

body.engine-marketplace .engine-view-toggle {
  display: flex;
  gap: 5px;
}

body.engine-marketplace .engine-view-button {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #07111f;
  background: #fff;
  border: 1px solid #d3d9e0;
  border-radius: 5px;
}

body.engine-marketplace .engine-view-button.active,
body.engine-marketplace .engine-view-button:hover {
  border-color: var(--amm-orange);
  background: #fff8e8;
}

/* LISTING ROW */

body.engine-marketplace .ac-listing {
  min-height: 180px;
  margin-bottom: 8px;
  padding: 0 16px 0 0;
  display: grid;
  grid-template-columns: 305px minmax(0, 1fr) 182px;
  gap: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dfe4ea;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(9, 24, 44, .035);
  transition:
    transform .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}

body.engine-marketplace .ac-listing:hover {
  transform: translateY(-1px);
  border-color: #c5cdd7;
  box-shadow: 0 10px 25px rgba(9, 24, 44, .08);
}

body.engine-marketplace .ac-listing-img {
  width: 100%;
  min-height: 180px;
  display: block;
  background-image:
    var(--engine-image),
    url("/v2/assets/images/engine-listing-default.jpg");
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  background-color: #edf1f4;
}

body.engine-marketplace .ac-listing-main {
  min-width: 0;
  padding: 14px 0 12px;
}

body.engine-marketplace .engine-listing-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

body.engine-marketplace .engine-title-wrap {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

body.engine-marketplace .engine-status-badge {
  flex: 0 0 auto;
  padding: 4px 9px;
  border-radius: 4px;
  font-size: 9px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

body.engine-marketplace .engine-status-badge.is-active {
  color: #fff;
  background: #178948;
  border: 1px solid #178948;
}

body.engine-marketplace .engine-status-badge.is-potential {
  color: #5a6470;
  background: #f2f4f6;
  border: 1px solid #aeb6c0;
}

body.engine-marketplace .ac-listing h3 {
  margin: 0;
  overflow: hidden;
  color: #111820;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -.2px;
  font-weight: 950;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

body.engine-marketplace .engine-inline-favorite {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #07111f;
  background: transparent;
  border: 0;
  border-radius: 50%;
}

body.engine-marketplace .engine-inline-favorite:hover,
body.engine-marketplace .engine-inline-favorite.is-favorite {
  color: #d31b2a;
  background: #fff0f2;
}

body.engine-marketplace .ac-sub {
  margin: 5px 0 15px;
  color: #394552;
  font-size: 12px;
}

/* PRIMARY META */

body.engine-marketplace .ac-meta {
  display: grid;
  grid-template-columns:
    minmax(90px, 1fr)
    minmax(112px, 1.2fr)
    minmax(112px, 1.2fr)
    minmax(95px, 1fr)
    minmax(90px, 1fr);
  gap: 10px;
}

body.engine-marketplace .ac-meta-item {
  min-width: 0;
}

body.engine-marketplace .ac-meta-item span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #576170;
  font-size: 9px;
  line-height: 1.2;
  white-space: nowrap;
}

body.engine-marketplace .ac-meta-item i {
  width: 17px;
  color: #485462;
  font-size: 14px;
  text-align: center;
}

body.engine-marketplace .ac-meta-item strong {
  display: block;
  margin: 4px 0 0 23px;
  overflow: hidden;
  color: #17202a;
  font-size: 9px;
  line-height: 1.35;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* SECONDARY META */

body.engine-marketplace .engine-secondary-meta {
  margin-top: 13px;
  padding-top: 11px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  border-top: 1px solid #edf0f3;
}

body.engine-marketplace .engine-secondary-item {
  min-width: 0;
}

body.engine-marketplace .engine-secondary-item span {
  display: block;
  color: #6a7481;
  font-size: 8px;
  line-height: 1.2;
}

body.engine-marketplace .engine-secondary-item strong {
  display: block;
  margin-top: 3px;
  overflow: hidden;
  color: #17202a;
  font-size: 9px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ACTIONS */

body.engine-marketplace .ac-actions {
  padding: 14px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
}

body.engine-marketplace .ac-actions .btn-ac-outline {
  width: 100%;
  min-height: 38px;
  font-size: 10px;
}

body.engine-marketplace .engine-details-button {
  color: #07111f !important;
  background: #fff;
  border-color: #6f7884;
}

body.engine-marketplace .engine-details-button:hover {
  color: #fff !important;
  background: #07111f;
}

body.engine-marketplace .engine-favorite-button.is-favorite {
  color: #b4232f !important;
  background: #fff3f4;
  border-color: #dc8d96;
}

/* EMPTY STATE */

body.engine-marketplace .engine-empty-results {
  padding: 55px 24px;
  text-align: center;
  background: #fafbfc;
  border: 1px dashed #cbd3dc;
  border-radius: 8px;
}

body.engine-marketplace .engine-empty-results > i {
  margin-bottom: 14px;
  color: var(--amm-orange);
  font-size: 42px;
}

body.engine-marketplace .engine-empty-results h3 {
  margin: 0 0 7px;
  font-size: 18px;
  font-weight: 900;
}

body.engine-marketplace .engine-empty-results p {
  margin-bottom: 18px;
  color: #657080;
}

/* PAGINATION */

body.engine-marketplace .ac-pagination {
  margin: 22px 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

body.engine-marketplace .ac-page-link {
  min-width: 36px;
  height: 36px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #07111f;
  background: #fff;
  border: 1px solid #d8dee6;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 850;
}

body.engine-marketplace .ac-page-link:hover {
  border-color: var(--amm-orange);
}

body.engine-marketplace .ac-page-link.active {
  background: var(--amm-orange);
  border-color: var(--amm-orange);
}

body.engine-marketplace .ac-page-link.disabled {
  opacity: .4;
  pointer-events: none;
}

/* RESPONSIVE */

@media (max-width: 1399px) {
  body.engine-marketplace .engine-filter-grid {
    grid-template-columns: repeat(4, minmax(140px, 1fr));
  }

  body.engine-marketplace .engine-filter-actions {
    grid-column: span 2;
  }

  body.engine-marketplace .ac-listing {
    grid-template-columns: 270px minmax(0, 1fr) 165px;
    gap: 17px;
  }

  body.engine-marketplace .ac-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 13px;
  }
}

@media (max-width: 991px) {
  body.engine-marketplace .ac-hero {
    min-height: 430px;
    background:
      linear-gradient(
        90deg,
        rgba(3, 14, 26, .96),
        rgba(3, 14, 26, .75) 58%,
        rgba(3, 14, 26, .25)
      ),
      url("/v2/assets/images/engine-marketplace-hero.jpg")
      65% center / cover no-repeat;
  }

  body.engine-marketplace .ac-info-img {
    min-height: 220px;
  }

  body.engine-marketplace .ac-stat {
    min-height: 130px;
    border-top: 1px solid #dfe4ea;
  }

  body.engine-marketplace .engine-filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.engine-marketplace .engine-filter-actions {
    grid-column: span 2;
  }

  body.engine-marketplace .ac-listing {
    padding: 0;
    grid-template-columns: 240px minmax(0, 1fr);
  }

  body.engine-marketplace .ac-listing-img {
    min-height: 225px;
  }

  body.engine-marketplace .ac-actions {
    grid-column: 1 / -1;
    padding: 0 17px 17px;
    flex-direction: row;
  }

  body.engine-marketplace .ac-actions .btn-ac-outline {
    max-width: 230px;
  }
}

@media (max-width: 767px) {
  body.engine-marketplace .ac-hero {
    min-height: 420px;
    padding: 55px 0;
  }

  body.engine-marketplace .ac-hero h1 {
    font-size: 40px;
  }

  body.engine-marketplace .ac-tabs {
    gap: 25px;
    overflow-x: auto;
  }

  body.engine-marketplace .ac-filter-box {
    padding: 18px;
  }

  body.engine-marketplace .engine-filter-grid {
    grid-template-columns: 1fr;
  }

  body.engine-marketplace .engine-filter-actions {
    grid-column: auto;
  }

  body.engine-marketplace .ac-results-head {
    align-items: flex-start;
    flex-direction: column;
  }

  body.engine-marketplace .engine-result-tools {
    width: 100%;
    justify-content: space-between;
  }

  body.engine-marketplace .ac-listing {
    grid-template-columns: 1fr;
  }

  body.engine-marketplace .ac-listing-img {
    height: 235px;
    min-height: 235px;
  }

  body.engine-marketplace .ac-listing-main {
    padding: 17px;
  }

  body.engine-marketplace .engine-title-wrap {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  body.engine-marketplace .ac-listing h3 {
    white-space: normal;
  }

  body.engine-marketplace .ac-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.engine-marketplace .engine-secondary-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.engine-marketplace .ac-actions {
    padding: 0 17px 17px;
  }
}

@media (max-width: 480px) {
  body.engine-marketplace .ac-hero .d-flex {
    align-items: stretch;
    flex-direction: column;
  }

  body.engine-marketplace .ac-hero .btn-amm-primary,
  body.engine-marketplace .ac-hero .btn-amm-outline {
    width: 100%;
  }

  body.engine-marketplace .engine-result-tools,
  body.engine-marketplace .engine-sort-form {
    align-items: stretch;
    flex-direction: column;
  }

  body.engine-marketplace .engine-sort-form .form-select {
    width: 100%;
  }

  body.engine-marketplace .ac-meta,
  body.engine-marketplace .engine-secondary-meta {
    grid-template-columns: 1fr;
  }

  body.engine-marketplace .ac-actions {
    flex-direction: column;
  }

  body.engine-marketplace .ac-actions .btn-ac-outline {
    max-width: none;
  }
}

/* 8. SHARED LISTING BROCHURE */
.ac-brochure{
    margin:10px auto 0;
    width:100%;
    background:#f7f8fa;
    border:1px solid #dfe4ea;
    border-radius:9px;
    padding:16px 18px;
    display:grid;
    grid-template-columns:190px 310px 1fr;
    gap:24px;
    align-items:center;
    min-height:142px;
  }

  .ac-brochure-img{
    height:118px;
    background:url("/v2/assets/images/amm-brochure-preview.png") center left/contain no-repeat;
  }

  .ac-brochure-content h3{
    font-size:21px;
    font-weight:950;
    margin:0 0 9px;
  }

  .ac-brochure-content p{
    font-size:13px;
    line-height:1.45;
    margin:0 0 13px;
    color:#07111f;
  }

  .ac-brochure .btn-amm-primary{
    height:40px;
    min-width:235px;
    padding:0 20px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    font-size:12px;
    font-weight:950;
    border-radius:5px;
    box-shadow:none;
  }

  .ac-brochure-features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    height:78px;
    align-items:center;
  }

  .ac-feature{
    height:70px;
    padding:0 14px;
    border-left:1px solid #d9dee5;
    display:grid;
    grid-template-columns:28px 1fr;
    grid-template-rows:auto auto;
    column-gap:10px;
    align-content:start;
  }

  .ac-feature i{
    grid-column:1;
    grid-row:1;
    font-size:24px;
    width:28px;
    color:#07111f;
    margin-top:1px;
  }

  .ac-feature-title{
    grid-column:2;
    grid-row:1;
    font-size:11.5px;
    font-weight:950;
    line-height:1.25;
    color:#07111f;
    padding-top:2px;
    white-space:nowrap;
  }

  .ac-feature-sub{
    grid-column:1 / 3;
    grid-row:2;
    font-size:10.5px;
    font-weight:650;
    line-height:1.45;
    color:#07111f;
    margin-top:8px;
    white-space:normal;
  }

  @media(max-width:991px){
    .ac-brochure{
      grid-template-columns:1fr;
      gap:18px;
      padding:22px;
    }

    .ac-brochure-img{
      height:130px;
      background-position:center;
    }

    .ac-brochure-features{
      grid-template-columns:1fr 1fr;
      height:auto;
      gap:16px 0;
    }

    .ac-feature{
      border-left:0;
      padding:0;
    }
  }

  @media(max-width:575px){
    .ac-brochure-features{grid-template-columns:1fr}
  }


/* 9. MARKETPLACES MAIN PAGE
   Scoped because this page intentionally has slightly different
   typography/button sizing from the global styles. */
body.marketplaces-page{
      margin: 0;
      font-family: "Inter", "Segoe UI", Arial, sans-serif;
      color: #111;
      background: #f6f7f9;
    }

    body.marketplaces-page a{ text-decoration: none; }

    body.marketplaces-page p{
      font-size: 13px;
      font-weight: 400;
    }

    /* HEADER */
    body.marketplaces-page .amm-header{
      background: #030E1A;
      border-bottom: 1px solid var(--amm-border);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    body.marketplaces-page .amm-logo{
      display: flex;
      align-items: center;
      gap: 10px;
      color: #fff;
      font-weight: 800;
      font-size: 30px;
      letter-spacing: -1px;
    }

    body.marketplaces-page .amm-logo-mark{
      width: 240px;
      height: 120px;
      background: url("/v2/assets/logos/amm-logo-dark.jpg") center center/cover no-repeat;
    }

    body.marketplaces-page .amm-logo small{
      display: block;
      font-size: 9px;
      font-weight: 600;
      letter-spacing: .6px;
      color: var(--amm-muted);
      margin-top: -6px;
    }

    body.marketplaces-page .navbar-nav .nav-link{
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      margin: 0 10px;
      padding: 26px 0;
      position: relative;
    }

    body.marketplaces-page .navbar-nav .nav-link.active, body.marketplaces-page .navbar-nav .nav-link:hover{
      color: #fff;
    }

    body.marketplaces-page .navbar-nav .nav-link.active::after, body.marketplaces-page .navbar-nav .nav-link:hover::after{
      content: "";
      position: absolute;
      height: 3px;
      background: var(--amm-orange);
      left: 0;
      right: 0;
      bottom: 16px;
      border-radius: 4px;
    }

    body.marketplaces-page .btn-amm-outline{
      color: #fff;
      border: 1px solid rgba(255,255,255,.45);
      font-weight: 800;
      border-radius: 4px;
      padding: 10px 22px;
      font-size: 13px;
      text-transform: uppercase;
    }

    body.marketplaces-page .btn-amm-outline:hover{
      background: #fff;
      color: var(--amm-dark);
    }

    body.marketplaces-page .btn-amm-primary{
      background: linear-gradient(90deg, var(--amm-orange), var(--amm-orange-2));
      color: #07111f;
      font-weight: 900;
      border: none;
      border-radius: 4px;
      padding: 11px 22px;
      font-size: 13px;
      text-transform: uppercase;
      box-shadow: 0 10px 25px rgba(245,164,0,.25);
    }

    body.marketplaces-page .btn-amm-primary:hover{
      background: #ffc14a;
      color: #07111f;
    }

    /* HERO */
    body.marketplaces-page .products-hero{
      position: relative;
      min-height: 540px;
      color: #fff;
      display: flex;
      align-items: center;
      background:
        linear-gradient(90deg, rgba(2,11,22,.98) 0%, rgba(2,11,22,.83) 34%, rgba(2,11,22,.20) 72%),
        url("/v2/assets/images/marketplace/A350-900_at_the_top.png") center right / cover no-repeat;
    }

    body.marketplaces-page .hero-content{
      max-width: 520px;
      padding: 75px 0 110px;
    }

    body.marketplaces-page .hero-title{
      font-size: clamp(40px, 5vw, 58px);
      font-weight: 900;
      line-height: 1.02;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    body.marketplaces-page .hero-title span{
      color: var(--amm-orange);
      display: block;
      font-size: clamp(24px, 3vw, 34px);
      margin-top: 8px;
    }

    body.marketplaces-page .hero-text{
      color: #f0f4f8;
      font-size: 15px;
      line-height: 1.8;
      margin: 22px 0 30px;
      max-width: 460px;
    }

    body.marketplaces-page .hero-actions{
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    body.marketplaces-page .hero-product-menu{
      background: rgba(3, 14, 27, .92);
      border: 1px solid var(--amm-border);
      border-radius: 8px;
      padding: 16px;
      max-width: 320px;
      margin-top: 0px;
      backdrop-filter: blur(10px);
    }

    body.marketplaces-page .hero-product-menu .item{
      display: flex;
      gap: 12px;
      color: #fff;
      padding: 10px 4px;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }

    body.marketplaces-page .hero-product-menu .item:last-child{
      border-bottom: 0;
    }

    body.marketplaces-page .hero-product-menu i{
      color: var(--amm-orange);
      font-size: 20px;
      width: 24px;
    }

    body.marketplaces-page .hero-product-menu strong{
      display: block;
      font-size: 13px;
      text-transform: uppercase;
    }

    body.marketplaces-page .hero-product-menu small{
      color: var(--amm-muted);
    }

    body.marketplaces-page .discount-ribbon{
      position: absolute;
      top: 95px;
      right: 70px;
      width: 120px;
      background: #d71920;
      color: #fff;
      text-align: center;
      padding: 18px 10px 26px;
      font-weight: 900;
      clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 83%, 0 100%);
    }

    body.marketplaces-page .discount-ribbon span{
      display: block;
      font-size: 40px;
      line-height: 1;
    }

    /* STATS */
    body.marketplaces-page .market-stats{
      margin-top: -66px;
      position: relative;
      z-index: 5;
    }

    body.marketplaces-page .market-stats-box{
      background: rgba(3,14,27,.97);
      border: 1px solid rgba(255,255,255,.25);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0,0,0,.30);
    }

    body.marketplaces-page .market-stat{
      color: #fff;
      text-align: center;
      padding: 24px 14px;
      border-right: 1px solid rgba(255,255,255,.28);
      min-height: 145px;
    }

    body.marketplaces-page .market-stat:last-child{
      border-right: 0;
    }

    body.marketplaces-page .market-stat i{
      font-size: 34px;
      color: #fff;
      margin-bottom: 10px;
      opacity: .95;
    }

    body.marketplaces-page .market-stat strong{
      display: block;
      color: var(--amm-orange);
      font-size: 24px;
      font-weight: 900;
      margin-bottom: 5px;
    }

    body.marketplaces-page .market-stat h4{
      font-size: 13px;
      font-weight: 800;
      margin: 0 0 6px;
    }

    body.marketplaces-page .market-stat p{
      color: #f1f5f9;
      font-size: 12px;
      line-height: 1.5;
      margin: 0;
    }

    /* SECTION TITLE */
    body.marketplaces-page .section-title{
      text-align: center;
      font-size: 28px;
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    body.marketplaces-page .section-subtitle{
      text-align: center;
      color: #1f2937;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 26px;
    }

    /* MARKETPLACE CARDS */
    body.marketplaces-page .marketplaces-section{
      padding: 36px 0 26px;
      background: #fff;
    }

    body.marketplaces-page .market-card{
      background: #fff;
      border: 1px solid #e5e8ee;
      border-radius: 8px;
      overflow: hidden;
      height: 100%;
      box-shadow: 0 8px 22px rgba(9,24,44,.08);
      transition: .25s ease;
    }

    body.marketplaces-page .market-card:hover{
      transform: translateY(-5px);
      box-shadow: 0 16px 36px rgba(9,24,44,.15);
    }

    body.marketplaces-page .market-img{
      width: 100%;
      height: 145px;
      object-fit: cover;
      display: block;
    }

    body.marketplaces-page .market-body{
      padding: 18px 16px 20px;
    }

    body.marketplaces-page .market-body h3{
      font-size: 14px;
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    body.marketplaces-page .market-body p{
      font-size: 12px;
      line-height: 1.65;
      color: #111827;
      font-weight: 600;
      min-height: 72px;
      margin-bottom: 14px;
    }

    body.marketplaces-page .market-link{
      color: #001f6b;
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }

    body.marketplaces-page .market-link i{
      margin-left: 8px;
    }

    /* BENEFITS */
    body.marketplaces-page .benefits-section{
      background: #fff;
      padding: 26px 0 28px;
    }

    body.marketplaces-page .benefits-box{
      border: 1px solid #e6e9ef;
      border-radius: 10px;
      background: #fff;
      box-shadow: 0 8px 24px rgba(9,24,44,.06);
      overflow: hidden;
    }

    body.marketplaces-page .benefit-item{
      text-align: center;
      padding: 24px 16px;
      border-right: 1px solid #e6e9ef;
      height: 100%;
    }

    body.marketplaces-page .benefit-item:last-child{
      border-right: 0;
    }

    body.marketplaces-page .benefit-item i{
      color: var(--amm-orange);
      font-size: 34px;
      margin-bottom: 12px;
    }

    body.marketplaces-page .benefit-item h4{
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    body.marketplaces-page .benefit-item p{
      font-size: 11px;
      font-weight: 600;
      line-height: 1.55;
      color: #111827;
      margin: 0;
    }

    /* CTA */
    body.marketplaces-page .products-cta{
      margin: 0 0 0;
      padding: 0 0 0;
      background: #fff;
    }

    body.marketplaces-page .cta-box{
      border-radius: 9px;
      overflow: hidden;
      color: #fff;
      padding: 34px 28px;
      background:
        linear-gradient(90deg, rgba(2,11,22,.98), rgba(2,11,22,.80) 40%, rgba(2,11,22,.10)),
        url("/v2/assets/images/marketplace/B747-400_Freighter_at_the_bottom_2.jpg") center right / cover no-repeat;
      min-height: 420px;
      display: cover;
      align-items: center;
    }

    body.marketplaces-page .cta-box h2{
      font-size: 30px;
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    body.marketplaces-page .cta-box h3{
      color: var(--amm-orange);
      font-size: 17px;
      font-weight: 900;
      margin-bottom: 18px;
    }

    body.marketplaces-page .cta-list{
      list-style: none;
      padding: 0;
      margin: 0 0 22px;
    }

    body.marketplaces-page .cta-list li{
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 7px;
      color: #f8fafc;
    }

    body.marketplaces-page .cta-list i{
      color: var(--amm-orange);
      margin-right: 8px;
    }

    /* FOOTER */
    body.marketplaces-page .amm-footer{
      background: #020b16;
      color: #fff;
      padding-top: 40px;
    }

    body.marketplaces-page .amm-footer p, body.marketplaces-page .amm-footer a{
      color: var(--amm-muted);
      font-size: 14px;
    }

    body.marketplaces-page .amm-footer a:hover{
      color: var(--amm-orange);
    }

    body.marketplaces-page .footer-title{
      font-size: 14px;
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    body.marketplaces-page .footer-bottom{
      border-top: 1px solid rgba(255,255,255,.1);
      padding: 18px 0;
      margin-top: 30px;
      color: #9ba7b5;
      font-size: 13px;
      text-align: center;
    }

    @media (max-width: 991px) {
      body.marketplaces-page .products-hero{
        min-height: auto;
        background-position: center right;
      }

      body.marketplaces-page .hero-content{
        padding: 70px 0 120px;
      }

      body.marketplaces-page .market-stat, body.marketplaces-page .benefit-item{
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.12);
      }

      body.marketplaces-page .market-stat-icon{
        width: 72px;
        height: 72px;
        object-fit: contain;
        display:block;
        margin: 0 auto 10px;
      }

      body.marketplaces-page .benefit-item{
        border-bottom: 1px solid #e6e9ef;
      }

      body.marketplaces-page .navbar-nav .nav-link{
        padding: 12px 0;
      }

      body.marketplaces-page .cta-box{
        background:
          linear-gradient(90deg, rgba(2,11,22,.98), rgba(2,11,22,.72)),
          url("/v2/assets/images/products-cta-aircraft.jpg") center / cover no-repeat;
      }
    }

/* ==========================================================
   10. LOGIN PAGE
   Scoped to body.amm-login-page to avoid conflicts with the
   public marketplace, pricing and listing pages.
   ========================================================== */
body.amm-login-page{
  margin:0;
  min-height:100%;
  color:#fff;
  background:#020b16;
  font-family:"Outfit","Inter","Segoe UI",Arial,sans-serif;
}

body.amm-login-page *{box-sizing:border-box}
body.amm-login-page a{text-decoration:none}
body.amm-login-page button,
body.amm-login-page input{font:inherit}

.amm-login-shell{
  min-height:100vh;
  overflow:hidden;
  background:#020b16;
}

.amm-login-container{
  width:min(100%,1500px);
  margin:0 auto;
  padding-left:32px;
  padding-right:32px;
}

.amm-login-topbar{
  position:absolute;
  inset:0 0 auto;
  z-index:10;
  padding:16px 0 0;
}

.amm-login-topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.amm-login-main-logo img{
  display:block;
  width:205px;
  height:72px;
  object-fit:contain;
  object-position:left center;
}

.amm-secure-login-badge{
  min-height:42px;
  padding:0 20px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#111820;
  background:#fff1ca;
  border:1px solid #e6c66c;
  border-radius:9px;
  font-size:14px;
  font-weight:800;
  box-shadow:0 8px 24px rgba(0,0,0,.2);
}

.amm-login-hero{
  min-height:830px;
  padding:80px 0 24px;
  position:relative;
  background:
    /*linear-gradient(90deg,rgba(2,11,22,.98) 0%,rgba(2,11,22,.88) 36%,rgba(2,11,22,.28) 67%,rgba(2,11,22,.12) 100%),*/
    url("/v2/assets/images/login-aircraft.jpg") center center/cover no-repeat;
}

.amm-login-grid{
  min-height:720px;
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(480px,.92fr);
  gap:48px;
  align-items:center;
}

.amm-login-presentation{
  min-width:0;
  padding:26px 0 0 30px;
}

.amm-login-presentation h1{
  margin:0;
  color:#fff;
  font-size:clamp(44px,4.7vw,66px);
  line-height:.98;
  letter-spacing:-1.7px;
  font-weight:900;
  text-transform:uppercase;
}

.amm-login-presentation h2{
  margin:10px 0 17px;
  color:var(--amm-orange);
  font-size:clamp(30px,3.2vw,45px);
  line-height:1.04;
  font-weight:900;
  text-transform:uppercase;
}

.amm-login-intro{
  max-width:610px;
  margin:0;
  color:#fff;
  font-size:18px;
  line-height:1.6;
  font-weight:500;
}

.amm-login-highlights{
  max-width:680px;
  margin-top:38px;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
   background:
    linear-gradient(90deg,rgba(2,11,22,.98) 0%,rgba(2,11,22,.88) 36%,rgba(2,11,22,.28) 67%,rgba(2,11,22,.12) 100%)
}

.amm-login-highlight{
  min-height:64px;
  padding:0 18px;
  display:flex;
  align-items:center;
  gap:13px;
  border-right:1px solid rgba(255,255,255,.34);
}

.amm-login-highlight:first-child{padding-left:0}
.amm-login-highlight:last-child{border-right:0}

.amm-login-highlight i{
  color:var(--amm-orange);
  font-size:31px;
  width:34px;
  flex:0 0 34px;
  text-align:center;
}

.amm-login-highlight span,
.amm-login-highlight strong{
  display:block;
  color:#fff;
  font-size:13px;
  line-height:1.3;
}

.amm-login-highlight strong{font-weight:800}

.amm-login-stats{
  max-width:750px;
  margin-top:260px;
  padding:17px 10px;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  color:#fff;
  background:rgba(1,8,15,.84);
  border:1px solid rgba(255,255,255,.46);
  border-radius:12px;
  backdrop-filter:blur(9px);
  box-shadow:0 18px 45px rgba(0,0,0,.28);
}

.amm-login-stat{
  min-height:70px;
  padding:2px 13px;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  gap:10px;
  text-align:center;
  border-right:1px solid rgba(255,255,255,.3);
}

.amm-login-stat:last-child{border-right:0}
.amm-login-stat i{margin-top:4px;color:var(--amm-orange);font-size:28px}
.amm-login-stat strong{display:block;font-size:25px;line-height:1;font-weight:900}
.amm-login-stat span{display:block;margin-top:8px;font-size:12px;line-height:1.35;font-weight:600}

.amm-login-card{
  width:min(100%,610px);
  justify-self:end;
  padding:38px 58px 28px;
  color:#07111f;
  background:rgba(255,255,255,.985);
  border:1px solid rgba(224,229,236,.95);
  border-radius:19px;
  box-shadow:0 25px 75px rgba(0,0,0,.32);
}

.amm-login-card-logo{text-align:center}
.amm-login-card-logo img{width:205px;height:88px;object-fit:contain}

.amm-login-card-heading{text-align:center;margin:0 0 26px}
.amm-login-card-heading span{display:block;width:112px;height:2px;margin:0 auto 15px;background:var(--amm-orange)}
.amm-login-card-heading h3{margin:0;font-size:28px;line-height:1.2;font-weight:800}

.amm-login-alert{
  margin-bottom:16px;
  padding:11px 13px;
  display:flex;
  align-items:flex-start;
  gap:9px;
  border-radius:7px;
  font-size:13px;
  font-weight:600;
}
.amm-login-alert-error{color:#8e1824;background:#fff0f2;border:1px solid #f4c2c8}
.amm-login-alert-success{color:#17683e;background:#edf9f2;border:1px solid #bde4cd}
.amm-login-alert-warning{color:#805000;background:#fff7e6;border:1px solid #efd39b}

.amm-login-field{margin-bottom:19px}
.amm-login-field>label{display:block;margin-bottom:8px;color:#171e27;font-size:14px;font-weight:700}
.amm-login-input-wrap{position:relative}
.amm-login-input-wrap>i{
  position:absolute;
  left:16px;
  top:50%;
  z-index:2;
  transform:translateY(-50%);
  color:#697586;
  font-size:17px;
}

.amm-login-input-wrap input{
  width:100%;
  height:52px;
  padding:0 47px;
  color:#151d27;
  background:#fff;
  border:1px solid #cfd6df;
  border-radius:7px;
  outline:none;
  font-size:15px;
  transition:border-color .2s ease,box-shadow .2s ease;
}

.amm-login-input-wrap input::placeholder{color:#7d8794}
.amm-login-input-wrap input:focus{border-color:var(--amm-orange);box-shadow:0 0 0 4px rgba(245,164,0,.14)}

.amm-password-toggle{
  position:absolute;
  right:11px;
  top:50%;
  width:36px;
  height:36px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transform:translateY(-50%);
  color:#596575;
  background:transparent;
  border:0;
  cursor:pointer;
}

.amm-login-options{
  margin:2px 0 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.amm-login-remember{display:flex;align-items:center;gap:9px;color:#222b36;font-size:14px;cursor:pointer}
.amm-login-remember input{width:18px;height:18px;accent-color:var(--amm-orange)}
.amm-login-options>a{color:#0057d9;font-size:14px;font-weight:700}
.amm-login-options>a:hover{text-decoration:underline}

.amm-login-submit{
  width:100%;
  height:56px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:13px;
  color:#151b22;
  background:linear-gradient(90deg,var(--amm-orange),var(--amm-orange-2));
  border:0;
  border-radius:7px;
  font-size:16px;
  font-weight:900;
  text-transform:uppercase;
  cursor:pointer;
  box-shadow:0 12px 25px rgba(245,164,0,.22);
}

.amm-login-submit:hover{filter:brightness(1.04)}

.amm-social-login{margin-top:23px}
.amm-social-divider{display:flex;align-items:center;gap:15px;color:#27303b;font-size:13px}
.amm-social-divider:before,.amm-social-divider:after{content:"";height:1px;flex:1;background:#d4dae2}
.amm-social-buttons{margin-top:15px;display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.amm-social-buttons a{height:49px;display:flex;align-items:center;justify-content:center;color:#17202b;background:#fff;border:1px solid #d5dbe3;border-radius:7px;font-size:25px}
.amm-social-buttons a:hover{border-color:var(--amm-orange);transform:translateY(-1px)}
.amm-social-buttons .fa-linkedin{color:#0a66c2}
.amm-social-buttons .fa-google{color:#4285f4}
.amm-social-buttons .fa-microsoft{color:#f25022}
.amm-social-buttons .fa-apple{color:#000}

.amm-login-register{margin-top:23px;text-align:center}
.amm-login-register>span{display:block;margin-bottom:7px;font-size:14px;font-weight:700}
.amm-login-register>a{display:inline-flex;align-items:center;gap:13px;color:#0057d9;font-size:16px;font-weight:800}
.amm-login-register>a:hover{text-decoration:underline}

.amm-login-terms{
  margin-top:22px;
  padding:15px 18px;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  gap:12px;
  background:#f1f3f6;
  border-radius:7px;
}
.amm-login-terms>i{margin-top:2px;color:#2b3541;font-size:20px}
.amm-login-terms p{margin:0;color:#303946;font-size:12px;line-height:1.45}
.amm-login-terms a{color:#0057d9;font-weight:700}

.amm-login-benefits{
  padding:0 0 28px;
  background:linear-gradient(180deg,#020b16,#01070d);
}

.amm-login-benefits-box{
  padding:15px 24px 19px;
  color:#fff;
  background:#020b16;
  border:1px solid rgba(255,255,255,.5);
  border-radius:12px;
}

.amm-login-benefits-box h2{margin:0 0 13px;font-size:20px;font-weight:800;text-align:center}
.amm-login-benefits-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr))}
.amm-login-benefit{position:relative;min-height:78px;padding:9px 22px;display:flex;align-items:flex-start;justify-content:center;gap:15px}
.amm-login-benefit:not(:last-child):after{content:"";position:absolute;top:8px;right:0;bottom:8px;width:1px;background:rgba(255,255,255,.23)}
.amm-login-benefit>i{margin-top:3px;color:var(--amm-orange);font-size:34px}
.amm-login-benefit strong{display:block;font-size:14px;font-weight:800}
.amm-login-benefit span{display:block;margin-top:6px;color:#eef2f6;font-size:11px;line-height:1.45}

.amm-login-footer{
  padding:45px 0 17px;
  color:#fff;
  background:linear-gradient(180deg,#01070d,#010408);
}

.amm-login-footer-grid{
  display:grid;
  grid-template-columns:1.35fr repeat(4,.72fr) 1.2fr;
  gap:28px;
}

.amm-login-footer-brand img{width:190px;height:67px;object-fit:contain;object-position:left center}
.amm-login-footer-brand p{max-width:290px;margin:10px 0 18px;color:#e6ebf1;font-size:13px;line-height:1.6}
.amm-login-socials{display:flex;gap:11px}
.amm-login-socials a{width:36px;height:36px;display:inline-flex;align-items:center;justify-content:center;color:#fff;border:1px solid rgba(255,255,255,.55);border-radius:50%}
.amm-login-socials a:hover{color:var(--amm-orange);border-color:var(--amm-orange)}

.amm-login-footer-column h3{margin:10px 0 16px;font-size:13px;font-weight:800;text-transform:uppercase}
.amm-login-footer-column>a{display:block;margin-bottom:10px;color:#e5e9ee;font-size:13px}
.amm-login-footer-column>a:hover{color:var(--amm-orange)}
.amm-login-newsletter p{color:#e5e9ee;font-size:13px}
.amm-login-newsletter form{display:flex;width:100%;max-width:320px}
.amm-login-newsletter input{min-width:0;height:46px;flex:1;padding:0 14px;color:#111a24;background:#fff;border:0;border-radius:6px 0 0 6px;outline:none;font-size:13px}
.amm-login-newsletter button{width:52px;height:46px;color:#07111f;background:var(--amm-orange);border:0;border-radius:0 6px 6px 0}

.amm-login-footer-bottom{
  margin-top:41px;
  padding-top:17px;
  color:#bbc4ce;
  border-top:1px solid rgba(255,255,255,.1);
  font-size:13px;
  text-align:center;
}

@media(max-width:1199px){
  .amm-login-grid{grid-template-columns:minmax(0,1fr) minmax(430px,.95fr);gap:30px}
  .amm-login-presentation{padding-left:0}
  .amm-login-card{padding:35px 38px 26px}
  .amm-login-highlights{grid-template-columns:repeat(2,1fr);gap:18px 0}
  .amm-login-highlight:nth-child(2){border-right:0}
  .amm-login-stats{margin-top:180px}
  .amm-login-footer-grid{grid-template-columns:1.3fr repeat(3,.8fr);}
  .amm-login-newsletter{grid-column:span 2}
}

@media(max-width:991px){
  .amm-login-topbar{position:relative;background:#020b16;padding-bottom:10px}
  .amm-login-hero{min-height:auto;padding:28px 0 30px;background:linear-gradient(180deg,rgba(2,11,22,.95),rgba(2,11,22,.82)),url("/v2/assets/images/login-aircraft.jpg") center/cover no-repeat}
  .amm-login-grid{min-height:0;grid-template-columns:1fr;gap:30px}
  .amm-login-presentation{text-align:center;padding:15px 0 0}
  .amm-login-intro{margin-left:auto;margin-right:auto}
  .amm-login-highlights{margin-left:auto;margin-right:auto;text-align:left}
  .amm-login-stats{margin:38px auto 0}
  .amm-login-card{justify-self:center}
  .amm-login-benefits-grid{grid-template-columns:repeat(2,1fr)}
  .amm-login-benefit:after{display:none}
  .amm-login-footer-grid{grid-template-columns:repeat(2,1fr)}
  .amm-login-footer-brand,.amm-login-newsletter{grid-column:1/-1}
}

@media(max-width:575px){
  .amm-login-container{padding-left:14px;padding-right:14px}
  .amm-login-main-logo img{width:150px;height:52px}
  .amm-secure-login-badge{min-height:38px;padding:0 12px;font-size:12px}
  .amm-login-presentation h1{font-size:38px}
  .amm-login-presentation h2{font-size:27px}
  .amm-login-intro{font-size:16px}
  .amm-login-highlights{grid-template-columns:1fr 1fr}
  .amm-login-highlight{padding:0 10px}
  .amm-login-highlight i{font-size:27px}
  .amm-login-stats{grid-template-columns:1fr 1fr}
  .amm-login-stat:nth-child(2){border-right:0}
  .amm-login-stat:nth-child(-n+2){padding-bottom:14px;border-bottom:1px solid rgba(255,255,255,.2)}
  .amm-login-card{padding:28px 19px 22px;border-radius:14px}
  .amm-login-card-logo img{width:175px;height:74px}
  .amm-login-card-heading h3{font-size:23px}
  .amm-login-options{align-items:flex-start}
  .amm-social-buttons{gap:8px}
  .amm-login-benefits-grid{grid-template-columns:1fr}
  .amm-login-footer-grid{grid-template-columns:1fr 1fr;gap:24px 18px}
}


body.aircraft-marketplace .ac-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 28px 0 12px;
}

body.aircraft-marketplace .ac-page-link {
  min-width: 36px;
  height: 36px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #07111f;
  background: #fff;
  border: 1px solid #dfe4ea;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 850;
}

body.aircraft-marketplace .ac-page-link:hover {
  color: #07111f;
  border-color: var(--amm-orange);
}

body.aircraft-marketplace .ac-page-link.active {
  color: #07111f;
  background: var(--amm-orange);
  border-color: var(--amm-orange);
}

body.aircraft-marketplace .ac-page-link.disabled {
  opacity: .4;
  pointer-events: none;
}

/* ==========================================================
   AMM HEADER - AUTHENTICATED FEATURES
   ========================================================== */

.amm-header .navbar {
  min-height: 92px;
}

.amm-header .navbar-collapse {
  align-items: center;
}

.amm-mobile-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.amm-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-shrink: 0;
}

/* Product menu */

.amm-products-menu {
  width: 370px;
  padding: 10px;
  margin-top: 0;
  background: rgba(3, 14, 26, .98);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

.amm-product-menu-grid {
  display: grid;
  gap: 3px;
}

.amm-product-menu-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px 12px;
  color: #fff;
  border-radius: 6px;
  transition:
    background .2s ease,
    color .2s ease;
}

.amm-product-menu-item:hover,
.amm-product-menu-item.active {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.amm-product-menu-item.active {
  box-shadow: inset 3px 0 0 var(--amm-orange);
}

.amm-product-menu-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--amm-orange);
  background: rgba(245, 164, 0, .10);
  border-radius: 7px;
  font-size: 18px;
}

.amm-product-menu-content {
  min-width: 0;
}

.amm-product-menu-content strong,
.amm-product-menu-content small {
  display: block;
}

.amm-product-menu-content strong {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.amm-product-menu-content small {
  margin-top: 3px;
  color: var(--amm-muted);
  font-size: 11px;
}

.amm-products-menu-footer {
  margin-top: 7px;
  padding: 10px 8px 2px;
  display: flex;
  gap: 15px;
  border-top: 1px solid rgba(255, 255, 255, .11);
}

.amm-mini-link {
  color: #dbe3ec;
  font-size: 11px;
  font-weight: 750;
}

.amm-mini-link i {
  margin-right: 5px;
  color: var(--amm-orange);
}

.amm-mini-link:hover {
  color: #fff;
}

/* Quick links */

.amm-header-quick-links {
  align-items: center;
  gap: 5px;
}

.amm-header-quick-link {
  padding: 8px 9px;
  color: #dbe3ec;
  font-size: 12px;
  font-weight: 750;
  border-radius: 4px;
}

.amm-header-quick-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.amm-upgrade-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

/* Icon button */

.amm-icon-button {
  position: relative;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
}

.amm-icon-button:hover {
  color: var(--amm-orange);
  border-color: rgba(245, 164, 0, .65);
}

.amm-notification {
  position: relative;
}

.amm-notification-mobile {
  display: none;
}

.amm-notification-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #07111f;
  background: var(--amm-orange);
  border: 2px solid var(--amm-dark);
  border-radius: 10px;
  font-size: 10px;
  font-weight: 900;
}

/* Notification panel */

.amm-notification-panel {
  position: absolute;
  top: calc(100% + 13px);
  right: 0;
  z-index: 1100;
  width: 390px;
  max-height: 520px;
  display: none;
  overflow: hidden;
  color: #07111f;
  background: #fff;
  border: 1px solid #dce2e8;
  border-radius: 10px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, .30);
}

.amm-notification-panel.show {
  display: block;
}

.amm-notification-header,
.amm-notification-footer {
  padding: 14px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.amm-notification-header {
  border-bottom: 1px solid #e5e9ee;
}

.amm-notification-header strong {
  font-size: 14px;
  font-weight: 900;
}

.amm-notification-read-button {
  padding: 0;
  color: #075db8;
  background: none;
  border: 0;
  font-size: 11px;
  font-weight: 750;
}

.amm-notification-content {
  max-height: 390px;
  overflow-y: auto;
}

.amm-notification-footer {
  justify-content: center;
  border-top: 1px solid #e5e9ee;
}

.amm-notification-footer a {
  color: #075db8;
  font-size: 12px;
  font-weight: 800;
}

/* Profile */

.amm-profile-menu {
  position: relative;
}

.amm-profile-toggle {
  min-height: 48px;
  padding: 4px 7px 4px 5px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 26px;
}

.amm-profile-toggle::after {
  display: none;
}

.amm-profile-toggle:hover,
.amm-profile-toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .30);
}

.amm-profile-avatar {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
}

.amm-profile-summary {
  max-width: 125px;
  flex-direction: column;
  text-align: left;
  line-height: 1.15;
}

.amm-profile-summary strong {
  overflow: hidden;
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.amm-profile-summary small {
  margin-top: 4px;
  overflow: hidden;
  color: var(--amm-orange);
  font-size: 9px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.amm-profile-chevron {
  margin-right: 5px;
  font-size: 10px;
}

.amm-profile-dropdown {
  width: 280px;
  margin-top: 12px;
  padding: 9px;
  border: 1px solid #dce2e8;
  border-radius: 9px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .24);
}

.amm-profile-dropdown-header {
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.amm-profile-dropdown-avatar {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
}

.amm-profile-dropdown-header strong,
.amm-profile-dropdown-header small {
  display: block;
  max-width: 175px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.amm-profile-dropdown-header strong {
  color: #07111f;
  font-size: 13px;
  font-weight: 900;
}

.amm-profile-dropdown-header small {
  margin-top: 3px;
  color: #637080;
  font-size: 11px;
}

.amm-profile-dropdown .dropdown-item {
  padding: 10px 11px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #07111f;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 750;
}

.amm-profile-dropdown .dropdown-item i {
  width: 18px;
  color: #4f5b69;
  text-align: center;
}

.amm-profile-dropdown .dropdown-item:hover {
  background: #f1f4f7;
}

.amm-profile-dropdown .amm-logout-link {
  color: #b42318;
}

.amm-profile-dropdown .amm-logout-link i {
  color: #b42318;
}

/* Responsive */

@media (max-width: 1199px) {
  .amm-header .navbar {
    min-height: 78px;
  }

  .amm-header .navbar-collapse {
    margin-top: 14px;
    padding: 14px;
    background: #030e1a;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
  }

  .amm-header-actions {
    margin-top: 14px;
    align-items: stretch;
    flex-direction: column;
  }

  .amm-header-actions .btn {
    width: 100%;
  }

  .amm-profile-toggle {
    width: 100%;
    justify-content: flex-start;
    border-radius: 7px;
  }

  .amm-profile-dropdown {
    width: 100%;
  }

  .amm-notification-mobile {
    display: block;
  }
}

@media (max-width: 575px) {
  .amm-logo-mark {
    width: 155px;
    height: 72px;
  }

  .amm-products-menu {
    width: 100%;
  }

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

  .amm-products-menu-footer {
    flex-direction: column;
    gap: 10px;
  }

  .amm-notification-panel {
    position: fixed;
    top: 82px;
    right: 12px;
    left: 12px;
    width: auto;
  }
}


 .amm-publish-modal{
      --pub-dark:#06111f;
      --pub-navy:#0b1f33;
      --pub-orange:#f5a400;
      --pub-orange-2:#ffbb28;
      --pub-blue:#0d6efd;
      --pub-text:#142033;
      --pub-muted:#697586;
      --pub-border:#e1e6ed;
      border:0;
      border-radius:20px;
      overflow:hidden;
      box-shadow:0 28px 80px rgba(2,11,22,.28);
    }

    .amm-publish-modal .modal-header{
      padding:18px 22px;
      color:#fff;
      background:
        radial-gradient(700px 260px at 5% -40%,rgba(245,164,0,.24),transparent 60%),
        linear-gradient(135deg,var(--pub-dark),var(--pub-navy));
      border:0;
    }

    .amm-publish-brand{
      display:flex;
      align-items:center;
      gap:13px;
      min-width:0;
    }

    .amm-publish-brand img{
      width:46px;
      height:46px;
      object-fit:contain;
      border-radius:12px;
      background:#fff;
      padding:5px;
    }

    .amm-publish-brand h2{
      margin:0;
      font-size:18px;
      line-height:1.2;
      font-weight:850;
    }

    .amm-publish-brand p{
      margin:4px 0 0;
      color:rgba(255,255,255,.72);
      font-size:12px;
    }

    .amm-publish-modal .btn-close{
      filter:invert(1);
      opacity:.8;
    }

    .amm-publish-modal .modal-body{
      padding:22px;
      background:#f6f8fb;
    }

    .amm-publish-progress{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:10px;
      margin-bottom:18px;
    }

    .amm-publish-step{
      display:flex;
      align-items:center;
      gap:9px;
      min-width:0;
      padding:10px 12px;
      color:#7b8797;
      background:#fff;
      border:1px solid var(--pub-border);
      border-radius:12px;
      font-size:11px;
      font-weight:750;
    }

    .amm-publish-step span{
      width:24px;
      height:24px;
      flex:0 0 24px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:50%;
      background:#eef1f5;
      font-size:11px;
    }

    .amm-publish-step.active{
      color:var(--pub-text);
      border-color:rgba(245,164,0,.55);
      box-shadow:0 8px 22px rgba(245,164,0,.10);
    }

    .amm-publish-step.active span{
      color:#111827;
      background:var(--pub-orange);
    }

    .amm-intent-title{
      margin-bottom:13px;
    }

    .amm-intent-title h3{
      margin:0;
      color:var(--pub-text);
      font-size:17px;
      font-weight:850;
    }

    .amm-intent-title p{
      margin:5px 0 0;
      color:var(--pub-muted);
      font-size:12px;
    }

    .amm-intent-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
      margin-bottom:18px;
    }

    .amm-intent-card{
      position:relative;
      width:100%;
      min-height:132px;
      padding:17px;
      display:flex;
      align-items:flex-start;
      gap:14px;
      text-align:left;
      color:var(--pub-text);
      background:#fff;
      border:1px solid var(--pub-border);
      border-radius:15px;
      cursor:pointer;
      transition:transform .15s ease,border-color .15s ease,box-shadow .15s ease;
    }

    .amm-intent-card:hover{
      transform:translateY(-2px);
      border-color:rgba(245,164,0,.55);
      box-shadow:0 14px 30px rgba(10,31,51,.10);
    }

    .amm-intent-card.active{
      border:2px solid var(--pub-orange);
      box-shadow:0 15px 34px rgba(245,164,0,.14);
    }

    .amm-intent-icon{
      width:48px;
      height:48px;
      flex:0 0 48px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      color:var(--pub-orange);
      background:rgba(245,164,0,.11);
      border-radius:13px;
      font-size:21px;
    }

    .amm-intent-copy strong{
      display:block;
      font-size:15px;
      font-weight:850;
    }

    .amm-intent-copy small{
      display:block;
      margin-top:5px;
      color:var(--pub-muted);
      font-size:11px;
      line-height:1.45;
    }

    .amm-intent-tag{
      display:inline-flex;
      margin-top:10px;
      padding:4px 8px;
      color:#7b5100;
      background:#fff4cf;
      border-radius:999px;
      font-size:9px;
      font-weight:850;
      text-transform:uppercase;
    }

    .amm-publish-panel{
      display:none;
      background:#fff;
      border:1px solid var(--pub-border);
      border-radius:16px;
      overflow:hidden;
    }

    .amm-publish-panel.active{
      display:block;
    }

    .amm-publish-panel-head{
      padding:16px 18px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      border-bottom:1px solid var(--pub-border);
    }

    .amm-publish-panel-head h4{
      margin:0;
      color:var(--pub-text);
      font-size:15px;
      font-weight:850;
    }

    .amm-publish-panel-head p{
      margin:4px 0 0;
      color:var(--pub-muted);
      font-size:11px;
    }

    .amm-publish-free{
      flex:0 0 auto;
      padding:5px 9px;
      color:#166534;
      background:#edf9f1;
      border:1px solid #c8ead3;
      border-radius:999px;
      font-size:10px;
      font-weight:850;
      text-transform:uppercase;
    }

    .amm-publish-form{
      padding:18px;
    }

    .amm-publish-form .form-label{
      margin-bottom:6px;
      color:#263244;
      font-size:12px;
      font-weight:750;
    }

    .amm-publish-form .form-control,
    .amm-publish-form .form-select{
      min-height:46px;
      border:1px solid #ccd4df;
      border-radius:10px;
      font-size:13px;
    }

    .amm-publish-form .form-control:focus,
    .amm-publish-form .form-select:focus{
      border-color:var(--pub-orange);
      box-shadow:0 0 0 .2rem rgba(245,164,0,.14);
    }

    .amm-publish-help{
      margin-top:6px;
      color:var(--pub-muted);
      font-size:10px;
    }

    .amm-publish-footer{
      padding:14px 18px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      background:#fafbfc;
      border-top:1px solid var(--pub-border);
    }

    .amm-publish-note{
      display:flex;
      align-items:center;
      gap:8px;
      color:var(--pub-muted);
      font-size:11px;
    }

    .amm-publish-note i{
      color:var(--pub-orange);
    }

    .amm-publish-next{
      min-width:150px;
      min-height:44px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      color:#111827;
      background:linear-gradient(90deg,var(--pub-orange),var(--pub-orange-2));
      border:0;
      border-radius:10px;
      font-size:12px;
      font-weight:900;
      text-transform:uppercase;
      box-shadow:0 11px 24px rgba(245,164,0,.22);
    }

    .amm-publish-next:hover{
      transform:translateY(-1px);
    }

    .amm-publish-back{
      padding:0;
      color:#496078;
      background:transparent;
      border:0;
      font-size:11px;
      font-weight:750;
    }

    #publishModalFreeze{
      z-index:1060;
      background:rgba(255,255,255,.82);
      backdrop-filter:blur(2px);
    }

    @media (max-width:767px){
      .amm-publish-modal .modal-body{padding:15px}
      .amm-intent-grid{grid-template-columns:1fr}
      .amm-publish-progress{grid-template-columns:1fr}
      .amm-publish-step:not(.active){display:none}
      .amm-publish-footer{align-items:stretch;flex-direction:column}
      .amm-publish-next{width:100%}
    }

    .modal.fade .modal-dialog{
        display:flex;
        align-items:center;
        min-height:calc(100% - 2rem);
    }

    #myModal .modal-content{
        max-height:90vh;
    }

    #myModal .modal-body{
        overflow-y:auto;
    }