/*
 * AirJetCharter theme — INNER PAGES (CMS strane: about/page/gallery/contact/blog).
 * Portovano 1:1 iz Archive.zip inner HTML <style> (acq-hero / ab-story /
 * ab-service / ab-value / pc-section / section-head / cta-banner), ali keyovano
 * na GENERIČKE CMS view klase (.page-hero / .about-story / .about-values /
 * .value-card / .section-header / .cta-banner) da jedan fajl pokrije sve strane
 * bez reskina markup-a. Učitava se POSLIJE airjet-home.css.
 */

  /* ----- dodatni tokeni (nisu u airjet-base) ----- */
  :root {
    --orange: #f77f00;
    --line:   #e3e7ee;
  }

  /* ==========================================================================
     PAGE HERO (port .acq-hero) — _page-hero.php: .page-hero(.--image) >
     .page-hero__inner(.container) > __eyebrow/__title/__subtitle
     ========================================================================== */
  .page-hero {
    position: relative;
    min-height: 56vh;
    min-height: 56svh;
    display: flex;
    align-items: flex-end;
    padding-top: calc(var(--header-h) + 80px);
    padding-bottom: 56px;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(180deg, var(--c-navy) 0%, var(--c-navy-2) 100%);
  }
  /* bg slika (cover) preko inline --bc-bg-image varijable iz partiala */
  .page-hero--image {
    background-image: var(--bc-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(10,23,51,.35) 0%, rgba(10,23,51,.78) 100%);
  }
  .page-hero__inner { position: relative; z-index: 1; }
  .page-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    margin-bottom: 18px;
    padding: 7px 16px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    line-height: 1;
  }
  .page-hero__title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 600;
    letter-spacing: -.03em;
    line-height: 1.05;
    margin: 0 0 16px;
    max-width: 18ch;
    text-shadow: 0 2px 14px rgba(0,0,0,.25);
  }
  .page-hero__subtitle {
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.6;
    margin: 0;
    color: rgba(255,255,255,.92);
    max-width: 640px;
  }
  @media (max-width: 719px) {
    .page-hero { min-height: 48svh; padding-top: calc(var(--header-h) + 50px); padding-bottom: 36px; }
    .page-hero__title { font-size: clamp(30px, 9vw, 44px); }
  }

  /* Avio (empty-leg) arhiva — centriran hero sadržaj (eyebrow/title/subtitle
     centrirani horizontalno + vertikalno), kao kompozicija na private-charters. */
  main[data-service-type="avio"] .page-hero { align-items: center; }
  main[data-service-type="avio"] .page-hero__inner { text-align: center; }
  main[data-service-type="avio"] .page-hero__title,
  main[data-service-type="avio"] .page-hero__subtitle { margin-left: auto; margin-right: auto; }

  /* Avio (empty-leg) — „napomena" blok ispod liste (CMS belowPage): premium
     fine-print kartica sa info-badge ikonom umjesto golog prose teksta. CSS-only
     (sadržaj ostaje CMS-editabilan); ikona je jezički neutralna (sr/en/ru). */
  main[data-service-type="avio"] .archive-page-content--bottom .page-body__prose {
    position: relative;
    max-width: 900px;
    text-align: left;
    padding: 34px 38px 30px;
    background: linear-gradient(180deg, #f7fafd 0%, #edf3f9 100%);
    border: 1px solid #e3e9f1;
    border-left: 4px solid var(--c-blue);
    border-radius: 16px;
    box-shadow: 0 14px 34px -22px rgba(10,23,51,.42);
  }
  main[data-service-type="avio"] .archive-page-content--bottom .page-body__prose::before {
    content: "";
    display: block;
    width: 42px; height: 42px;
    margin-bottom: 18px;
    border-radius: 11px;
    background: var(--c-blue) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><path d='M12 16v-4'/><path d='M12 8h.01'/></svg>") no-repeat center / 22px;
    box-shadow: 0 8px 18px -8px rgba(37,99,235,.6);
  }
  main[data-service-type="avio"] .archive-page-content--bottom .page-body__prose p {
    font-size: 14px;
    line-height: 1.72;
    color: #62708a;
    margin: 0 0 13px;
  }
  main[data-service-type="avio"] .archive-page-content--bottom .page-body__prose p:last-child { margin-bottom: 0; }
  main[data-service-type="avio"] .archive-page-content--bottom .page-body__prose strong { color: var(--c-text); font-weight: 600; }
  @media (max-width: 719px) {
    main[data-service-type="avio"] .archive-page-content--bottom .page-body__prose { padding: 26px 22px 22px; border-radius: 14px; }
  }

  /* ==========================================================================
     BREADCRUMB — original inner strane ga nemaju; držimo suptilno (tanka traka).
     ========================================================================== */
  .breadcrumb {
    background: var(--c-bg-soft);
    border-bottom: 1px solid var(--line);
    font-size: 13px;
  }
  .breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 14px 0;
    margin: 0;
    color: var(--c-muted);
  }
  .breadcrumb__list li { display: inline-flex; align-items: center; gap: 8px; }
  .breadcrumb__list li + li::before {
    content: "/";
    color: var(--c-border);
  }
  .breadcrumb__list a { color: var(--c-muted); transition: color .2s var(--ease); }
  .breadcrumb__list a:hover { color: var(--c-blue); }
  .breadcrumb__list li[aria-current="page"] span { color: var(--c-text); font-weight: 600; }

  /* ==========================================================================
     PAGE BODY / PROSE — rich text iz CMS-a (text/text2).
     ========================================================================== */
  .page-body { padding: 72px 0; background: var(--c-bg); }
  .page-body + .page-body { padding-top: 0; }
  .prose {
    max-width: 820px;
    color: var(--c-muted);
    font-size: 16.5px;
    line-height: 1.75;
  }
  .page-body__prose { margin: 0 auto; }
  .prose > :first-child { margin-top: 0; }
  .prose > :last-child { margin-bottom: 0; }
  .prose h2 {
    font-size: clamp(26px, 3.4vw, 38px);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.18;
    color: var(--c-text);
    margin: 1.6em 0 .5em;
  }
  .prose h3 {
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 700;
    color: var(--c-text);
    margin: 1.4em 0 .4em;
  }
  .prose p { margin: 0 0 1.1em; }
  .prose p strong { color: var(--c-text); font-weight: 600; }
  .prose a { color: var(--c-blue); text-decoration: underline; text-underline-offset: 3px; }
  .prose ul, .prose ol { margin: 0 0 1.2em; padding-left: 1.3em; }
  .prose ul { list-style: disc; }
  .prose ol { list-style: decimal; }
  .prose li { margin: 0 0 .5em; }
  .prose img { border-radius: var(--radius-lg); margin: 1.4em 0; }
  .prose blockquote {
    border-left: 3px solid var(--c-blue);
    padding: 4px 0 4px 22px;
    margin: 1.4em 0;
    color: var(--c-text);
    font-style: italic;
  }

  /* ==========================================================================
     SECTION HEADER (port .section-head + .pc-section .section-head)
     Centriran, eyebrow sa linijama lijevo/desno, h2 + p.
     ========================================================================== */
  .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
    gap: 14px;
  }
  .section-header .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--c-blue);
    margin: 0;
  }
  .section-header .eyebrow::before,
  .section-header .eyebrow::after {
    content: "";
    width: 28px; height: 2px;
    background: var(--c-blue);
    border-radius: 2px;
  }
  .section-header h2 {
    font-size: clamp(30px, 3.6vw, 44px);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.15;
    color: var(--c-text);
    margin: 0;
  }
  .section-header p {
    font-size: 17px;
    line-height: 1.65;
    color: var(--c-muted);
    margin: 0;
    max-width: 660px;
  }

  /* ==========================================================================
     ABOUT STORY (port .ab-story) — slika + tekst split.
     about.php: .about-story > .container > .about-story__grid >
                .about-story__img(>img) + .reveal>.prose
     ========================================================================== */
  .about-story {
    padding: 110px 0;
    background: var(--c-bg);
    position: relative;
    overflow: hidden;
  }
  .about-story::before {
    content: "";
    position: absolute;
    top: 8%; left: -180px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(37,99,235,.08) 0%, rgba(37,99,235,0) 70%);
    pointer-events: none;
    z-index: 0;
  }
  .about-story > .container { position: relative; z-index: 1; }
  .about-story__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    align-items: center;
  }
  .about-story__img {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(10,23,51,.18);
    aspect-ratio: 4 / 5;
  }
  .about-story__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  @media (max-width: 1024px) {
    .about-story { padding: 80px 0; }
    .about-story__grid { grid-template-columns: 1fr; gap: 44px; }
    .about-story__img { aspect-ratio: 16 / 11; max-width: 680px; margin: 0 auto; }
  }

  /* ==========================================================================
     BLOCKS GRID (port .ab-services/.ab-service — svijetle premium kartice
     na soft pozadini sa tačkastim patternom). Generičke value-card kartice;
     radi na svim stranama (services/values/process/benefits).
     ========================================================================== */
  .about-values {
    padding: 100px 0;
    background: var(--c-bg-soft);
    position: relative;
    overflow: hidden;
  }
  .about-values::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(37,99,235,.06) 1.2px, transparent 1.2px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
  }
  .about-values > .container { position: relative; z-index: 1; }
  .about-values__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
    gap: 22px;
  }
  .value-card {
    background: #fff;
    border-radius: 18px;
    padding: 32px 26px 30px;
    box-shadow: 0 4px 14px rgba(10,23,51,.04), 0 0 0 1px var(--line);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  }
  .value-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--c-blue) 0%, var(--orange) 100%);
    transform: scaleX(.25);
    transform-origin: left;
    transition: transform .35s var(--ease);
  }
  .value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(10,23,51,.14), 0 0 0 1px rgba(37,99,235,.25);
  }
  .value-card:hover::before { transform: scaleX(1); }
  .value-card__icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(247,127,0,.10));
    color: var(--c-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
  }
  .value-card__icon svg { width: 26px; height: 26px; }
  .value-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--c-text);
    margin: 0 0 10px;
    letter-spacing: -.01em;
  }
  .value-card p {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--c-muted);
    margin: 0;
    flex: 1;
  }

  /* Media varijanta — slika na vrhu (flota/tim/itd.). Slika bleeduje do
     ivica kartice; tekst zadržava unutrašnji padding. Top accent bar
     (::before) ostaje vidljiv preko slike (positioned paint order). */
  .value-card--media { padding: 0 0 28px; }
  .value-card--media .value-card__media {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    margin: 0 0 22px;
    background: var(--c-bg);
  }
  .value-card--media .value-card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s var(--ease);
  }
  .value-card--media:hover .value-card__media img { transform: scale(1.05); }
  .value-card--media h3,
  .value-card--media p { padding-left: 26px; padding-right: 26px; }

  /* ==========================================================================
     GALLERY (Fancybox grid) — .gallery-page > .gallery-grid > .gallery-item(img)
     ========================================================================== */
  .gallery-page { padding: 90px 0; background: var(--c-bg); }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
  }
  .gallery-item {
    display: block;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-sm);
  }
  .gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s var(--ease);
  }
  .gallery-item:hover img { transform: scale(1.06); }

  /* ==========================================================================
     CTA BANNER (inner). VAŽNO: .cta-banner je VEĆ stilizovan u airjet-home.css
     (section padding/center/white + h2/p), pa ga NE diramo (home koristi <img>
     pozadinu). Inner CTA (about.php) nema <img>, pa mu preko --solid modifikatora
     dodajemo navy pozadinu + centriran container. Home CTA ostaje netaknut.
     ========================================================================== */
  .cta-banner--solid {
    background: linear-gradient(180deg, var(--c-navy) 0%, var(--c-navy-2) 100%);
  }
  .cta-banner--solid .container { max-width: 760px; margin: 0 auto; }
  .cta-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
  }

  /* ==========================================================================
     ARCHIVE CHILD sekcije (_page-children.php) — razmak između child blokova.
     ========================================================================== */
  .page-child { padding: 72px 0; }
  .page-child:nth-child(even) { background: var(--c-bg-soft); }
  .page-child .section-header { margin-bottom: 36px; }
  .page-child .prose { margin: 0 auto 36px; }

  /* ----- reveal: NE skrivamo sadržaj (nema reveal JS-a na inner stranama) ----- */
  .reveal, .reveal-stagger { opacity: 1; }

  /* ==========================================================================
     BLOG ARHIVA (blog-index.php): .blog-page > .blog-page__grid > .blog-card(BEM).
     airjet-home.css .blog-card pokriva HOME carousel (.bc-body), ali NE ovu BEM
     djecu (__img-wrap/__body/__meta/__title/__excerpt) ni .blog-page__grid, pa
     ih ovdje stilizujemo u value-card jeziku (bijela kartica, radius, lift).
     ========================================================================== */
  .blog-page { padding: 80px 0 90px; background: var(--c-bg); }
  .blog-page__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 26px;
  }
  .blog-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(10,23,51,.05), 0 0 0 1px var(--line);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  }
  .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(10,23,51,.14), 0 0 0 1px rgba(37,99,235,.25);
  }
  .blog-card__link { display: block; color: inherit; text-decoration: none; }
  .blog-card__img-wrap { aspect-ratio: 16 / 10; overflow: hidden; background: var(--c-bg); }
  .blog-card__img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .5s var(--ease);
  }
  .blog-card:hover .blog-card__img { transform: scale(1.05); }
  .blog-card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; }
  .blog-card__meta { font-size: 13px; color: var(--c-muted); display: inline-flex; align-items: center; gap: 6px; }
  .blog-card__meta i { color: var(--c-blue); }
  .blog-card__title {
    font-size: 18px; font-weight: 700; line-height: 1.35;
    color: var(--c-text); margin: 0; letter-spacing: -.01em;
    transition: color .25s var(--ease);
  }
  .blog-card:hover .blog-card__title { color: var(--c-blue); }
  .blog-card__excerpt { font-size: 14.5px; line-height: 1.6; color: var(--c-muted); margin: 0; }

  /* ----- BLOG DETALJ (blog-detail.php): .blog-detail + .prose + share ----- */
  .blog-detail { padding: 70px 0 90px; background: var(--c-bg); }
  .blog-detail__inner { max-width: 760px; margin: 0 auto; }
  .blog-detail__meta {
    display: flex; flex-wrap: wrap; gap: 18px;
    font-size: 14px; color: var(--c-muted); margin-bottom: 16px;
  }
  .blog-detail__meta span { display: inline-flex; align-items: center; gap: 7px; }
  .blog-detail__meta i { color: var(--c-blue); }
  .blog-detail__title {
    font-size: clamp(28px, 4vw, 42px); font-weight: 800; line-height: 1.15;
    letter-spacing: -.02em; color: var(--c-text); margin: 0 0 26px;
  }
  .blog-detail__hero {
    margin: 0 0 34px; border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-sm);
  }
  .blog-detail__hero img { width: 100%; height: auto; display: block; }
  .blog-detail__share {
    display: flex; align-items: center; flex-wrap: wrap; gap: 14px;
    margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--line);
  }
  .blog-detail__share-label { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--c-text); }
  .blog-detail__share-label i { color: var(--c-blue); }
  .blog-detail__share-list { display: flex; gap: 10px; list-style: none; margin: 0; padding: 0; }
  .blog-detail__share-btn {
    width: 42px; height: 42px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--c-bg-soft); color: var(--c-navy);
    border: 1px solid var(--line); font-size: 17px;
    transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
  }
  .blog-detail__share-btn:hover { background: var(--c-blue); color: #fff; transform: translateY(-3px); border-color: var(--c-blue); }
  .blog-detail__share-btn.is-copied { background: #16a34a; color: #fff; border-color: #16a34a; }

  /* ==========================================================================
     PRIVATE CHARTERS landing (pages/private-charters.php) — port 1:1 iz
     Archive.zip private-charters.html. Sekcije: pc-form (quote forma partial),
     pc-process, pc-aircraft, pc-pricing, pc-why, pc-faq. Forma koristi prostiji
     markup (charter-quote-form.php: .pc-field > label + bare input, bez ikona),
     pa su .pc-field selektori adaptirani (padding-left 14px umjesto 44px).
     ========================================================================== */
  .pc-section { position: relative; }
  .pc-section .section-head {
    flex-direction: column; align-items: center; text-align: center;
    max-width: 760px; margin: 0 auto 56px; gap: 14px;
  }
  .pc-section .section-head .eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12px; font-weight: 700; letter-spacing: .18em;
    text-transform: uppercase; color: var(--c-blue); margin: 0;
  }
  .pc-section .section-head .eyebrow::before,
  .pc-section .section-head .eyebrow::after {
    content: ""; width: 28px; height: 2px; background: var(--c-blue); border-radius: 2px;
  }
  .pc-section .section-head h2 {
    font-size: clamp(30px, 3.6vw, 44px); font-weight: 700;
    letter-spacing: -0.02em; line-height: 1.15; color: var(--c-text); margin: 0;
  }
  .pc-section .section-head p {
    font-size: 17px; line-height: 1.65; color: var(--c-muted); margin: 0; max-width: 660px;
  }
  .pc-section.pc-on-dark .section-head .eyebrow { color: var(--orange); background-color: transparent; }
  .pc-section.pc-on-dark .section-head .eyebrow::before,
  .pc-section.pc-on-dark .section-head .eyebrow::after { background: var(--orange); }
  .pc-section.pc-on-dark .section-head h2 { color: #fff; }
  .pc-section.pc-on-dark .section-head p { color: rgba(255,255,255,.82); }

  /* ----- QUOTE FORM (pc-form-section) — premium dark gradient + wave ----- */
  .pc-form-section {
    padding: 110px 0 160px;
    background:
      linear-gradient(90deg, transparent 0%, rgba(255,255,255,.55) 22%, rgba(255,255,255,.95) 50%, rgba(255,255,255,.55) 78%, transparent 100%) top center / 100% 1.5px no-repeat,
      radial-gradient(ellipse 60% 8% at 50% 0%, rgba(255,255,255,.18) 0%, transparent 70%),
      radial-gradient(ellipse 80% 60% at 20% 0%, rgba(37,99,235,.25) 0%, transparent 60%),
      radial-gradient(ellipse 60% 50% at 100% 30%, rgba(247,127,0,.10) 0%, transparent 65%),
      radial-gradient(ellipse 70% 60% at 50% 100%, rgba(37,99,235,.16) 0%, transparent 60%),
      linear-gradient(180deg, #0a1733 0%, #0e1c3d 50%, #0a1733 100%);
    position: relative; overflow: hidden;
  }
  .pc-form-section::before {
    content: ""; position: absolute; inset: 0;
    background-image:
      radial-gradient(circle, rgba(255,255,255,.05) 1.4px, transparent 1.4px),
      radial-gradient(circle, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 56px 56px, 28px 28px;
    background-position: 0 0, 14px 14px;
    pointer-events: none; z-index: 0;
  }
  .pc-form-section::after {
    content: ""; position: absolute; left: -2px; right: -2px; bottom: -1px; height: 90px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90' preserveAspectRatio='none'><path d='M0,90 L0,30 C240,80 480,5 720,30 C960,55 1200,80 1440,30 L1440,90 Z' fill='%23ffffff'/></svg>");
    background-size: 100% 100%; background-repeat: no-repeat;
    pointer-events: none; z-index: 2;
  }
  .pc-form-section > .container { position: relative; z-index: 1; }
  .pc-form-card {
    background: #fff; border-radius: 20px;
    box-shadow: 0 30px 60px rgba(5,11,30,.35), 0 0 0 1px rgba(255,255,255,.04);
    padding: 44px 44px 36px; max-width: 960px; margin: 0 auto; position: relative;
  }
  .pc-form-card::before {
    content: ""; position: absolute; top: 0; left: 44px; right: 44px; height: 4px;
    background: linear-gradient(90deg, var(--c-blue) 0%, var(--orange) 100%);
    border-radius: 0 0 4px 4px;
  }
  .pc-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
  .pc-form-grid .pc-full { grid-column: 1 / -1; }
  .pc-field { display: flex; flex-direction: column; gap: 8px; position: relative; }
  .pc-field label {
    font-size: 12px; font-weight: 600; letter-spacing: .08em;
    text-transform: uppercase; color: #5b6678;
  }
  .pc-field label .pc-opt { text-transform: none; letter-spacing: 0; color: #a3acba; font-weight: 500; }
  .pc-field input,
  .pc-field select,
  .pc-field textarea {
    width: 100%; border: 1.5px solid #e2e6ee; border-radius: 12px;
    padding: 13px 14px; font: inherit; font-size: 15px; color: var(--c-text);
    background: #fff; transition: border-color .2s ease, box-shadow .2s ease;
  }
  .pc-field textarea { resize: vertical; min-height: 110px; }
  .pc-field input::placeholder, .pc-field textarea::placeholder { color: #a3acba; opacity: 1; }
  .pc-field select {
    appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 38px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b6678' stroke-width='2.4'><path d='M6 9l6 6 6-6'/></svg>");
    background-repeat: no-repeat; background-position: right 14px center; background-size: 16px;
  }
  .pc-field input:focus, .pc-field select:focus, .pc-field textarea:focus {
    outline: none; border-color: var(--c-blue); box-shadow: 0 0 0 4px rgba(37,99,235,.12);
  }

  /* Custom time picker (quote forma) — paritet sa hero booking dropdown-om:
     trigger izgleda kao .pc-field input, a lista je scrollable panel (max-height)
     umjesto flatpickr time spinnera / native select popupa. JS je dijeljen sa
     herojem (charter-inquiry.js setupTimePicker preko [data-timepick]). */
  .pc-timepick__trigger {
    width: 100%; display: flex; align-items: center; gap: 8px;
    border: 1.5px solid #e2e6ee; border-radius: 12px;
    padding: 13px 14px; font: inherit; font-size: 15px; color: var(--c-text);
    background: #fff; cursor: pointer; text-align: left;
    transition: border-color .2s ease, box-shadow .2s ease;
  }
  .pc-timepick__trigger::after {
    content: ""; width: 16px; height: 16px; flex-shrink: 0; margin-left: auto;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b6678' stroke-width='2.4'><path d='M6 9l6 6 6-6'/></svg>") no-repeat center / 16px;
  }
  .pc-timepick__trigger:focus-visible,
  .pc-timepick__trigger[aria-expanded="true"] {
    outline: none; border-color: var(--c-blue); box-shadow: 0 0 0 4px rgba(37,99,235,.12);
  }
  .pc-timepick__value { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .pc-timepick.is-empty .pc-timepick__value { color: #a3acba; }
  .pc-timepick__list {
    position: absolute; top: calc(100% + 8px); left: 0; z-index: 30;
    width: 100%; max-height: 264px; overflow-y: auto;
    margin: 0; padding: 6px; list-style: none;
    background: #fff; border: 1px solid #e2e6ee; border-radius: 12px;
    box-shadow: 0 20px 44px -12px rgba(10,23,51,.30);
  }
  .pc-timepick__list.tp-up { top: auto; bottom: calc(100% + 8px); box-shadow: 0 -20px 44px -12px rgba(10,23,51,.30); }
  .pc-timepick__list[hidden] { display: none; }
  .pc-timepick__item {
    padding: 10px 12px; border-radius: 8px; font-size: 15px; color: var(--c-text);
    cursor: pointer; white-space: nowrap;
  }
  .pc-timepick__item.is-active, .pc-timepick__item:hover { background: #eef2f7; }
  .pc-timepick__item.is-selected { background: #eef2f7; color: var(--c-blue); font-weight: 600; }

  /* Trip type segmentni toggle (One Way / Round Trip) — charter-quote-form.php. */
  .pc-field__legend {
    font-size: 12px; font-weight: 600; letter-spacing: .08em;
    text-transform: uppercase; color: #5b6678; display: block; margin-bottom: 10px;
  }
  .pc-triptype { gap: 0; }
  .pc-segment {
    display: inline-flex; padding: 5px; gap: 5px; align-self: flex-start;
    background: #eef2fb; border: 1.5px solid #e2e6ee; border-radius: 14px;
  }
  .pc-segment__opt {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 11px 26px; border: 0; border-radius: 10px; cursor: pointer;
    font: inherit; font-size: 14px; font-weight: 600; color: #5b6678;
    background: transparent; transition: background .2s ease, color .2s ease, box-shadow .2s ease;
  }
  .pc-segment__opt i { font-size: 15px; }
  .pc-segment__opt:hover { color: var(--c-blue); }
  .pc-segment__opt.is-active {
    background: #fff; color: var(--c-blue);
    box-shadow: 0 2px 8px rgba(15, 23, 42, .1);
  }
  /* Vidljivi flatpickr altInput u quote formi je readonly → kursor pokazivač. */
  .pc-field input[readonly] { cursor: pointer; background: #fff; }
  /* One Way → sakrij „Datum povratka". `.pc-field{display:flex}` nadjačava UA
     [hidden]{display:none}, pa treba eksplicitan veći-specifičnosti override. */
  .pc-field[hidden] { display: none !important; }
  .pc-form-actions {
    display: flex; align-items: center; justify-content: space-between; gap: 18px;
    margin-top: 24px; padding-top: 22px; border-top: 1px solid #eef1f6; flex-wrap: wrap;
  }
  .pc-form-actions .pc-note {
    font-size: 13px; color: var(--c-muted); line-height: 1.5;
    flex: 1 1 280px; display: flex; align-items: flex-start; gap: 10px; margin: 0;
  }
  .pc-form-actions .pc-note i { flex-shrink: 0; font-size: 16px; color: var(--c-blue); margin-top: 1px; }
  .pc-form-actions .btn {
    min-width: 200px; height: 50px; padding: 0 28px; font-size: 14px;
    letter-spacing: .03em; text-transform: uppercase;
    background: linear-gradient(135deg, var(--c-blue) 0%, #1d4ed8 100%);
    border: 0; color: #fff; border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    box-shadow: 0 12px 28px rgba(37,99,235,.35);
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .pc-form-actions .btn:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(37,99,235,.42); }

  /* ----- PROCESS STEPS (pc-process) ----- */
  .pc-process { padding: 110px 0; background: #fff; position: relative; overflow: hidden; }
  .pc-process::before {
    content: ""; position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(37,99,235,.08) 1.2px, transparent 1.2px);
    background-size: 28px 28px; opacity: .55; z-index: 0; pointer-events: none;
  }
  .pc-process > .container { position: relative; z-index: 1; }
  .pc-steps {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
    counter-reset: step-counter; position: relative;
  }
  .pc-steps::before {
    content: ""; position: absolute; top: 56px; left: 12%; right: 12%; height: 2px;
    background-image: linear-gradient(90deg, var(--c-blue) 50%, transparent 50%);
    background-size: 12px 2px; background-repeat: repeat-x; opacity: .35; z-index: 0; pointer-events: none;
  }
  .pc-step {
    position: relative; background: #fff; border-radius: 18px; padding: 32px 24px 28px;
    box-shadow: 0 4px 14px rgba(10,23,51,.04), 0 0 0 1px var(--line);
    transition: transform .25s ease, box-shadow .25s ease; z-index: 1; text-align: center;
  }
  .pc-step:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(10,23,51,.12), 0 0 0 1px rgba(37,99,235,.25); }
  .pc-step-num {
    counter-increment: step-counter; width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, var(--c-blue), #1d4ed8); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 700; margin: -56px auto 18px;
    box-shadow: 0 8px 18px rgba(37,99,235,.32), 0 0 0 6px #fff; position: relative;
  }
  .pc-step-num::after { content: counter(step-counter, decimal-leading-zero); }
  .pc-step h3 { font-size: 18px; margin: 0 0 10px; color: var(--c-text); line-height: 1.3; font-weight: 700; }
  .pc-step p { font-size: 14.5px; line-height: 1.6; color: var(--c-muted); margin: 0; }

  /* ----- AIRCRAFT CATEGORY CARDS (pc-aircraft) ----- */
  .pc-aircraft { padding: 110px 0; background: var(--c-bg-soft); position: relative; }
  .pc-aircraft-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .pc-aircraft-card {
    background: #fff; border-radius: 18px; overflow: hidden;
    box-shadow: 0 4px 14px rgba(10,23,51,.05), 0 0 0 1px var(--line);
    display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease;
  }
  .pc-aircraft-card:hover { transform: translateY(-8px); box-shadow: 0 28px 50px rgba(10,23,51,.14), 0 0 0 1px rgba(37,99,235,.25); }
  .pc-aircraft-img { position: relative; aspect-ratio: 16 / 10; background: var(--c-bg-soft); overflow: hidden; }
  .pc-aircraft-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
  .pc-aircraft-card:hover .pc-aircraft-img img { transform: scale(1.07); }
  .pc-aircraft-tag {
    position: absolute; top: 16px; left: 16px; z-index: 2;
    display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px;
    border-radius: 999px; background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
    color: var(--c-text); font-size: 11px; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; box-shadow: 0 4px 12px rgba(0,0,0,.12);
  }
  .pc-aircraft-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
  .pc-aircraft-body h3 { font-size: 22px; margin: 0 0 12px; color: var(--c-text); line-height: 1.25; font-weight: 700; letter-spacing: -.01em; }
  .pc-aircraft-specs { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 16px; padding: 0; list-style: none; }
  .pc-aircraft-specs li {
    display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600;
    color: var(--c-blue); background: rgba(37,99,235,.08); padding: 5px 10px; border-radius: 999px;
  }
  /* highlights čipovi (kategorije flote) — isti pilule kao .pc-aircraft-specs */
  .pc-aircraft-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 16px; }
  .pc-aircraft-chip {
    display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600;
    color: var(--c-blue); background: rgba(37,99,235,.08); padding: 5px 10px; border-radius: 999px;
  }
  .pc-aircraft-body p { font-size: 15px; line-height: 1.65; color: var(--c-muted); margin: 0 0 20px; flex: 1; }
  .pc-aircraft-card .btn-link {
    align-self: flex-start; color: var(--c-blue); font-weight: 700; font-size: 14px;
    text-decoration: none; display: inline-flex; align-items: center; gap: 8px; padding: 10px 0;
    transition: gap .2s ease, color .2s ease;
  }
  .pc-aircraft-card .btn-link:hover { gap: 12px; color: #1d4ed8; }

  /* ----- WHAT'S INCLUDED (pc-pricing) ----- */
  .pc-pricing { padding: 110px 0; background: #fff; position: relative; overflow: hidden; }
  .pc-pricing::before {
    content: ""; position: absolute; top: 10%; right: -200px; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(247,127,0,.10) 0%, rgba(247,127,0,0) 70%); pointer-events: none; z-index: 0;
  }
  .pc-pricing > .container { position: relative; z-index: 1; }
  .pc-pricing-copy { max-width: 820px; margin: 0 auto; }
  .pc-pricing-copy .eyebrow {
    display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase; color: var(--orange); margin: 0 0 14px;
  }
  .pc-pricing-copy .eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--orange); border-radius: 2px; }
  .pc-pricing-copy h2 { font-size: clamp(30px, 3.4vw, 42px); font-weight: 700; letter-spacing: -.02em; margin: 0 0 18px; color: var(--c-text); line-height: 1.15; }
  .pc-pricing-copy > p { font-size: 16px; line-height: 1.7; color: var(--c-muted); margin: 0 0 28px; }
  .pc-incl-list { list-style: none; margin: 0 0 28px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .pc-incl-list li {
    display: flex; align-items: flex-start; gap: 14px; font-size: 15.5px; color: var(--c-text);
    line-height: 1.55; padding: 14px 16px; border-radius: 12px; background: #fafbff;
    border: 1px solid #eef1f6; transition: border-color .2s ease, transform .2s ease;
  }
  .pc-incl-list li:hover { border-color: rgba(37,99,235,.25); transform: translateX(4px); }
  .pc-incl-check {
    flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
    background: linear-gradient(135deg, var(--c-blue), #1d4ed8); color: #fff;
    display: inline-flex; align-items: center; justify-content: center; margin-top: 1px;
    box-shadow: 0 4px 10px rgba(37,99,235,.25); font-size: 15px;
  }
  .pc-incl-list li strong { display: block; font-weight: 700; color: var(--c-text); margin-bottom: 2px; font-size: 15px; }
  .pc-incl-list li span { color: var(--c-muted); font-size: 14px; line-height: 1.55; }
  .pc-discount-badge {
    display: inline-flex; align-items: center; gap: 16px;
    background: linear-gradient(135deg, var(--orange) 0%, #ff9a3d 100%); color: #fff;
    padding: 20px 26px; border-radius: 16px; font-weight: 600;
    box-shadow: 0 20px 40px rgba(247,127,0,.28); margin-top: 8px;
  }
  .pc-discount-badge .pc-discount-pct { font-size: 38px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
  .pc-discount-badge .pc-discount-text { font-size: 14px; line-height: 1.4; font-weight: 500; }
  .pc-discount-badge .pc-discount-text strong { display: block; font-size: 16px; font-weight: 700; }
  /* 2-kolonska varijanta (port iz private-charters.html): copy lijevo + slika desno
     sa plutajućom statistikom. Override single-col .pc-pricing-copy/.pc-incl-list. */
  .pc-pricing-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 70px; align-items: center; }
  .pc-pricing-grid .pc-pricing-copy { max-width: none; margin: 0; }
  .pc-pricing-grid .pc-incl-list { grid-template-columns: 1fr; }
  .pc-pricing-img {
    border-radius: 20px; overflow: hidden; box-shadow: 0 30px 60px rgba(10,23,51,.18);
    aspect-ratio: 4 / 5; position: relative; margin: 0;
  }
  .pc-pricing-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .pc-pricing-img .pc-float-stat {
    position: absolute; bottom: 22px; left: 22px; right: 22px; padding: 16px 18px;
    background: rgba(255,255,255,.96); backdrop-filter: blur(8px); border-radius: 14px;
    display: flex; align-items: center; gap: 14px; box-shadow: 0 12px 32px rgba(10,23,51,.18);
  }
  .pc-float-stat-icon {
    width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0; font-size: 20px;
    background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(247,127,0,.12));
    color: var(--c-blue); display: inline-flex; align-items: center; justify-content: center;
  }
  .pc-float-stat-icon svg { width: 22px; height: 22px; }
  .pc-float-stat-body strong { display: block; font-size: 15px; font-weight: 700; color: var(--c-text); }
  .pc-float-stat-body span { font-size: 13px; color: var(--c-muted); }
  @media (max-width: 1024px) {
    .pc-pricing-grid { grid-template-columns: 1fr; gap: 40px; }
    .pc-pricing-img { aspect-ratio: 16 / 9; max-width: 720px; margin: 0 auto; }
  }
  @media (max-width: 720px) { .pc-discount-badge { width: 100%; } }

  /* ----- WHY AIR JET (pc-why, dark) ----- */
  .pc-why { padding: 110px 0; background: linear-gradient(180deg, #0a1733 0%, #0f1f44 100%); position: relative; overflow: hidden; }
  .pc-why::before {
    content: ""; position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.04) 1.5px, transparent 1.5px);
    background-size: 32px 32px; pointer-events: none; z-index: 0;
  }
  .pc-why::after {
    content: ""; position: absolute; top: -200px; left: 50%; width: 800px; height: 400px;
    background: radial-gradient(ellipse, rgba(247,127,0,.18) 0%, rgba(247,127,0,0) 65%);
    transform: translateX(-50%); pointer-events: none; z-index: 0;
  }
  .pc-why > .container { position: relative; z-index: 1; }
  .pc-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
  .pc-why-card {
    background: linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 100%);
    border: 1px solid rgba(255,255,255,.10); border-radius: 18px; padding: 32px 24px 28px;
    text-align: left; transition: transform .25s ease, border-color .25s ease, background .25s ease;
    backdrop-filter: blur(8px); position: relative; overflow: hidden;
  }
  .pc-why-card::before {
    content: ""; position: absolute; top: 0; left: 0; width: 60px; height: 60px;
    background: radial-gradient(circle at 0% 0%, rgba(37,99,235,.32) 0%, rgba(37,99,235,0) 70%); pointer-events: none;
  }
  .pc-why-card:hover {
    transform: translateY(-6px); border-color: rgba(37,99,235,.5);
    background: linear-gradient(180deg, rgba(37,99,235,.12) 0%, rgba(255,255,255,.02) 100%);
  }
  .pc-why-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: linear-gradient(135deg, rgba(37,99,235,.32), rgba(247,127,0,.22)); color: #fff;
    display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px;
    box-shadow: 0 8px 18px rgba(37,99,235,.25); font-size: 26px;
  }
  .pc-why-card h3 { font-size: 17px; margin: 0 0 10px; color: #fff; font-weight: 700; letter-spacing: -.01em; }
  .pc-why-card p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.72); margin: 0; }

  /* ----- FAQ ACCORDION (pc-faq) ----- */
  .pc-faq { padding: 110px 0 120px; background: var(--c-bg-soft); position: relative; overflow: hidden; }
  .pc-faq::before {
    content: ""; position: absolute; top: 20%; right: -160px; width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(37,99,235,.08) 0%, rgba(37,99,235,0) 70%); pointer-events: none; z-index: 0;
  }
  .pc-faq > .container { position: relative; z-index: 1; }
  .pc-faq-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
  .pc-faq-item { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: border-color .25s ease, box-shadow .25s ease; }
  .pc-faq-item:hover { border-color: rgba(37,99,235,.25); }
  .pc-faq-item.is-open { border-color: rgba(37,99,235,.45); box-shadow: 0 18px 36px rgba(10,23,51,.08); }
  .pc-faq-q {
    width: 100%; background: none; border: 0; padding: 24px 28px; font: inherit;
    font-size: 16.5px; font-weight: 700; color: var(--c-text); text-align: left; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 18px; line-height: 1.4; transition: color .2s ease;
  }
  .pc-faq-q:hover { color: var(--c-blue); }
  .pc-faq-toggle {
    flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
    background: rgba(37,99,235,.10); color: var(--c-blue);
    display: inline-flex; align-items: center; justify-content: center; font-size: 16px;
    transition: transform .35s cubic-bezier(.4,0,.2,1), background .25s ease, color .25s ease;
  }
  .pc-faq-item.is-open .pc-faq-toggle { background: var(--orange); color: #fff; transform: rotate(135deg); }
  .pc-faq-a { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1); }
  .pc-faq-a-inner { padding: 0 28px 26px; font-size: 15.5px; line-height: 1.7; color: var(--c-muted); }
  .pc-faq-item.is-open .pc-faq-a { max-height: 600px; }

  @media (max-width: 1024px) {
    .pc-steps { grid-template-columns: repeat(2, 1fr); }
    .pc-steps::before { display: none; }
    .pc-aircraft-grid { grid-template-columns: repeat(2, 1fr); }
    .pc-why-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 720px) {
    .pc-form-section { padding: 80px 0 60px; }
    .pc-form-card { padding: 28px 22px 24px; }
    .pc-form-card::before { left: 22px; right: 22px; }
    .pc-form-grid { grid-template-columns: 1fr; gap: 14px; }
    .pc-form-actions { flex-direction: column; align-items: stretch; gap: 14px; }
    .pc-form-actions .btn { width: 100%; }
    .pc-process, .pc-aircraft, .pc-pricing, .pc-why { padding: 80px 0; }
    .pc-steps, .pc-aircraft-grid, .pc-why-grid, .pc-incl-list { grid-template-columns: 1fr; }
    .pc-faq { padding: 80px 0 90px; }
    .pc-faq-q { padding: 20px 22px; font-size: 15.5px; }
    .pc-faq-a-inner { padding: 0 22px 22px; font-size: 14.5px; }
    .pc-discount-badge { width: 100%; }
  }

  /* ==========================================================================
     FLEET / JETS PAGE (charter/fleet.php) — „Tipovi privatnih aviona".
     Port 1:1 iz Archive.zip private-jet-types.html (.acq-hero / .jets-section /
     .jets-filter / .jets-grid / .jet-card / .jc-*). VAŽNO: .jet-card je
     SKOPIRAN pod .jets-grid jer airjet-home.css definiše bare .jet-card kao
     HOME sekciju (padding:80px) — scope sprječava koliziju. .cta-banner i .btn*
     dolaze iz airjet-home/base.css (reuse, ne redefinišu se).
     ========================================================================== */

  /* ----- Acquisition-style page hero (jet bg + overlay + lijevo poravnat blok) ----- */
  .acq-hero {
    position: relative;
    min-height: 70vh;
    min-height: 70svh;
    display: flex;
    align-items: flex-end;
    padding-top: calc(var(--header-h) + 80px);
    padding-bottom: 60px;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
  }
  .acq-hero-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
  }
  .acq-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,23,51,.35) 0%, rgba(10,23,51,.75) 100%);
    z-index: -1;
  }
  .acq-hero-content { max-width: 780px; }
  .acq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    margin-bottom: 18px;
    padding: 7px 16px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    line-height: 1;
  }
  .acq-eyebrow svg { flex-shrink: 0; display: block; }
  .acq-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 600;
    letter-spacing: -.03em;
    margin: 0 0 16px;
    line-height: 1.05;
  }
  .acq-sub {
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.6;
    margin: 0 0 28px;
    color: rgba(255,255,255,.92);
    max-width: 640px;
  }
  .acq-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

  /* ----- Jets listing section ----- */
  .jets-section { padding: 60px 0 100px; background: var(--c-bg); }
  .jets-section .section-head {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 36px;
    gap: 10px;
  }
  .jets-section .section-head .eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--c-blue);
    letter-spacing: .14em;
    text-transform: uppercase;
  }
  .jets-section .section-head .big-title { margin: 0; }
  .jets-section .section-head p { margin: 0; max-width: 680px; }

  /* Category filter pills (locale-aware labele iz view-a) */
  .jets-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
  }
  .jets-filter button {
    appearance: none;
    border: 1px solid var(--c-border);
    background: #fff;
    color: var(--c-muted);
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .02em;
    padding: 9px 18px;
    border-radius: 999px;
    cursor: pointer;
    transition: all .2s var(--ease);
  }
  .jets-filter button:hover {
    border-color: var(--c-blue);
    color: var(--c-blue);
  }
  .jets-filter button.is-active {
    background: var(--c-navy);
    border-color: var(--c-navy);
    color: #fff;
  }

  /* Jet cards grid (jedan grid; filter krije/prikazuje po data-category) */
  .jets-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .jets-grid .jet-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  }
  .jets-grid .jet-card[hidden] { display: none; }
  .jets-grid .jet-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(37, 99, 235, .18);
  }
  .jc-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--c-bg-soft);
  }
  .jc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s var(--ease);
  }
  .jets-grid .jet-card:hover .jc-image img { transform: scale(1.04); }
  /* Panoramske slike (ratio ≥ 2, npr. Citation XLS) — contain umjesto zoom-crop
     da se vidi cijeli avion. Bijela traka se stapa sa karticom/stranom (obje #fff). */
  .jets-grid .jc-image--contain { background: #fff; }
  .jets-grid .jc-image--contain img { object-fit: contain; }
  .jc-category {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(10, 23, 51, .85);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
  }
  .jc-body {
    padding: 26px 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
  }
  .jc-head { display: flex; flex-direction: column; gap: 4px; }
  .jc-title {
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -.01em;
    margin: 0;
    color: var(--c-text);
    line-height: 1.25;
  }
  .jc-reg {
    font-size: 12px;
    font-weight: 600;
    color: var(--c-blue);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin: 0;
  }
  .jc-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
    padding: 16px 0;
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
  }
  .jc-spec { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
  .jc-spec-label {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--c-muted);
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .jc-spec-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--c-text);
    line-height: 1.3;
  }
  .jc-desc {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--c-muted);
    margin: 0;
  }
  .jc-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .jc-amenity {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--c-bg-soft);
    color: var(--c-muted);
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 999px;
  }
  .jc-cta {
    margin-top: auto;
    width: 100%;
    justify-content: center;
  }
  .jets-section .fineprint {
    font-size: 12px;
    color: var(--c-muted);
    margin-top: 32px;
    text-align: center;
    max-width: none;
  }

  @media (min-width: 720px) {
    .jets-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  }
  @media (min-width: 1280px) {
    .jets-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 719px) {
    .acq-hero { min-height: 60svh; padding-top: calc(var(--header-h) + 50px); padding-bottom: 40px; }
    .acq-title { font-size: clamp(32px, 9vw, 44px); }
  }

  /* ==========================================================================
     CONTACT PAGE (pages/contact.php) — port 1:1 iz contact-us.html.
     .acq-hero (reuse) + .ct-main (info kolona + forma) + .ct-quick (3 kartice)
     + .cta-banner (reuse). Icon-input wrapper (.pc-field-input/.pc-field-icon)
     skopiran pod .ct-form-wrap da NE dira charter-quote-form (bare .pc-field,
     padding-left 14px). .has-select je markup-only (strelica iz .pc-field select
     bg-image). Tokeni (--c-blue/--orange/--c-border/--c-muted/--c-text/
     --c-bg-soft) iz airjet-base.css :root.
     ========================================================================== */
  .ct-main {
    padding: 80px 0 120px;
    background: #fff;
    position: relative;
    overflow: hidden;
  }
  .ct-main::before {
    content: "";
    position: absolute;
    top: -180px; right: -180px;
    width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(37,99,235,.08) 0%, rgba(37,99,235,0) 70%);
    pointer-events: none;
    z-index: 0;
  }
  .ct-main::after {
    content: "";
    position: absolute;
    bottom: -160px; left: -160px;
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(247,127,0,.06) 0%, rgba(247,127,0,0) 70%);
    pointer-events: none;
    z-index: 0;
  }
  .ct-main > .container { position: relative; z-index: 1; }

  .ct-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 60px;
    align-items: start;
  }

  /* Left column — info */
  .ct-info { position: sticky; top: 110px; }
  .ct-info .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--c-blue);
    margin: 0 0 16px;
  }
  .ct-info .eyebrow::before {
    content: "";
    width: 32px; height: 2px;
    background: var(--c-blue);
    border-radius: 2px;
  }
  .ct-info h2 {
    font-size: clamp(26px, 2.6vw, 34px);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.2;
    color: var(--c-text);
    margin: 0 0 16px;
  }
  .ct-info > p {
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--c-muted);
    margin: 0 0 32px;
  }

  .ct-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
  }
  .ct-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    border-radius: 14px;
    background: #fafbff;
    border: 1px solid #eef1f6;
    text-decoration: none;
    transition: transform .2s ease, border-color .25s ease, background .25s ease;
  }
  .ct-card:hover {
    transform: translateY(-2px);
    border-color: rgba(37,99,235,.35);
    background: #fff;
    box-shadow: 0 14px 28px rgba(10,23,51,.08);
  }
  .ct-card-icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(247,127,0,.10));
    color: var(--c-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .ct-card-icon svg { width: 22px; height: 22px; }
  .ct-card-body { flex: 1; min-width: 0; }
  .ct-card-label {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin: 0 0 4px;
  }
  .ct-card-value {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--c-text);
    line-height: 1.35;
    word-break: break-word;
  }
  .ct-card-arrow {
    flex-shrink: 0;
    width: 18px; height: 18px;
    color: var(--c-muted);
    transition: transform .2s ease, color .2s ease;
  }
  .ct-card:hover .ct-card-arrow { color: var(--c-blue); transform: translateX(3px); }

  .ct-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .ct-socials-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-right: 4px;
  }
  .ct-social-link {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--c-bg-soft);
    color: var(--c-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, color .2s ease, transform .2s ease;
  }
  .ct-social-link:hover {
    background: var(--c-blue);
    color: #fff;
    transform: translateY(-2px);
  }
  .ct-social-link svg { width: 18px; height: 18px; }

  /* Right column — form card */
  .ct-form-wrap {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(10,23,51,.10), 0 0 0 1px var(--c-border);
    padding: 40px 44px 44px;
    position: relative;
    overflow: hidden;
  }
  .ct-form-wrap::before {
    content: "";
    position: absolute;
    top: 0; left: 44px; right: 44px;
    height: 4px;
    background: linear-gradient(90deg, var(--c-blue) 0%, var(--orange) 100%);
    border-radius: 0 0 4px 4px;
  }
  .ct-form-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
    padding-bottom: 22px;
    border-bottom: 1px solid #eef1f6;
  }
  .ct-form-head .pc-card-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(247,127,0,.12));
    color: var(--c-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .ct-form-head .pc-card-icon svg { width: 22px; height: 22px; }
  .ct-form-head h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--c-text);
    margin: 0 0 4px;
    letter-spacing: -.01em;
    line-height: 1.2;
  }
  .ct-form-head p {
    font-size: 14px;
    color: var(--c-muted);
    margin: 0;
    line-height: 1.5;
  }

  /* Icon-in-input — SAMO za kontakt formu (.ct-form-wrap), da ne dira
     charter-quote-form koji koristi bare .pc-field input (padding-left 14px). */
  .ct-form-wrap .pc-field-input { position: relative; }
  .ct-form-wrap .pc-field-icon {
    position: absolute;
    left: 14px; top: 50%;
    transform: translateY(-50%);
    width: 18px; height: 18px;
    color: var(--c-muted);
    opacity: .65;
    pointer-events: none;
    transition: color .2s ease, opacity .2s ease;
  }
  .ct-form-wrap .pc-field-input input,
  .ct-form-wrap .pc-field-input select { padding-left: 44px; }
  .ct-form-wrap .pc-field-input:focus-within .pc-field-icon { color: var(--c-blue); opacity: 1; }

  @media (max-width: 1024px) {
    .ct-main { padding: 80px 0 100px; }
    .ct-grid { grid-template-columns: 1fr; gap: 40px; }
    .ct-info { position: static; }
  }
  @media (max-width: 560px) {
    .ct-form-wrap { padding: 28px 22px 24px; }
    .ct-form-wrap::before { left: 22px; right: 22px; }
  }

  /* ----- Quick help (3-up cards) ----- */
  .ct-quick {
    padding: 100px 0 120px;
    background: var(--c-bg-soft);
    position: relative;
    overflow: hidden;
  }
  .ct-quick > .container { position: relative; z-index: 1; }
  .ct-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .ct-quick-card {
    background: #fff;
    border-radius: 18px;
    padding: 32px 28px 28px;
    box-shadow: 0 4px 14px rgba(10,23,51,.04), 0 0 0 1px var(--c-border);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .ct-quick-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--c-blue) 0%, var(--orange) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
  }
  .ct-quick-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(10,23,51,.12), 0 0 0 1px rgba(37,99,235,.25);
  }
  .ct-quick-card:hover::before { transform: scaleX(1); }
  .ct-quick-icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(247,127,0,.10));
    color: var(--c-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
  }
  .ct-quick-icon svg { width: 28px; height: 28px; }
  .ct-quick-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--c-text);
    margin: 0 0 10px;
    letter-spacing: -.01em;
  }
  .ct-quick-card p {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--c-muted);
    margin: 0 0 18px;
    flex: 1;
  }
  .ct-quick-card .ct-quick-link {
    color: var(--c-blue);
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap .2s ease;
  }
  .ct-quick-card:hover .ct-quick-link { gap: 12px; }
  .ct-quick-link svg { width: 14px; height: 14px; }

  @media (max-width: 1024px) { .ct-quick-grid { grid-template-columns: 1fr; gap: 18px; } }
  @media (max-width: 560px) { .ct-quick { padding: 70px 0 90px; } }

  /* ==========================================================================
     ABOUT PAGE (pages/about.php) — port 1:1 iz about-us.html.
     .acq-hero (reuse) + .ab-story (slika + copy + statistika) + .ab-services
     (4 numerisane kartice 01–04, .pc-section) + .ab-values (4 stuba, tamna
     .pc-on-dark sekcija) + .cta-banner (reuse). Tokeni (--c-blue/--orange/
     --c-text/--c-muted/--line/--c-bg-soft) dolaze iz airjet base/home CSS-a.
     ========================================================================== */
  /* CTA banner dugmad centrirana po širini (hero .acq-hero-ctas ostaje lijevo). */
  .cta-banner .acq-hero-ctas { justify-content: center; }
  .ab-story {
    padding: 120px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
  }
  .ab-story::before {
    content: "";
    position: absolute;
    top: 8%; left: -180px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(37,99,235,.08) 0%, rgba(37,99,235,0) 70%);
    pointer-events: none;
    z-index: 0;
  }
  .ab-story > .container { position: relative; z-index: 1; }
  .ab-story-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
  }
  .ab-story-figure {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(10,23,51,.18);
    aspect-ratio: 4 / 5;
  }
  .ab-story-figure img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  .ab-story-figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10,23,51,.35) 100%);
    pointer-events: none;
  }
  /* Floating decorative frame behind image */
  .ab-story-frame {
    position: absolute;
    inset: 28px -28px -28px 28px;
    border: 2px solid var(--c-blue);
    border-radius: 24px;
    z-index: -1;
    opacity: .35;
  }
  .ab-story-img-wrap {
    position: relative;
  }

  .ab-story-copy .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--c-blue);
    margin: 0 0 16px;
  }
  .ab-story-copy .eyebrow::before {
    content: "";
    width: 32px; height: 2px;
    background: var(--c-blue);
    border-radius: 2px;
  }
  .ab-story-copy h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: var(--c-text);
    margin: 0 0 22px;
  }
  .ab-story-copy h2 .ab-accent { color: var(--c-blue); font-style: italic; font-weight: 600; }
  .ab-story-copy p {
    font-size: 16.5px;
    line-height: 1.75;
    color: var(--c-muted);
    margin: 0 0 18px;
  }
  .ab-story-copy p strong {
    color: var(--c-text);
    font-weight: 600;
  }

  .ab-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
  }
  .ab-stat-num {
    display: block;
    font-size: clamp(28px, 3.4vw, 36px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--c-blue);
    margin-bottom: 6px;
  }
  .ab-stat-label {
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--c-muted);
    line-height: 1.4;
  }

  @media (max-width: 1024px) {
    .ab-story { padding: 90px 0; }
    .ab-story-grid { grid-template-columns: 1fr; gap: 50px; }
    .ab-story-figure { aspect-ratio: 16 / 11; max-width: 700px; margin: 0 auto; }
    .ab-story-frame { inset: 20px -20px -20px 20px; }
  }
  @media (max-width: 560px) {
    .ab-stats { grid-template-columns: 1fr 1fr; gap: 14px; }
  }

  /* ----- ABOUT — OUR SERVICES (4 numbered cards) ----- */
  .ab-services {
    padding: 110px 0;
    background: var(--c-bg-soft, #f1f4f9);
    position: relative;
    overflow: hidden;
  }
  .ab-services::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(37,99,235,.06) 1.2px, transparent 1.2px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
  }
  .ab-services > .container { position: relative; z-index: 1; }

  .ab-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }
  .ab-service {
    background: #fff;
    border-radius: 18px;
    padding: 32px 26px 30px;
    box-shadow: 0 4px 14px rgba(10,23,51,.04), 0 0 0 1px var(--line);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .ab-service::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--c-blue) 0%, var(--orange) 100%);
    transform: scaleX(.25);
    transform-origin: left;
    transition: transform .35s ease;
  }
  .ab-service:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(10,23,51,.14), 0 0 0 1px rgba(37,99,235,.25);
  }
  .ab-service:hover::before { transform: scaleX(1); }
  .ab-service-num {
    position: absolute;
    top: 22px; right: 24px;
    font-size: 60px;
    font-weight: 800;
    line-height: 1;
    color: rgba(37,99,235,.08);
    letter-spacing: -.04em;
    pointer-events: none;
  }
  .ab-service-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(247,127,0,.10));
    color: var(--c-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
  }
  .ab-service-icon svg { width: 26px; height: 26px; }
  .ab-service h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--c-text);
    margin: 0 0 10px;
    letter-spacing: -.01em;
  }
  .ab-service p {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--c-muted);
    margin: 0 0 18px;
    flex: 1;
  }
  .ab-service .btn-link {
    align-self: flex-start;
    color: var(--c-blue);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap .2s ease;
  }
  .ab-service .btn-link:hover { gap: 12px; }
  .ab-service .btn-link svg { width: 14px; height: 14px; }

  @media (max-width: 1024px) { .ab-services-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) {
    .ab-services { padding: 80px 0; }
    .ab-services-grid { grid-template-columns: 1fr; }
  }

  /* ----- ABOUT — VALUES (4 pillars on dark navy) ----- */
  .ab-values {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a1733 0%, #0e1c3d 100%);
    position: relative;
    overflow: hidden;
  }
  .ab-values::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.04) 1.4px, transparent 1.4px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
  }
  .ab-values::after {
    content: "";
    position: absolute;
    top: -180px; right: -180px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(247,127,0,.16) 0%, rgba(247,127,0,0) 65%);
    pointer-events: none;
    z-index: 0;
  }
  .ab-values > .container { position: relative; z-index: 1; }

  .ab-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }
  .ab-value {
    background: linear-gradient(180deg, rgba(255,255,255,.07) 0%, rgba(255,255,255,.02) 100%);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    padding: 36px 26px 30px;
    backdrop-filter: blur(8px);
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
    position: relative;
    overflow: hidden;
  }
  .ab-value::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100px; height: 100px;
    background: radial-gradient(circle at 0% 0%, rgba(247,127,0,.22) 0%, rgba(247,127,0,0) 70%);
    pointer-events: none;
  }
  .ab-value:hover {
    transform: translateY(-6px);
    border-color: rgba(247,127,0,.45);
    background: linear-gradient(180deg, rgba(247,127,0,.10) 0%, rgba(255,255,255,.02) 100%);
  }
  .ab-value-icon {
    width: 58px; height: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(247,127,0,.32), rgba(37,99,235,.22));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 10px 22px rgba(247,127,0,.20);
  }
  .ab-value-icon svg { width: 30px; height: 30px; }
  .ab-value h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    letter-spacing: -.01em;
  }
  .ab-value p {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255,255,255,.72);
    margin: 0;
  }
  @media (max-width: 1024px) { .ab-values-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) {
    .ab-values { padding: 80px 0; }
    .ab-values-grid { grid-template-columns: 1fr; }
  }

  /* ==========================================================================
     ACQUISITION PAGE (pages/acquisition.php) — port 1:1 iz aircraft-acquisition.html.
     .acq-hero (reuse, definisan gore) + .acq-intro (.split: copy + figure) +
     .process (.process-steps numerisane kartice) + .cta-banner (reuse). Tokeni
     (--c-bg/--c-bg-soft/--c-blue/--c-text/--c-muted/--radius-lg/--shadow/--ease)
     dolaze iz airjet base/home CSS-a. RANIJE NIJE BIO PORTOVAN → sekcije bez stila.
     ========================================================================== */
  /* ----- Naš pristup (intro split) ----- */
  .acq-intro { padding: 80px 0; background: var(--c-bg); }
  .acq-intro .split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }
  .acq-intro h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    letter-spacing: -.02em;
    margin: 0 0 14px;
    color: var(--c-text);
  }
  .acq-intro .eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--c-blue);
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .acq-intro p {
    color: var(--c-muted);
    font-size: 15.5px;
    line-height: 1.7;
    margin: 0 0 14px;
  }
  .acq-intro .acq-cta { margin-top: 18px; min-width: 220px; }
  @media (min-width: 720px) {
    .acq-intro .split { grid-template-columns: 1.1fr 1fr; gap: 60px; }
    .acq-intro { padding: 100px 0; }
  }

  /* ----- Naš proces (numerisane kartice) ----- */
  .process { padding: 44px 0 80px; background: #fff; }
  .process .section-head {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 36px;
    gap: 10px;
  }
  .process .section-head .eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--c-blue);
    letter-spacing: .14em;
    text-transform: uppercase;
  }
  .process .section-head .big-title { margin: 0; }
  .process .section-head p { margin: 0; max-width: 680px; }
  .process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .process-step {
    background: var(--c-bg-soft);
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    position: relative;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
    border: 1px solid transparent;
  }
  .process-step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: rgba(37, 99, 235, .15);
  }
  .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--c-blue);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -.01em;
    margin-bottom: 18px;
  }
  .step-title {
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 10px;
    letter-spacing: -.01em;
    color: var(--c-text);
    line-height: 1.3;
  }
  .step-text {
    color: var(--c-muted);
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0;
  }
  @media (min-width: 720px) {
    .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  }
  @media (min-width: 1024px) {
    .process-steps { grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .process { padding: 60px 0 100px; }
  }

  /* ==========================================================================
     BLOG PAGE — PREMIUM EDITORIAL LAYOUT (pages/blog-index.php, handle blog_archive).
     Port 1:1 iz blog.html: .blog-hero (tamni hero + panel) + .blog-index/.blog-cards
     (.blog-tile teaseri) + .blog-articles/.blog-article (aside num/meta + .blog-prose
     inline tijela + .blog-article-cta). RANIJE NIJE BIO PORTOVAN (stari .blog-page/
     .blog-card card-grid je drugačiji dizajn). Tokeni iz airjet base/home CSS-a.
     ========================================================================== */
  .blog-hero {
    position: relative;
    min-height: 78vh;
    min-height: 78svh;
    padding-top: calc(var(--header-h) + 92px);
    padding-bottom: 96px;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, #08142d 0%, #0e1c3d 54%, #08142d 100%);
  }
  .blog-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .26;
    z-index: 0;
  }
  .blog-hero::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 86% 18%, rgba(247,127,0,.24), transparent 64%),
      linear-gradient(180deg, rgba(8,20,45,.05) 0%, rgba(8,20,45,.88) 100%);
    z-index: 1;
    pointer-events: none;
  }
  .blog-hero::after {
    content: "";
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.055) 1.2px, transparent 1.2px);
    background-size: 34px 34px;
    z-index: 1;
    pointer-events: none;
  }
  .blog-hero .container { position: relative; z-index: 2; }
  .blog-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 56px;
    align-items: end;
  }
  .blog-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    margin-bottom: 26px;
    border: 1px solid rgba(247,127,0,.42);
    border-radius: 999px;
    background: rgba(247,127,0,.10);
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
  }
  .blog-hero-kicker svg { width: 14px; height: 14px; }
  .blog-hero h1 {
    max-width: 820px;
    margin: 0 0 24px;
    color: #fff;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1.02;
    letter-spacing: -.035em;
    font-weight: 800;
  }
  .blog-hero h1 em {
    color: var(--orange);
    font-style: italic;
    font-weight: 650;
  }
  .blog-hero-lead {
    max-width: 690px;
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: clamp(16px, 1.45vw, 19px);
    line-height: 1.7;
  }
  .blog-hero-panel {
    padding: 28px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
    box-shadow: 0 28px 70px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.14);
  }
  .blog-hero-panel span {
    display: block;
    color: rgba(255,255,255,.60);
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .blog-hero-panel strong {
    display: block;
    color: #fff;
    font-size: 34px;
    line-height: 1;
    letter-spacing: -.04em;
    margin-bottom: 10px;
  }
  .blog-hero-panel p {
    color: rgba(255,255,255,.72);
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
  }

  .blog-index {
    padding: 86px 0 42px;
    background: #fff;
  }
  .blog-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .blog-tile {
    position: relative;
    min-height: 260px;
    padding: 28px;
    border-radius: 22px;
    overflow: hidden;
    color: #fff;
    background: #0a1733;
    box-shadow: 0 18px 42px rgba(10,23,51,.16);
    transition: transform .25s ease, box-shadow .25s ease;
    text-decoration: none;
  }
  .blog-tile:hover { transform: translateY(-6px); box-shadow: 0 30px 62px rgba(10,23,51,.22); }
  .blog-tile img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .42;
    transition: transform .5s ease, opacity .25s ease;
  }
  .blog-tile:hover img { transform: scale(1.06); opacity: .34; }
  .blog-tile::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,23,51,.15), rgba(10,23,51,.92));
    z-index: 1;
  }
  .blog-tile-content {
    position: relative;
    z-index: 2;
    min-height: 204px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .blog-tile-tag {
    align-self: flex-start;
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(247,127,0,.92);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .blog-tile h2 {
    color: #fff;
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.18;
    letter-spacing: -.02em;
  }
  .blog-tile-link {
    color: rgba(255,255,255,.82);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .blog-articles {
    padding: 54px 0 120px;
    background:
      radial-gradient(circle at 10% 0%, rgba(37,99,235,.06), transparent 36%),
      #fff;
  }
  .blog-article {
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: 54px;
    padding: 54px 0;
    border-top: 1px solid var(--line);
  }
  .blog-article:first-child { border-top: 0; padding-top: 20px; }
  .blog-article-aside {
    position: sticky;
    top: calc(var(--header-h) + 28px);
    align-self: start;
  }
  .blog-article-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px; height: 58px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), #ffa642);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(247,127,0,.25);
  }
  .blog-article h2 {
    color: var(--c-text);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.1;
    letter-spacing: -.025em;
    margin: 0 0 18px;
  }
  .blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .blog-article-meta span {
    display: inline-flex;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--c-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: #fff;
  }
  .blog-prose {
    max-width: 820px;
    color: var(--c-text);
  }
  .blog-prose > p:first-child {
    font-size: 19px;
    line-height: 1.72;
    color: #334155;
    margin-top: 0;
  }
  .blog-prose h3 {
    margin: 34px 0 12px;
    color: var(--c-text);
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: -.01em;
  }
  .blog-prose p {
    color: #475569;
    font-size: 16px;
    line-height: 1.78;
    margin: 0 0 18px;
  }
  .blog-prose ol,
  .blog-prose ul {
    margin: 18px 0 28px;
    padding-left: 0;
    list-style: none;
    display: grid;
    gap: 12px;
  }
  .blog-prose li {
    position: relative;
    padding: 16px 18px 16px 50px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff;
    color: #475569;
    line-height: 1.62;
    box-shadow: 0 8px 20px rgba(10,23,51,.04);
  }
  .blog-prose li::before {
    content: "";
    position: absolute;
    top: 17px; left: 18px;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), #ffa642);
    box-shadow: 0 4px 10px rgba(247,127,0,.25);
  }
  .blog-prose li::after {
    content: "";
    position: absolute;
    top: 23px; left: 25px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #fff;
  }
  .blog-article-cta {
    margin-top: 32px;
    padding: 24px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0a1733, #102454);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .blog-article-cta strong { display: block; color: #fff; font-size: 18px; margin-bottom: 4px; }
  .blog-article-cta span { color: rgba(255,255,255,.72); font-size: 14px; }
  @media (max-width: 1024px) {
    .blog-hero-grid { grid-template-columns: 1fr; gap: 34px; }
    .blog-hero-panel { max-width: 420px; }
    .blog-cards { grid-template-columns: 1fr; }
    .blog-article { grid-template-columns: 1fr; gap: 22px; }
    .blog-article-aside { position: static; }
  }
  @media (max-width: 640px) {
    .blog-hero { min-height: auto; padding-top: calc(var(--header-h) + 60px); padding-bottom: 72px; }
    .blog-index { padding-top: 64px; }
    .blog-article { padding: 42px 0; }
    .blog-article-cta { align-items: flex-start; flex-direction: column; }
    .blog-article-cta .btn { width: 100%; }
  }

  /* ==========================================================================
     AVIO EMPTY-LEG LISTA (charter-avio-list.php; service_type=avio).
     Premium horizontalna lista ruta: [slika] [datum/pax + from→to] [cijena + CTA].
     Zamjenjuje grid/filter-bar za avio (CharterListController). Airjet tokeni;
     .btn/.section-head/.eyebrow/.big-title reuse iz base/home CSS-a.
     ========================================================================== */
  .el-section { padding: 64px 0 96px; background: var(--c-bg-soft, #f5f7fb); }
  .el-section__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 28px; margin-bottom: 34px; }
  .el-disclaimer { max-width: 480px; margin: 0; color: var(--c-muted, #64748b); font-size: 14px; line-height: 1.6; }

  .el-list { display: flex; flex-direction: column; gap: 18px; }

  .el-row {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr) 220px;
    gap: 28px;
    align-items: center;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(10, 23, 51, .06);
    transition: transform .25s var(--ease, ease), box-shadow .25s var(--ease, ease);
  }
  .el-row:hover { transform: translateY(-3px); box-shadow: 0 22px 48px rgba(10, 23, 51, .13); }

  .el-row__media {
    position: relative;
    display: block;
    height: 150px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--c-navy, #0a1733);
  }
  .el-row__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease, ease); }
  .el-row:hover .el-row__media img { transform: scale(1.06); }
  .el-row__flag {
    position: absolute; top: 12px; left: 12px;
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 11px; border-radius: 999px;
    background: var(--orange); color: #fff;
    font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
    box-shadow: 0 6px 16px rgba(247, 127, 0, .3);
  }

  .el-row__body { min-width: 0; }
  .el-row__top { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
  .el-row__chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 11px; border-radius: 999px;
    background: var(--c-bg-soft, #f1f5fb); color: var(--c-muted, #64748b);
    font-size: 12.5px; font-weight: 600;
  }
  .el-row__chip i { color: var(--c-blue, #2b5bd7); }

  .el-row__route {
    display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: center;
    text-decoration: none;
  }
  .el-loc { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
  .el-loc--to { text-align: right; align-items: flex-end; }
  .el-loc__city {
    font-size: clamp(17px, 1.6vw, 21px); font-weight: 800; letter-spacing: -.02em;
    color: var(--c-navy, #0a1733); line-height: 1.15;
  }
  .el-loc__meta { font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--c-muted, #64748b); }
  .el-row__route:hover .el-loc__city { color: var(--c-blue, #2b5bd7); }

  .el-path { display: flex; align-items: center; gap: 7px; color: var(--c-blue, #2b5bd7); }
  .el-path__line { width: 34px; border-top: 2px dashed currentColor; opacity: .55; }
  .el-path i { font-size: 18px; }

  .el-row__route--single { display: block; }
  .el-row__title { margin: 0; font-size: 20px; font-weight: 800; color: var(--c-navy, #0a1733); letter-spacing: -.02em; }

  .el-row__aside {
    display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
    padding-left: 24px; border-left: 1px solid var(--line);
  }
  .el-row__price { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.1; }
  .el-price__label { font-size: 12px; color: var(--c-muted, #64748b); text-transform: uppercase; letter-spacing: .06em; }
  .el-price__amount { font-size: 26px; font-weight: 800; color: var(--c-navy, #0a1733); letter-spacing: -.03em; }
  .el-price--request { font-size: 18px; font-weight: 800; color: var(--c-navy, #0a1733); white-space: nowrap; }
  .el-row__cta { white-space: nowrap; }

  @media (max-width: 900px) {
    .el-section__head { flex-direction: column; align-items: flex-start; gap: 14px; }
    .el-row {
      grid-template-columns: 150px minmax(0, 1fr);
      grid-template-areas: "media body" "media aside";
      gap: 16px 22px;
    }
    .el-row__media { grid-area: media; height: 100%; min-height: 132px; }
    .el-row__body { grid-area: body; }
    .el-row__aside {
      grid-area: aside; flex-direction: row; justify-content: space-between; align-items: center;
      padding-left: 0; border-left: 0; border-top: 1px solid var(--line); padding-top: 14px;
    }
  }
  @media (max-width: 600px) {
    .el-section { padding: 48px 0 64px; }
    .el-row { grid-template-columns: 1fr; grid-template-areas: "media" "body" "aside"; padding: 14px; }
    .el-row__media { height: 168px; }
    .el-row__route { gap: 12px; }
    .el-path__line { width: 18px; }
    .el-row__cta { flex: 1; text-align: center; }
  }

  /* ==========================================================================
     EARLY BIRD — HERO SHOWCASE (port 1:1 iz early-bird-discount.html)
     Tokeni: --orange/--line/--c-text/--c-muted/--c-blue/--c-bg-soft/--header-h.
     ========================================================================== */
  .eb-hero {
    position: relative;
    min-height: 92vh;
    min-height: 92svh;
    padding-top: calc(var(--header-h) + 80px);
    padding-bottom: 110px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1733 0%, #0e1c3d 55%, #0a1733 100%);
    color: #fff;
  }
  .eb-hero-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .25;
    z-index: 0;
  }
  .eb-hero::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 90% 30%, rgba(247,127,0,.28) 0%, transparent 65%),
      radial-gradient(ellipse 70% 60% at 10% 90%, rgba(37,99,235,.30) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
  }
  .eb-hero::after {
    content: "";
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.05) 1.4px, transparent 1.4px);
    background-size: 36px 36px;
    pointer-events: none;
    z-index: 1;
  }
  .eb-hero > .container { position: relative; z-index: 2; }

  .eb-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .eb-hero .eb-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    margin-bottom: 26px;
    border: 1px solid rgba(247,127,0,.5);
    border-radius: 999px;
    background: rgba(247,127,0,.10);
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
  }
  .eb-hero .eb-eyebrow svg { width: 14px; height: 14px; }
  .eb-hero h1 {
    font-size: clamp(40px, 5.6vw, 72px);
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1.05;
    margin: 0 0 22px;
    color: #fff;
  }
  .eb-hero h1 .eb-accent {
    background: linear-gradient(135deg, var(--orange) 0%, #ffb464 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
    font-weight: 600;
  }
  .eb-hero p.eb-lead {
    font-size: clamp(16px, 1.4vw, 18px);
    line-height: 1.65;
    color: rgba(255,255,255,.82);
    margin: 0 0 34px;
    max-width: 580px;
  }
  .eb-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
  }
  .eb-hero-cta .btn { min-width: 200px; }
  .eb-hero .btn-ghost-light {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,.45);
  }
  .eb-hero .btn-ghost-light:hover { background: rgba(255,255,255,.10); }

  /* Right side — massive disc badge */
  .eb-hero-badge {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 460px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .eb-hero-badge::before,
  .eb-hero-badge::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.10);
    animation: ebRotate 60s linear infinite;
  }
  .eb-hero-badge::after {
    inset: 18px;
    border-color: rgba(247,127,0,.20);
    animation-duration: 40s;
    animation-direction: reverse;
  }
  @keyframes ebRotate { to { transform: rotate(360deg); } }
  .eb-hero-badge-inner {
    position: relative;
    width: 78%; height: 78%;
    border-radius: 50%;
    background:
      radial-gradient(circle, rgba(247,127,0,.40) 0%, rgba(247,127,0,0) 70%),
      linear-gradient(135deg, rgba(247,127,0,.22), rgba(37,99,235,.18));
    border: 1px solid rgba(255,255,255,.15);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    box-shadow: 0 30px 80px rgba(247,127,0,.25), inset 0 1px 0 rgba(255,255,255,.18);
    overflow: hidden;
  }
  .eb-hero-badge-inner::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247,127,0,.40), rgba(247,127,0,0) 70%);
    filter: blur(20px);
    z-index: -1;
    animation: ebPulse 3.2s ease-in-out infinite;
  }
  @keyframes ebPulse {
    0%, 100% { opacity: .5; transform: scale(1); }
    50% { opacity: .9; transform: scale(1.05); }
  }
  .eb-hero-badge-pct {
    font-size: clamp(80px, 11vw, 160px);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1;
    background: linear-gradient(135deg, #fff 0%, #ffe0b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 4px 22px rgba(247,127,0,.35);
    margin: 0 0 6px;
  }
  .eb-hero-badge-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 4px;
  }
  .eb-hero-badge-sub {
    font-size: 13px;
    color: rgba(255,255,255,.7);
    margin: 0;
    letter-spacing: .04em;
  }
  @media (max-width: 1024px) {
    .eb-hero { padding-top: calc(var(--header-h) + 56px); padding-bottom: 80px; }
    .eb-hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
    .eb-hero-cta { justify-content: center; }
    .eb-hero p.eb-lead { margin-left: auto; margin-right: auto; }
    .eb-hero-badge { max-width: 360px; }
  }
  @media (max-width: 560px) {
    .eb-hero { min-height: auto; padding-bottom: 70px; }
    .eb-hero-badge { max-width: 280px; }
    .eb-hero-cta .btn { width: 100%; }
  }

  /* ==========================================================================
     EARLY BIRD — BENEFITS (3 columns)
     ========================================================================== */
  .eb-benefits {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
  }
  .eb-benefits::before {
    content: "";
    position: absolute;
    top: 8%; left: -160px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(37,99,235,.08) 0%, rgba(37,99,235,0) 70%);
    pointer-events: none;
    z-index: 0;
  }
  .eb-benefits > .container { position: relative; z-index: 1; }
  .eb-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .eb-benefit {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 36px 28px 30px;
    text-align: left;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    position: relative;
    overflow: hidden;
  }
  .eb-benefit::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--c-blue) 100%);
    transform: scaleX(.2);
    transform-origin: left;
    transition: transform .35s ease;
  }
  .eb-benefit:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(10,23,51,.12);
    border-color: rgba(247,127,0,.30);
  }
  .eb-benefit:hover::before { transform: scaleX(1); }
  .eb-benefit-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(247,127,0,.14), rgba(37,99,235,.10));
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
  }
  .eb-benefit-icon svg { width: 26px; height: 26px; }
  .eb-benefit h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--c-text);
    margin: 0 0 10px;
    letter-spacing: -.01em;
  }
  .eb-benefit p {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--c-muted);
    margin: 0;
  }
  @media (max-width: 1024px) { .eb-benefits-grid { grid-template-columns: 1fr; } }

  /* ==========================================================================
     EARLY BIRD — HOW IT WORKS (timeline 3 steps)
     ========================================================================== */
  .eb-process {
    padding: 110px 0;
    background: var(--c-bg-soft, #f1f4f9);
    position: relative;
    overflow: hidden;
  }
  .eb-process::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(37,99,235,.06) 1.2px, transparent 1.2px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
  }
  .eb-process > .container { position: relative; z-index: 1; }
  .eb-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    counter-reset: eb-step;
    position: relative;
  }
  .eb-steps::before {
    content: "";
    position: absolute;
    top: 56px;
    left: 16%;
    right: 16%;
    height: 2px;
    background-image: linear-gradient(90deg, var(--orange) 50%, transparent 50%);
    background-size: 12px 2px;
    background-repeat: repeat-x;
    opacity: .45;
    pointer-events: none;
    z-index: 0;
  }
  .eb-step {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 32px 26px 28px;
    box-shadow: 0 4px 14px rgba(10,23,51,.05), 0 0 0 1px var(--line);
    z-index: 1;
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .eb-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(10,23,51,.12), 0 0 0 1px rgba(247,127,0,.25);
  }
  .eb-step-num {
    counter-increment: eb-step;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), #ffa642);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin: -56px auto 18px;
    box-shadow: 0 8px 18px rgba(247,127,0,.35), 0 0 0 6px var(--c-bg-soft, #f1f4f9);
    position: relative;
  }
  .eb-step-num::after { content: counter(eb-step, decimal-leading-zero); }
  .eb-step h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--c-text);
    margin: 0 0 10px;
    letter-spacing: -.01em;
  }
  .eb-step p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--c-muted);
    margin: 0;
  }
  @media (max-width: 1024px) {
    .eb-steps { grid-template-columns: 1fr; }
    .eb-steps::before { display: none; }
  }

  /* ==========================================================================
     EARLY BIRD — FINAL TAGLINE BANNER
     ========================================================================== */
  .eb-tagline {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--orange) 0%, #ff9a3d 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .eb-tagline::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.10) 1.4px, transparent 1.4px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
  }
  .eb-tagline::after {
    content: "";
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,.20) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
    z-index: 0;
  }
  .eb-tagline > .container { position: relative; z-index: 1; }
  .eb-tagline-words {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 36px;
  }
  .eb-tagline-words span {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -.02em;
    color: #fff;
    line-height: 1.1;
  }
  .eb-tagline-words .eb-dot {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.7);
  }
  .eb-tagline .btn {
    min-width: 240px;
    background: #fff;
    color: var(--c-text);
    border: 0;
    height: 52px;
    font-size: 14px;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .eb-tagline .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(0,0,0,.18);
  }
  @media (max-width: 720px) {
    .eb-tagline-words { gap: 16px; }
  }
