/* ============================================================
   JETOUR OFFERS — offer page + promo popup
   Shares the Jetour Header design tokens. All classes prefixed
   `jto-`; resets scoped to .jto so nothing leaks into the theme.
   ============================================================ */
:root{
  --jto-teal:#39AEB1;
  --jto-ink:#1a1a1a;
  --jto-ink-soft:#4D4D4D;
  --jto-line:#EBEBEB;
  --jto-dark:#0c0f13;
  --jto-ease:cubic-bezier(.4,0,.2,1);
}

.jto, .jto *{ box-sizing:border-box; }
.jto{
  font-family:'Noto Sans Georgian', system-ui, -apple-system, sans-serif;
  color:var(--jto-ink);
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
}
.jto img{ display:block; max-width:100%; }
.jto a{ text-decoration:none; color:inherit; }
.jto h1, .jto h2, .jto h3, .jto p{ margin:0; }

/* ---- shared button (matches header .btn) ---- */
.jto-btn{
  display:inline-flex; align-items:center; justify-content:center;
  height:46px; padding:0 26px; border-radius:0;
  font-size:15px; font-weight:600; line-height:1; cursor:pointer; white-space:nowrap;
  background:var(--jto-teal); color:#fff; border:1px solid var(--jto-teal);
  transition:background-color .35s ease, color .35s ease, border-color .3s ease;
}
.jto-btn:hover{ background:#111; color:#fff; border-color:#111; }
.jto-btn-ghost{ background:transparent; color:#fff; border-color:rgba(255,255,255,.55); }
.jto-btn-ghost:hover{ background:#fff; color:#111; border-color:#fff; }

.jto-eyebrow{ font-size:13px; letter-spacing:.22em; text-transform:uppercase; color:var(--jto-teal); margin:0 0 16px; }
.jto-h1{ font-size:clamp(32px,5vw,56px); font-weight:700; line-height:1.08; }
.jto-h2{ font-size:clamp(24px,3vw,34px); font-weight:700; margin:0 0 28px; }
.jto-actions{ display:flex; flex-wrap:wrap; gap:14px; margin-top:30px; }

/* ============================================================
   FULL-BLEED — break sections out to the viewport width even when
   the offer renders inside a constrained theme/Elementor container.
   ============================================================ */
.jto-offer .jto-hero,
.jto-offer .jto-section,
.jto-offer .jto-band,
.jto-offer .jto-cta{
  position:relative; left:50%; right:50%;
  margin-left:-50vw; margin-right:-50vw; width:100vw;
}
/* 100vw includes the scrollbar, so the document ends up ~scrollbar-width too
   wide → a tiny horizontal scroll. Clip it on pages that render an offer.
   overflow:clip keeps the full-bleed and does NOT break position:sticky. */
html:has(.jto-offer),
body:has(.jto-offer){ overflow-x:clip; }
.jto-wrap, .jto-hero-inner{ max-width:1560px; margin:0 auto; padding-left:5%; padding-right:5%; }
/* description moved out of the hero into the section under its title */
.jto-section-lead{ max-width:820px; margin:0 0 40px; font-size:18px; line-height:1.75; color:var(--jto-ink-soft); }

/* ---- HERO ---- */
.jto-hero{
  position:relative; overflow:hidden;
  color:#fff;
  display:flex; align-items:center;
  min-height:86vh;                 /* always a large banner, even if padding is overridden */
  /* image stays as a fallback under the video if the iframe never loads */
  background:var(--jto-hero) center/cover no-repeat, #0c0f13;
}
/* gradient overlay on top of the video so the headline + CTAs stay readable */
.jto-hero-overlay{
  position:absolute; inset:0; z-index:1; pointer-events:none;
  background:linear-gradient(180deg, rgba(10,12,15,.62), rgba(10,12,15,.38) 45%, rgba(10,12,15,.78));
}
.jto-hero-inner{ position:relative; z-index:2; width:100%; padding-top:96px; padding-bottom:96px; }

/* ============================================================
   BG VIDEO — YouTube iframe that "covers" its container.
   Uses container-query units so the same rules work for the
   full-bleed hero AND the small popup-media column.
   ============================================================ */
/* container-type lives on the WRAPPER (no content), so the hero itself is free
   to grow with stacked content while cqw/cqh still resolve to the hero size. */
.jto-bg-video{ position:absolute; inset:0; z-index:0; pointer-events:none; overflow:hidden; container-type:size; will-change:transform; }
/* oversize for parallax room (translate up to ~14% never reveals an edge) */
.jto-bg-video[data-jto-parallax]{ top:-15%; bottom:auto; height:130%; }
@media (prefers-reduced-motion:reduce){ .jto-bg-video[data-jto-parallax]{ top:0; height:100%; } }
/* !important throughout — the YouTube IFrame API sets inline width/height on the
   iframe, which would otherwise beat these cover rules and reveal a seam. */
.jto-bg-video iframe{
  position:absolute !important; top:50% !important; left:50% !important; transform:translate(-50%,-50%) !important;
  border:0 !important; pointer-events:none !important;
  max-width:none !important; max-height:none !important;
  /* container TALLER than 16:9 → match height, oversize width to keep aspect (cover) */
  height:100cqh !important;
  width:calc(100cqh * 16 / 9) !important;
}
@container (aspect-ratio > 16/9){
  .jto-bg-video iframe{
    width:100cqw !important;
    height:calc(100cqw * 9 / 16) !important;
  }
}
/* fallback if container queries are unavailable: viewport-based cover */
@supports not (container-type: size){
  .jto-bg-video iframe{ width:max(100vw, 177.78vh) !important; height:max(100vh, 56.25vw) !important; }
}
/* mount is replaced by the API iframe; cover hides all chrome until PLAYING */
.jto-bg-video-mount{ position:absolute; inset:0; }
.jto-bg-video-cover{
  position:absolute; inset:0; z-index:1;
  background:var(--jto-hero) center/cover no-repeat, #0c0f13;
  transition:opacity .9s ease;
}
.jto-bg-video.is-playing .jto-bg-video-cover{ opacity:0; }

.jto-lead{ max-width:640px; margin:36px 0 0; font-size:17px; line-height:1.8; color:rgba(255,255,255,.82); }
.jto-tagline{ margin:22px 0 0; font-size:19px; font-weight:600; line-height:1.55; color:#fff; }
/* announcement NOTICE (not a button) — translucent pill + glowing teal dot */
.jto-badge{
  display:inline-flex; align-items:center; gap:11px;
  margin:38px 0 0; padding:11px 20px 11px 17px;
  font-size:15px; font-weight:600; line-height:1.3; color:#fff;
  background:rgba(57,174,177,.14);
  border:1px solid rgba(57,174,177,.55);
  border-radius:5px;
}
.jto-badge::before{
  content:""; flex:0 0 auto; width:9px; height:9px; border-radius:50%;
  background:var(--jto-teal); box-shadow:0 0 0 4px rgba(57,174,177,.22);
}
.jto-hero .jto-actions{ margin-top:34px; gap:16px; }

/* ---- SECTIONS ---- */
.jto-section{ background:#fff; padding:84px 0; }
.jto-section-dark{ background:var(--jto-dark); color:#fff; }
.jto-section-dark .jto-h2{ color:#fff; margin-bottom:40px; }

/* features */
.jto-features{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
@media (max-width:900px){ .jto-features{ grid-template-columns:1fr; } }
.jto-feature{
  display:flex; align-items:center; gap:16px; padding:24px 26px; min-height:90px;
  border:1px solid var(--jto-line); border-radius:5px; background:#fff;
  font-size:17px; font-weight:500; line-height:1.4;
  transition:border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.jto-feature:hover{ border-color:var(--jto-teal); box-shadow:0 8px 24px rgba(57,174,177,.12); transform:translateY(-2px); }
.jto-feature-mark{ flex:0 0 auto; width:10px; height:10px; border-radius:50%; background:var(--jto-teal); }

/* image band */
.jto-band{
  position:relative; overflow:hidden;
  min-height:clamp(320px,52vh,560px);
  background:#0c0f13;
}
/* oversized inner layer so parallax translate never reveals an edge */
.jto-band-bg{
  position:absolute; left:0; right:0; top:-15%; height:130%;
  background:center center / cover no-repeat;
  will-change:transform;
}
@media (max-width:900px){ .jto-band{ min-height:300px; } }
@media (prefers-reduced-motion:reduce){ .jto-band-bg{ top:0; height:100%; } }

/* specs */
.jto-specs{ display:grid; grid-template-columns:repeat(5,1fr); gap:30px 26px; }
@media (max-width:1100px){ .jto-specs{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:640px){ .jto-specs{ grid-template-columns:repeat(2,1fr); } }
.jto-spec{ border-left:2px solid var(--jto-teal); padding:2px 0 4px 20px; }
.jto-spec-value{ font-size:clamp(19px,1.7vw,24px); font-weight:700; line-height:1.22; }
.jto-spec-label{ margin-top:12px; font-size:12.5px; letter-spacing:.06em; text-transform:uppercase; color:rgba(255,255,255,.58); }
.jto-note{ margin:46px 0 0; max-width:680px; font-size:15px; line-height:1.6; color:rgba(255,255,255,.7); }
.jto-section-dark .jto-actions{ margin-top:28px; }

/* CTA band */
.jto-cta{ background:#F6F8F9; padding:88px 0; text-align:center; }
.jto-cta-inner{ display:flex; flex-direction:column; align-items:center; }
.jto-cta .jto-h2{ margin-bottom:14px; }
.jto-cta-sub{ margin:0 0 30px; color:var(--jto-ink-soft); font-size:17px; }

/* ============================================================
   POPUP
   ============================================================ */
body.jto-lock{ overflow:hidden; }

.jto-popup{
  position:fixed; inset:0; z-index:100000;
  display:flex; align-items:center; justify-content:center; padding:20px;
}
.jto-popup[hidden]{ display:none; }

.jto-popup-backdrop{
  position:absolute; inset:0; background:rgba(8,10,13,.62);
  -webkit-backdrop-filter:blur(4px); backdrop-filter:blur(4px);
  opacity:0; transition:opacity .35s ease;
}
.jto-popup.jto-open .jto-popup-backdrop{ opacity:1; }

.jto-popup-card{
  position:relative; z-index:1; width:min(1120px,92vw); max-height:92vh; background:#fff; overflow:auto;
  display:grid; grid-template-columns:1fr 1fr;
  box-shadow:0 30px 80px rgba(0,0,0,.4);
  opacity:0; transform:translateY(16px) scale(.98);
  transition:transform .4s var(--jto-ease), opacity .35s ease;
}
.jto-popup.jto-open .jto-popup-card{ opacity:1; transform:none; }
@media (max-width:560px){ .jto-popup-card{ grid-template-columns:1fr; } }

.jto-popup-media{
  position:relative; overflow:hidden; container-type:size;
  min-height:520px; background:var(--jto-dark) center/cover no-repeat;
}
@media (max-width:560px){ .jto-popup-media{ min-height:240px; } }

.jto-popup-body{ padding:52px 52px 54px; align-self:center; }
.jto-popup-title{ font-size:40px; font-weight:700; margin:0 0 12px; }
.jto-popup-line{ margin:0; color:var(--jto-ink-soft); font-size:18px; line-height:1.65; }
.jto-popup .jto-actions{ margin-top:30px; flex-direction:column; align-items:stretch; gap:12px; }
.jto-popup .jto-btn{ width:100%; height:54px; font-size:16px; }
/* ghost button sits on white inside the popup */
.jto-popup .jto-btn-ghost{ color:#111; border-color:#d8d8d8; }
.jto-popup .jto-btn-ghost:hover{ background:#111; color:#fff; border-color:#111; }

.jto-popup-x{
  position:absolute; top:14px; right:14px; z-index:2;
  display:flex; align-items:center; justify-content:center;
  width:40px; height:40px; padding:0; border:none; cursor:pointer; border-radius:50%;
  background:rgba(255,255,255,.9); color:#111; font-size:24px; line-height:1;
  -webkit-appearance:none; appearance:none;
  transition:background-color .25s ease;
}
.jto-popup-x:hover{ background:#fff; }

/* ============================================================
   MINI — minimized offer pill (bottom-left, persists across pages)
   ============================================================ */
.jto-mini{
  position:fixed; left:20px; bottom:20px; z-index:99998;
  display:flex; align-items:center; gap:14px;
  width:auto; max-width:min(360px,calc(100vw - 40px)); padding:12px 14px;
  border-radius:16px; color:#fff;
  background:linear-gradient(135deg, rgba(16,19,24,.72), rgba(16,19,24,.55));
  -webkit-backdrop-filter:blur(16px) saturate(140%); backdrop-filter:blur(16px) saturate(140%);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 18px 44px rgba(0,0,0,.4);
  transform:translateY(160%); opacity:0;
  transition:transform .55s var(--jto-ease), opacity .4s ease;
}
.jto-mini.jto-mini-open{ transform:none; opacity:1; }
.jto-mini[hidden]{ display:none; }
.jto-mini-link{ display:flex; align-items:center; gap:14px; color:#fff; text-decoration:none; min-width:0; }
.jto-mini-thumb{
  flex:0 0 auto; width:58px; height:58px; border-radius:12px;
  background:#0c0f13 center/cover no-repeat;
}
.jto-mini-text{ display:flex; flex-direction:column; min-width:0; }
.jto-mini-title{ font-size:15px; font-weight:700; line-height:1.15; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.jto-mini-sub{ margin-top:4px; font-size:12px; line-height:1.3; color:rgba(255,255,255,.78); }
.jto-mini-x{
  flex:0 0 auto; display:flex; align-items:center; justify-content:center;
  width:26px; height:26px; padding:0; margin:-4px -2px auto 0; cursor:pointer;
  border:none; border-radius:50%; background:rgba(255,255,255,.16); color:#fff;
  font-size:18px; line-height:1; -webkit-appearance:none; appearance:none;
  transition:background-color .25s ease;
}
.jto-mini-x:hover{ background:rgba(255,255,255,.32); }

@media (prefers-reduced-motion:reduce){
  .jto *{ transition-duration:.01ms !important; }
  .jto-car-track{ scroll-behavior:auto !important; }
}

/* ============================================================
   BUILDER / THEME OVERRIDE GUARD  (Elementor, etc.)
   Elementor & themes restyle sections, headings, links, images
   and backgrounds with high specificity. Re-assert everything we
   care about, scoped under .jto and flagged !important, so the
   offer page + popup render correctly inside a builder.
   ============================================================ */

/* — full-bleed sizing (stops the hero/sections collapsing to a column) — */
.jto-offer .jto-hero,
.jto-offer .jto-section,
.jto-offer .jto-band,
.jto-offer .jto-cta{
  position:relative !important;
  left:50% !important; right:50% !important;
  margin-left:-50vw !important; margin-right:-50vw !important;
  width:100vw !important; max-width:100vw !important;
  float:none !important; clear:both !important;
}
.jto-offer .jto-hero{
  position:relative !important; overflow:hidden !important;
  display:flex !important; align-items:center !important;
  min-height:86vh !important; color:#fff !important;
  background:var(--jto-hero) center center / cover no-repeat, #0c0f13 !important;
}
.jto-offer .jto-hero-overlay{
  position:absolute !important; inset:0 !important; z-index:1 !important; pointer-events:none !important;
  background:linear-gradient(180deg, rgba(10,12,15,.62), rgba(10,12,15,.38) 45%, rgba(10,12,15,.78)) !important;
}
.jto-offer .jto-hero-inner{ position:relative !important; z-index:2 !important; }
.jto-bg-video{ position:absolute !important; inset:0 !important; z-index:0 !important; pointer-events:none !important; overflow:hidden !important; container-type:size !important; }
.jto-bg-video[data-jto-parallax]{ top:-15% !important; bottom:auto !important; height:130% !important; }
.jto-bg-video iframe{ border:0 !important; pointer-events:none !important; box-shadow:none !important; max-width:none !important; max-height:none !important; }
.jto-bg-video-mount{ position:absolute !important; inset:0 !important; }
.jto-bg-video-cover{ position:absolute !important; inset:0 !important; z-index:1 !important; }
.jto-offer .jto-section{ padding:84px 0 !important; background:#fff !important; }
.jto-offer .jto-section-dark{ background:var(--jto-dark) !important; }
.jto-offer .jto-band{
  position:relative !important; overflow:hidden !important;
  min-height:clamp(320px,52vh,560px) !important; background:#0c0f13 !important;
}
.jto-offer .jto-band-bg{
  position:absolute !important; left:0 !important; right:0 !important; top:-15% !important; height:130% !important;
  background-size:cover !important; background-position:center !important; background-repeat:no-repeat !important;
}
.jto-offer .jto-cta{ padding:80px 0 !important; background:#F6F8F9 !important; }
.jto .jto-wrap,
.jto .jto-hero-inner{
  max-width:1200px !important; width:100% !important;
  margin-left:auto !important; margin-right:auto !important;
  padding-left:7% !important; padding-right:7% !important;
}

/* — headings / type / state text colours per section — */
.jto .jto-h1{ font-size:clamp(32px,5vw,56px) !important; line-height:1.08 !important; font-weight:700 !important; }
.jto .jto-h2{ font-size:clamp(24px,3vw,34px) !important; font-weight:700 !important; }
/* headline font = Elementor custom font "Normalidad"; Georgian glyphs fall back to Noto */
.jto .jto-h1,
.jto .jto-h2,
.jto .jto-popup-title,
.jto .jto-inquiry-title{
  font-family:var(--jto-headline-font, "Normalidad"), 'Noto Sans Georgian', system-ui, -apple-system, sans-serif !important;
}
.jto-hero .jto-h1{ color:#fff !important; }
.jto-section .jto-h2{ color:var(--jto-ink) !important; }
.jto-section-dark .jto-h2{ color:#fff !important; }
.jto-cta .jto-h2{ color:var(--jto-ink) !important; }
.jto .jto-eyebrow{ color:var(--jto-teal) !important; text-transform:uppercase !important; letter-spacing:.22em !important; }
.jto-hero .jto-lead{ color:rgba(255,255,255,.82) !important; }
.jto-hero .jto-tagline{ color:#fff !important; }
/* notice (announcement) — translucent pill, NOT a solid button */
.jto .jto-badge{ background:rgba(57,174,177,.14) !important; color:#fff !important; border:1px solid rgba(57,174,177,.55) !important; border-radius:5px !important; }

/* — buttons: shape + size + state colours (primary CTA = teal) — */
.jto .jto-btn{
  display:inline-flex !important; align-items:center !important; justify-content:center !important;
  height:46px !important; min-height:0 !important; padding:0 26px !important; border-radius:0 !important;
  font-family:inherit !important; font-size:15px !important; font-weight:600 !important; line-height:1 !important;
  background:var(--jto-teal) !important; color:#fff !important; border:1px solid var(--jto-teal) !important;
  width:auto !important; text-decoration:none !important; cursor:pointer !important;
  -webkit-appearance:none !important; appearance:none !important; box-shadow:none !important;
}
.jto .jto-btn:hover{ background:#111 !important; color:#fff !important; border-color:#111 !important; }
.jto .jto-btn-ghost{ background:transparent !important; color:#fff !important; border-color:rgba(255,255,255,.55) !important; }
.jto .jto-btn-ghost:hover{ background:#fff !important; color:#111 !important; border-color:#fff !important; }
.jto-popup .jto-btn-ghost{ color:#111 !important; border-color:#d8d8d8 !important; }
.jto-popup .jto-btn-ghost:hover{ background:#111 !important; color:#fff !important; border-color:#111 !important; }

/* — feature cards — */
.jto .jto-features{ display:grid !important; }
.jto .jto-feature{
  display:flex !important; align-items:center !important;
  border:1px solid var(--jto-line) !important; border-radius:5px !important;
  background:#fff !important; color:var(--jto-ink) !important;
}
.jto .jto-feature:hover{ border-color:var(--jto-teal) !important; }
.jto .jto-feature-mark{ width:10px !important; height:10px !important; border-radius:50% !important; background:var(--jto-teal) !important; flex:0 0 auto !important; }

/* — specs (dark) — */
.jto .jto-specs{ display:grid !important; }
.jto .jto-spec{ border-left:2px solid var(--jto-teal) !important; }
.jto-section-dark .jto-spec-value{ color:#fff !important; }
.jto-section-dark .jto-spec-label{ color:rgba(255,255,255,.62) !important; }
.jto-section-dark .jto-note{ color:rgba(255,255,255,.7) !important; }

/* — popup — */
.jto-popup{ position:fixed !important; inset:0 !important; z-index:100000 !important; display:flex !important; align-items:center !important; justify-content:center !important; }
.jto-popup[hidden]{ display:none !important; }
.jto-popup-card{ display:grid !important; grid-template-columns:1fr 1fr !important; width:min(1120px,92vw) !important; max-height:92vh !important; overflow:auto !important; background:#fff !important; border-radius:0 !important; }
.jto-popup-media{ min-height:520px !important; background-size:cover !important; background-position:center !important; background-repeat:no-repeat !important; }
.jto-popup-title{ color:var(--jto-ink) !important; font-size:40px !important; }
.jto-popup .jto-actions{ flex-direction:column !important; align-items:stretch !important; }
.jto-popup .jto-btn{ width:100% !important; height:54px !important; }
.jto-popup-x{
  display:flex !important; align-items:center !important; justify-content:center !important;
  width:40px !important; height:40px !important; min-width:0 !important; min-height:0 !important;
  padding:0 !important; margin:0 !important; border:0 !important; border-radius:50% !important;
  background:rgba(255,255,255,.9) !important; color:#111 !important; box-shadow:none !important;
  -webkit-appearance:none !important; appearance:none !important; line-height:1 !important;
}
.jto-popup-x:hover,.jto-popup-x:focus{ background:#fff !important; box-shadow:none !important; outline:none !important; }

/* mini pill — keep layout + reset builder button styling */
.jto-mini{ display:flex !important; align-items:center !important; }
.jto-mini-link{ display:flex !important; align-items:center !important; text-decoration:none !important; box-shadow:none !important; }
.jto-mini-thumb{ width:58px !important; height:58px !important; border-radius:12px !important; flex:0 0 auto !important; }
.jto-mini-x{
  display:flex !important; align-items:center !important; justify-content:center !important;
  width:26px !important; height:26px !important; min-width:0 !important; min-height:0 !important;
  padding:0 !important; border:0 !important; border-radius:50% !important;
  background:rgba(255,255,255,.16) !important; color:#fff !important; box-shadow:none !important;
  -webkit-appearance:none !important; appearance:none !important;
}
.jto-mini-x:hover{ background:rgba(255,255,255,.32) !important; }
@media (max-width:560px){
  .jto-popup-card{ grid-template-columns:1fr !important; }
  .jto-popup-media{ min-height:240px !important; }
}
@media (max-width:900px){
  .jto-offer .jto-features{ grid-template-columns:1fr !important; }
  .jto-offer .jto-band{ background-attachment:scroll !important; }
}

/* ============================================================
   INQUIRY MODAL  (Pre-order form)
   ============================================================ */
.jto-inquiry{
  position:fixed; inset:0; z-index:110000;
  display:flex; align-items:center; justify-content:center; padding:20px;
}
.jto-inquiry[hidden]{ display:none; }
.jto-inquiry .jto-popup-backdrop{
  position:absolute; inset:0; background:rgba(8,10,13,.72);
  -webkit-backdrop-filter:blur(6px); backdrop-filter:blur(6px);
  opacity:0; transition:opacity .35s ease;
}
.jto-inquiry.jto-open .jto-popup-backdrop{ opacity:1; }

.jto-inquiry-card{
  position:relative; z-index:1;
  width:min(540px,100%); max-height:92vh; overflow:auto;
  background:#fff;
  box-shadow:0 30px 80px rgba(0,0,0,.45);
  opacity:0; transform:translateY(16px) scale(.98);
  transition:transform .4s var(--jto-ease), opacity .35s ease;
}
.jto-inquiry.jto-open .jto-inquiry-card{ opacity:1; transform:none; }
.jto-inquiry-body{ padding:42px 40px 36px; }
.jto-inq-eyebrow{ margin:0 0 10px; }
.jto-inquiry-title{ font-size:30px; font-weight:700; margin:0 0 34px; color:var(--jto-ink); line-height:1.15; }

/* offer mid-card */
.jto-inq-mid{
  display:flex; align-items:center; gap:14px;
  padding:14px; margin:0 0 26px;
  border:1px solid var(--jto-line); border-radius:10px;
  background:#FAFBFC;
}
.jto-inq-thumb{
  flex:0 0 auto; width:64px; height:64px; border-radius:10px;
  background:#0c0f13 center/cover no-repeat;
}
.jto-inq-mid-text{ display:flex; flex-direction:column; min-width:0; }
.jto-inq-offer-title{ font-size:16px; font-weight:700; color:var(--jto-ink); line-height:1.2; }
.jto-inq-offer-sub{ margin-top:4px; font-size:13px; color:var(--jto-ink-soft); line-height:1.4; }

/* form fields — placeholder-only, no visible labels */
.jto-inq-form{ display:flex; flex-direction:column; gap:12px; }
.jto-field{ display:flex; flex-direction:column; }
.jto-field input{
  width:100%; height:52px; padding:0 16px;
  background:#fff; color:var(--jto-ink);
  border:1px solid #DCDFE3; border-radius:10px;
  font-family:inherit; font-size:15px; line-height:1.2;
  -webkit-appearance:none; appearance:none;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.jto-field input::placeholder{ color:#9aa1a8; opacity:1; }
.jto-field input:focus{ outline:none; border-color:var(--jto-teal); box-shadow:0 0 0 3px rgba(57,174,177,.18); }
.jto-field-err input{ border-color:#E5484D !important; box-shadow:0 0 0 3px rgba(229,72,77,.14) !important; }

/* match iti container height to the new 52px input + widen the dial-code pill;
   iti measures .iti__selected-flag.offsetWidth and sets the input's left padding
   to match — so widening the pill automatically pushes the placeholder/text. */
.jto-inquiry .iti--separate-dial-code .iti__selected-flag{ padding:0 18px 0 14px; }
.jto-inquiry .iti__selected-dial-code{ margin-left:8px; }
.jto-inquiry .iti input[type="tel"]{ height:52px !important; }

/* honeypot */
.jto-hp{ position:absolute; left:-10000px; top:auto; width:1px; height:1px; overflow:hidden; }

/* submit + messages */
.jto-inq-submit{ margin-top:8px; height:50px; font-size:15px; }
.jto-inq-submit[disabled]{ opacity:.65; cursor:wait; }
.jto-inq-msg{ margin:6px 0 0; min-height:18px; font-size:13.5px; }
.jto-inq-msg.jto-msg-ok{ color:#1f9d55; }
.jto-inq-msg.jto-msg-err{ color:#E5484D; }
.jto-inq-fine{ margin:6px 0 0; color:#9a9a9a; font-size:11.5px; line-height:1.45; }

/* success state */
.jto-inq-success{ text-align:center; padding:14px 4px 4px; }
.jto-inq-check{
  display:flex; align-items:center; justify-content:center;
  width:68px; height:68px; margin:0 auto 18px;
  border-radius:50%; background:rgba(57,174,177,.14); color:var(--jto-teal);
  font-size:34px; font-weight:700;
}
.jto-inq-success h4{ font-size:24px; font-weight:700; margin:0 0 8px; color:var(--jto-ink); }
.jto-inq-success p{ color:var(--jto-ink-soft); font-size:15px; line-height:1.55; margin:0 0 22px; }

/* ---- intl-tel-input integration + circle-flags ---- */
.jto-inquiry .iti{ width:100%; display:block; }
.jto-inquiry .iti__country-list{
  background:#fff; color:var(--jto-ink);
  max-height:260px; border-radius:10px; box-shadow:0 18px 40px rgba(0,0,0,.16);
  border:1px solid #E5E7EA;
}
.jto-inquiry .iti__divider{ border-bottom:1px solid #ECEEF1; }
.jto-inquiry .iti__country.iti__highlight{ background:#F1F6F7; }
/* dial code separator pill */
.jto-inquiry .iti--separate-dial-code .iti__selected-flag{
  background:#F4F6F7; border-right:1px solid #E5E7EA; border-radius:8px 0 0 8px;
}
.jto-inquiry .iti__selected-dial-code{ color:var(--jto-ink); font-weight:600; }
/* circle flag substitution: hide the default sprite, show our svg via inline background-image (set in JS) */
.jto-inquiry .iti__flag{
  width:22px !important; height:22px !important; border-radius:50% !important;
  background-color:transparent !important; box-shadow:none !important;
  background-repeat:no-repeat !important; background-position:center !important; background-size:cover !important;
}
.jto-inquiry .iti__flag.iti__globe{ background-image:url('https://kapowaz.github.io/circle-flags/flags/xx.svg') !important; }

@media (max-width:560px){
  .jto-inquiry-card{ width:100%; }
  .jto-inquiry-body{ padding:36px 22px 28px; }
}

/* ============================================================
   HERO PRICE LINE
   ============================================================ */
.jto-price{ display:flex; align-items:baseline; flex-wrap:wrap; gap:8px 16px; margin:32px 0 0; }
.jto-price-now{
  font-family:var(--jto-headline-font, "Normalidad"), 'Noto Sans Georgian', system-ui, sans-serif;
  font-size:clamp(30px,4vw,42px); font-weight:800; line-height:1; color:#fff;
}
.jto-price-old{ font-size:clamp(17px,2vw,22px); color:rgba(255,255,255,.6); text-decoration:line-through; }
.jto-price-note{ flex-basis:100%; margin:4px 0 0; font-size:14px; line-height:1.5; color:rgba(255,255,255,.82); }

/* ============================================================
   FEATURE CAROUSEL
   ============================================================ */
.jto-carousel-section{ overflow:hidden; }
.jto-carousel{ position:relative; max-width:1560px; margin:8px auto 0; padding:0 5%; }
.jto-car-track{
  display:flex; gap:18px;
  overflow-x:auto; overflow-y:hidden;
  scroll-snap-type:x mandatory; scroll-behavior:smooth;
  -ms-overflow-style:none; scrollbar-width:none;
  padding:6px 0 8px;
}
.jto-car-track::-webkit-scrollbar{ display:none; }
.jto-car-slide{
  position:relative; flex:0 0 auto;
  width:72%; max-width:760px; aspect-ratio:16 / 10;
  scroll-snap-align:start;
  border-radius:14px; overflow:hidden; background:#0c0f13;
  box-shadow:0 14px 40px rgba(0,0,0,.14);
}
@supports not (aspect-ratio: 1){ .jto-car-slide{ height:440px; } }
.jto-car-media{
  position:absolute; inset:0;
  background:#0c0f13 center/cover no-repeat;
  transform:scale(1.001);
  transition:transform .7s cubic-bezier(.2,.7,.2,1);
}
.jto-car-slide:hover .jto-car-media{ transform:scale(1.05); }
.jto-car-slide::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(180deg, rgba(8,10,13,0) 24%, rgba(8,10,13,.85) 100%);
}
.jto-car-cap{ position:absolute; left:26px; right:26px; bottom:22px; z-index:2; color:#fff; }
.jto-car-title{
  font-family:var(--jto-headline-font, "Normalidad"), 'Noto Sans Georgian', system-ui, sans-serif;
  font-size:clamp(20px,2.4vw,28px); font-weight:700; line-height:1.15; margin:0;
  text-shadow:0 1px 4px rgba(0,0,0,.45);
}
.jto-car-sub{ margin:8px 0 0; font-size:14px; line-height:1.45; color:#fff; text-shadow:0 1px 3px rgba(0,0,0,.5); }

/* arrows */
.jto-car-arrow{
  position:absolute; top:50%; transform:translateY(-50%); z-index:5;
  display:flex; align-items:center; justify-content:center;
  width:46px; height:46px; padding:0; border:none; border-radius:50%; cursor:pointer;
  background:rgba(255,255,255,.92); color:#111; box-shadow:0 6px 20px rgba(0,0,0,.18);
  -webkit-appearance:none; appearance:none;
  transition:background-color .2s ease, transform .2s ease;
}
.jto-car-arrow:hover{ background:#fff; }
.jto-car-prev{ left:1.5%; }
.jto-car-next{ right:1.5%; }

/* dots */
.jto-car-dots{ display:flex; justify-content:center; gap:9px; margin:22px 0 0; }
.jto-car-dot{
  width:9px; height:9px; padding:0; border:none; border-radius:50%; cursor:pointer;
  background:#D2D6DA; -webkit-appearance:none; appearance:none;
  transition:background-color .25s ease, width .25s ease;
}
.jto-car-dot.is-active{ width:26px; border-radius:6px; background:var(--jto-teal); }

@media (max-width:1024px){
  .jto-car-slide{ width:82%; }
}
@media (max-width:680px){
  .jto-carousel{ padding:0 16px; }
  .jto-car-slide{ width:88%; aspect-ratio:4 / 3; }
  @supports not (aspect-ratio: 1){ .jto-car-slide{ height:300px; } }
  .jto-car-arrow{ display:none; }      /* swipe + dots on mobile */
  .jto-car-cap{ left:18px; right:18px; bottom:16px; }
}

/* ============================================================
   CAROUSEL — builder override guard
   ============================================================ */
.jto-offer .jto-carousel-section{ overflow:hidden !important; }
.jto-offer .jto-car-track{ display:flex !important; overflow-x:auto !important; scroll-snap-type:x mandatory !important; }
.jto-offer .jto-car-slide{ flex:0 0 auto !important; position:relative !important; border-radius:14px !important; overflow:hidden !important; }
.jto-offer .jto-car-media{ position:absolute !important; inset:0 !important; background-size:cover !important; background-position:center !important; }
.jto-offer .jto-car-arrow{
  display:flex !important; align-items:center !important; justify-content:center !important;
  position:absolute !important; top:50% !important; transform:translateY(-50%) !important; z-index:5 !important;
  width:46px !important; height:46px !important; min-width:0 !important; min-height:0 !important;
  padding:0 !important; border:0 !important; border-radius:50% !important;
  background:rgba(255,255,255,.92) !important; color:#111 !important; box-shadow:0 6px 20px rgba(0,0,0,.18) !important;
  -webkit-appearance:none !important; appearance:none !important;
}
.jto-offer .jto-car-prev{ left:1.5% !important; right:auto !important; }
.jto-offer .jto-car-next{ right:1.5% !important; left:auto !important; }
.jto-offer .jto-car-dot{ width:9px !important; height:9px !important; min-width:0 !important; min-height:0 !important; padding:0 !important; border:0 !important; -webkit-appearance:none !important; appearance:none !important; }
.jto-offer .jto-car-dot.is-active{ width:26px !important; }
.jto-offer .jto-car-title{ color:#fff !important; }
/* visible focus for keyboard users (override guard strips native ring) */
.jto-offer .jto-car-arrow:focus-visible,
.jto-offer .jto-car-dot:focus-visible,
.jto-offer .jto-car-track:focus-visible{ outline:3px solid var(--jto-teal) !important; outline-offset:2px !important; }
@media (max-width:680px){ .jto-offer .jto-car-arrow{ display:none !important; } }

/* ============================================================
   JETOUR G700 — UNIFIED RHYTHM + ALIGNMENT + CONTAINER SYSTEM
   Appended last on purpose: several rules below TIE the override
   guard at equal specificity ((0,2,0)+!important) and win only by
   source order. One 1280/clamp container, one compact rhythm scale,
   one left-aligned story (closing CTA included). Scoped .jto-offer
   / .jto + !important so it beats Elementor, the theme AND the guard.
   ============================================================ */

/* --- 1. ONE CONTAINER: wrap, hero-inner AND carousel share it.
   Folds the guard's .jto-wrap (1200/7%) and the carousel's own
   1560/5% onto a single rail; a px clamp gutter makes the heading
   edge and the carousel edge resolve to the same x at every width
   (kills the ~130px jut). --- */
.jto-offer .jto-wrap,
.jto-offer .jto-hero-inner{
  max-width:1280px !important; width:100% !important;
  margin-left:auto !important; margin-right:auto !important;
  padding-left:clamp(20px,5vw,64px) !important;
  padding-right:clamp(20px,5vw,64px) !important;
}

/* --- 2. UNIFORM SECTION PADDING (was an 84/84/80 mix) --- */
.jto-offer .jto-section,
.jto-offer .jto-cta{ padding:96px 0 !important; }

/* --- 3. HERO: top-anchor + capped height kills the symmetric void.
   Overrides base + guard align-items:center / min-height:86vh. --- */
.jto-offer .jto-hero{
  align-items:flex-start !important;
  min-height:min(760px,88vh) !important;
}
.jto-offer .jto-hero-inner{
  padding-top:120px !important;   /* clears the fixed overlay header */
  padding-bottom:88px !important;
}

/* --- 4. RHYTHM SCALE: defeat the (0,1,1) base reset
   `.jto h1,.jto h2,.jto h3,.jto p{margin:0}` and the surviving
   (0,2,0) guard heads. Every selector here is (0,3,0)/(0,2,0)
   +!important so component spacing is restored predictably. --- */
.jto-offer .jto-hero .jto-eyebrow{ margin:0 0 14px !important; }
.jto-offer .jto-hero .jto-h1{ margin:0 !important; }       /* tagline owns the gap below */
.jto-offer .jto-hero .jto-tagline{ margin:18px 0 0 !important; }
.jto-offer .jto-hero .jto-badge{ margin:24px 0 0 !important; }
.jto-offer .jto-hero .jto-price{ margin:28px 0 0 !important; }
.jto-offer .jto-hero .jto-actions{ margin:32px 0 0 !important; gap:16px !important; }
.jto-offer .jto-hero .jto-lead{ margin:0 !important; }     /* stray, not rendered — keep off-scale gaps out */

.jto-offer .jto-section .jto-h2{ margin:0 0 20px !important; }
.jto-offer .jto-section-lead{ margin:0 0 32px !important; max-width:820px !important; }

.jto-offer .jto-section-dark .jto-h2{ margin:0 0 20px !important; }
.jto-offer .jto-section-dark .jto-note{ margin:36px 0 0 !important; max-width:680px !important; }
.jto-offer .jto-section-dark .jto-actions{ margin:28px 0 0 !important; }

/* --- 5. CLOSING CTA: tall, CENTERED, image-backed "Beyond the Horizon"
   band. Background = cover3 (dusk horizon) behind a dark gradient overlay
   so the white nameplate + button stay legible; parallaxed like the hero
   & band. Content is center-stacked. --- */
.jto-offer .jto-cta{
  position:relative !important; overflow:hidden !important;
  padding:140px 0 !important;                 /* taller than the 96px sections */
  background:var(--jto-dark) !important;       /* fallback under the image */
  text-align:center !important;
}
.jto-offer .jto-cta-bg{
  position:absolute !important; left:0 !important; right:0 !important;
  top:-15% !important; height:130% !important;  /* oversized for parallax headroom */
  background-size:cover !important; background-position:center !important; background-repeat:no-repeat !important;
  z-index:0 !important; will-change:transform !important;
}
.jto-offer .jto-cta-overlay{
  position:absolute !important; inset:0 !important; z-index:1 !important; pointer-events:none !important;
  background:linear-gradient(180deg, rgba(8,10,13,.74), rgba(8,10,13,.56) 48%, rgba(8,10,13,.84)) !important;
}
.jto-offer .jto-cta .jto-cta-inner{
  position:relative !important; z-index:2 !important;
  display:flex !important; flex-direction:column !important; align-items:center !important;
  text-align:center !important;
}
.jto-offer .jto-cta .jto-h2{ color:#fff !important; margin:0 0 18px !important; }
.jto-offer .jto-cta .jto-cta-sub{
  color:rgba(255,255,255,.86) !important;
  margin:0 0 32px !important;
}
.jto-offer .jto-cta .jto-btn{ margin:0 !important; }
@media (prefers-reduced-motion:reduce){
  .jto-offer .jto-cta-bg{ top:0 !important; height:100% !important; }
}

/* --- 6. CAROUSEL ARROWS: full-bleed center mode → pin to the viewport
   edges, floating over the peeking neighbour slides. --- */
.jto-offer .jto-car-prev{ left:clamp(12px,2.6vw,46px) !important; right:auto !important; }
.jto-offer .jto-car-next{ right:clamp(12px,2.6vw,46px) !important; left:auto !important; }

/* --- 7. CAROUSEL DOTS: centered under the centered active slide. --- */
.jto-offer .jto-car-dots{
  justify-content:center !important;
  max-width:none !important;
  margin:30px auto 0 !important;
  padding-left:0 !important;
  padding-right:0 !important;
}

/* --- 8. RESPONSIVE (section/hero/cta padding + rhythm; carousel lives in block 10) --- */
@media (max-width:1024px){
  .jto-offer .jto-section{ padding:80px 0 !important; }
  .jto-offer .jto-cta{ padding:108px 0 !important; }   /* CTA stays taller than sections */
  .jto-offer .jto-hero-inner{ padding-top:104px !important; padding-bottom:80px !important; }
}
@media (max-width:768px){
  .jto-offer .jto-section{ padding:64px 0 !important; }
  .jto-offer .jto-cta{ padding:84px 0 !important; }
  .jto-offer .jto-hero{ min-height:auto !important; align-items:flex-start !important; }
  .jto-offer .jto-hero-inner{ padding-top:96px !important; padding-bottom:64px !important; }
  .jto-offer .jto-hero .jto-eyebrow{ margin:0 0 12px !important; }
  .jto-offer .jto-hero .jto-tagline{ margin:14px 0 0 !important; }
  .jto-offer .jto-hero .jto-badge{ margin:20px 0 0 !important; }
  .jto-offer .jto-hero .jto-price{ margin:24px 0 0 !important; }
  .jto-offer .jto-hero .jto-actions{ margin:26px 0 0 !important; }
  .jto-offer .jto-section .jto-h2{ margin:0 0 16px !important; }
  .jto-offer .jto-section-dark .jto-h2{ margin:0 0 16px !important; }
  .jto-offer .jto-section-lead{ margin:0 0 24px !important; }
  .jto-offer .jto-section-dark .jto-note{ margin:28px 0 0 !important; }
}

/* --- 9. CLOSING-CTA NAMEPLATE: white G700 / BEYOND THE HORIZON lockup,
   now CENTERED in the tall image band and sized up as the focal point.
   Pre-trimmed file → width drives size, height:auto keeps 3.06:1,
   margin:auto centers, max-width:100% protects narrow phones. --- */
.jto-offer .jto-cta .jto-h2.jto-cta-title{
  line-height:0 !important;
  margin:0 0 28px !important;
}
.jto-offer .jto-cta-nameplate{
  display:block !important;
  width:clamp(260px,36vw,460px) !important;
  height:auto !important;
  max-width:100% !important;
  margin-left:auto !important; margin-right:auto !important;
}
@media (max-width:768px){
  .jto-offer .jto-cta .jto-h2.jto-cta-title{ margin:0 0 22px !important; }
  .jto-offer .jto-cta-nameplate{ width:clamp(220px,64vw,320px) !important; }
}

/* ============================================================
   --- 10. FEATURE CAROUSEL — FULL-BLEED CENTER MODE ---
   The active slide is centered; the previous/next slides peek on
   each side. Works with the EXISTING JS unchanged: the track gets
   symmetric leading/trailing padding = (trackWidth - slideWidth)/2,
   so `scroll-snap-align:center` + the JS's scrollTo(slideOffset(i))
   land the slide dead-centre (the padding makes slideOffset(i) equal
   the centred scroll position). The section heading/lead stay on the
   left rail; only the media track goes full width + centered.
   ============================================================ */
.jto-offer .jto-carousel{
  --jto-slide-w: min(58vw, 1080px);            /* "middle full" — neighbours show ~1/3 each */
  max-width:none !important; width:100% !important;   /* full-bleed (100vw inside the section) */
  margin:0 !important; padding:0 !important;
}
.jto-offer .jto-car-track{
  /* percentage padding is relative to the track's width (=100vw), and
     clientWidth==100vw too, so this is exactly (clientWidth - slideWidth)/2 */
  padding-left:calc((100% - var(--jto-slide-w)) / 2) !important;
  padding-right:calc((100% - var(--jto-slide-w)) / 2) !important;
  gap:24px !important;
}
.jto-offer .jto-car-slide{
  width:var(--jto-slide-w) !important;
  max-width:none !important;
  scroll-snap-align:center !important;          /* was start */
}
@media (max-width:1024px){
  .jto-offer .jto-carousel{ --jto-slide-w:68vw !important; }
}
@media (max-width:680px){
  .jto-offer .jto-carousel{ --jto-slide-w:82vw !important; }   /* small peek on phones */
  .jto-offer .jto-car-track{ gap:14px !important; }
}

/* ============================================================
   --- 11. HERO MEDIA SPLIT (mobile) ---
   Desktop: .jto-hero-media is the absolute background (video + overlay)
   behind the left-aligned text; the white nameplate is hidden.
   Mobile: the hero becomes a column — a VIDEO BAND on top (light overlay
   + centered white nameplate), then a SOLID BLACK block with the text.
   Fixes the cramped, video-hidden mobile hero.
   ============================================================ */
.jto-offer .jto-hero-media{ position:absolute !important; inset:0 !important; z-index:0 !important; overflow:hidden !important; }
.jto-offer .jto-hero-nameplate{ display:none !important; }

@media (max-width:768px){
  .jto-offer .jto-hero{
    display:flex !important; flex-direction:column !important;
    min-height:auto !important; background:#0c0f13 !important;
  }
  .jto-offer .jto-hero-media{
    position:relative !important; inset:auto !important;
    width:100% !important; height:clamp(290px,46vh,440px) !important;
    flex:0 0 auto !important;
  }
  /* lighter overlay so the video is clearly visible behind the nameplate */
  .jto-offer .jto-hero-overlay{
    background:linear-gradient(180deg, rgba(10,12,15,.30), rgba(10,12,15,.18) 45%, rgba(10,12,15,.55)) !important;
  }
  .jto-offer .jto-hero-nameplate{
    display:block !important; position:absolute !important; z-index:3 !important;
    left:50% !important; top:50% !important; transform:translate(-50%,-50%) !important;
    width:min(66vw,300px) !important; height:auto !important; max-width:82% !important;
    filter:drop-shadow(0 2px 12px rgba(0,0,0,.5)) !important;
  }
  .jto-offer .jto-hero-inner{
    position:relative !important; z-index:2 !important; background:#0c0f13 !important;
    padding-top:34px !important; padding-bottom:56px !important;
  }
  .jto-offer .jto-hero .jto-eyebrow{ display:none !important; }   /* the nameplate already shows the lockup */
  .jto-offer .jto-hero .jto-tagline{ font-size:16px !important; }
  /* notice: smaller font + tighter padding on mobile (5px radius kept from base) */
  .jto-offer .jto-hero .jto-badge{ font-size:12.5px !important; padding:7px 12px 7px 11px !important; gap:8px !important; }
  .jto-offer .jto-hero .jto-badge::before{ width:7px !important; height:7px !important; box-shadow:0 0 0 3px rgba(57,174,177,.22) !important; }
}
