/* ================================
   VistaVoyage Core Styles (v1.4)
   ================================ */

/* ---------- CSS Reset / Base ---------- */
*,*::before,*::after{box-sizing:border-box}
body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}
ul[role="list"],ol[role="list"]{list-style:none;margin:0;padding:0}
ul,ol{margin:0;padding:0}
body{min-height:100vh;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;line-height:1.5}
img,picture{max-width:100%;display:block}
input,button,textarea,select{font:inherit}
a{text-decoration:none;color:inherit}
button{cursor:pointer;border:none;background:none}
:focus-visible{outline:2px solid var(--accent);outline-offset:3px}

/* ---------- Design Tokens ---------- */
:root{
  --primary:#1565C0;
  --primary-rgb:21,101,192;
  --accent:#42A5F5;
  --accent-rgb:66,165,245;
  --accent-alt:#90CAF9;
  --bg:#F5F8FB;
  --bg-alt:#FFFFFF;
  --bg-soft:#ECF2F7;
  --text:#1E2732;
  --text-light:#4B5A68;
  --border:#D9E2EA;
  --shadow-color:21 101 192;
  --radius-xs:4px;
  --radius-sm:6px;
  --radius-md:10px;
  --radius-lg:18px;
  --radius-full:999px;
  --space-1:4px;
  --space-2:8px;
  --space-3:12px;
  --space-4:16px;
  --space-5:20px;
  --space-6:24px;
  --space-7:32px;
  --space-8:40px;
  --space-9:56px;
  --max-width:1240px;
  --font-heading:"Poppins",system-ui,sans-serif;
  --font-body:"Inter",system-ui,sans-serif;
  --easing:cubic-bezier(.4,.14,.3,1);
  --gradient:linear-gradient(135deg,#1565C0 0%,#1976D2 40%,#1E88E5 70%,#42A5F5 100%);
  --gradient-warm:linear-gradient(135deg,#42A5F5 0%,#2196F3 45%,#1E88E5 100%);
  --hero-overlay:linear-gradient(180deg,rgba(21,101,192,.60) 0%,rgba(21,101,192,.35) 50%,rgba(21,101,192,.90) 100%);
  --transition:.35s var(--easing);
  --glass-bg:linear-gradient(135deg,rgba(255,255,255,.22),rgba(255,255,255,.08));
  --glass-border:1px solid rgba(255,255,255,.28);
  --focus-ring:0 0 0 3px rgba(var(--accent-rgb),.45)
}

/* ---------- Global Base ---------- */
body{
  font-family:var(--font-body);
  font-weight:400;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

h1,h2,h3,h4{
  font-family:var(--font-heading);
  line-height:1.15;
  font-weight:600;
  letter-spacing:.5px;
}

h1{font-size:clamp(2.4rem,6vw,3.4rem);font-weight:700}
h2{font-size:clamp(1.8rem,3.2vw,2.35rem)}
h3{font-size:clamp(1.25rem,2vw,1.5rem)}
p,li{font-size:clamp(.98rem,1.4vw,1.05rem)}
small{font-size:.82rem}

/* ---------- Layout Helpers ---------- */
.container{width:100%;max-width:var(--max-width);margin-inline:auto;padding:0 var(--space-5)}
.section{padding:var(--space-9) 0;position:relative}
.section-title{margin-bottom:var(--space-6);font-weight:700;letter-spacing:.5px}
.section-intro{max-width:720px;margin-bottom:var(--space-7);color:var(--text-light)}

/* ---------- Utilities ---------- */
.accent-text{color:var(--accent)}
.badge{display:inline-block;line-height:1;padding:6px 10px;font-size:.68rem;font-weight:600;letter-spacing:.5px;border-radius:var(--radius-full);text-transform:uppercase;background:var(--primary);color:#fff;vertical-align:middle}
.badge.soon{background:var(--accent);color:#fff}
.badge.subtle{background:var(--bg-soft);color:var(--text)}
.gradient-text{background:linear-gradient(90deg,#42A5F5,#1E88E5,#1565C0);-webkit-background-clip:text;color:transparent}
.inline-link{color:var(--accent);text-decoration:none;position:relative}
.inline-link::after{content:"";position:absolute;left:0;bottom:-2px;width:100%;height:2px;background:currentColor;transform:scaleX(0);transform-origin:left;transition:transform .3s var(--easing)}
.inline-link:focus-visible::after,.inline-link:hover::after{transform:scaleX(1)}

.skip-link{
  position:absolute;top:-50px;left:0;
  background:var(--primary);color:#fff;
  padding:10px 16px;z-index:100;font-weight:600;
  border-radius:0 0 var(--radius-sm) 0
}
.skip-link:focus{top:0}

/* ---------- Header / Navigation ---------- */
.site-header{
  position:fixed;top:0;left:0;width:100%;
  background:rgba(var(--primary-rgb),.82);
  backdrop-filter:blur(10px);
  z-index:1001; /* Must be higher than mobile nav */
  box-shadow:0 2px 12px -4px rgba(var(--shadow-color)/.28)
}
.header-inner{display:flex;align-items:center;justify-content:space-between;min-height:70px}
.brand{display:flex;align-items:center;gap:10px;font-weight:600;color:#fff;letter-spacing:.5px;font-size:1.05rem}
.brand-mark{
  display:inline-flex;align-items:center;justify-content:center;
  width:40px;height:40px;border-radius:12px;
  background:var(--gradient);font-size:.9rem;font-weight:600;color:#fff;
  letter-spacing:1px;box-shadow:0 4px 10px -2px rgba(var(--shadow-color)/.4)
}
.brand-text .accent{color:var(--accent)}
.primary-nav ul{display:flex;gap:32px;align-items:center;list-style:none;flex-wrap:nowrap}
.primary-nav a{color:#fff;font-weight:500;font-size:.96rem;position:relative;padding:6px 0;white-space:nowrap}
@media (max-width:1280px){
  .primary-nav ul{gap:18px}
  .primary-nav a{font-size:.88rem}
}
@media (max-width:1100px){
  .primary-nav ul{gap:12px}
  .primary-nav a{font-size:.82rem}
}
.primary-nav a::after{content:"";position:absolute;left:0;bottom:-4px;width:100%;height:2px;background:var(--accent);transform:scaleX(0);transform-origin:left;transition:transform .35s var(--easing)}
.primary-nav a:hover::after,.primary-nav a:focus-visible::after{transform:scaleX(1)}

/* ---------- Mobile Navigation & Toggle ---------- */
.nav-toggle{display:none;flex-direction:column;gap:5px;padding:10px;z-index:1000}
.nav-toggle-bar{width:26px;height:3px;background:#fff;border-radius:2px;transition: transform 0.4s, opacity 0.4s}
body.nav-open .nav-toggle-bar:nth-child(1){transform:translateY(8px) rotate(45deg)}
body.nav-open .nav-toggle-bar:nth-child(2){opacity:0}
body.nav-open .nav-toggle-bar:nth-child(3){transform:translateY(-8px) rotate(-45deg)}

/* Stop page from scrolling when mobile nav is open */
body.nav-open {
    overflow: hidden;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--primary);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    /* Hides the menu off-screen by default */
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

body.nav-open .mobile-nav {
    /* Makes the menu visible when body has .nav-open class */
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav li {
    margin: 20px 0;
}

.mobile-nav a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 10px;
}

/* ---------- Hero ---------- */
.hero{position:relative;min-height:100svh;display:flex;align-items:center;padding-top:70px;isolation:isolate}
.hero-media{position:absolute;inset:0;background:#1565C0 url("../img/hero-1.webp") center/cover no-repeat;filter:brightness(.86)}
.hero-overlay{position:absolute;inset:0;background:var(--hero-overlay)}
.hero-content{position:relative;z-index:2;padding-top:20px;padding-bottom:60px;max-width:820px;color:#fff}
.hero-title{margin-bottom:var(--space-5)}
.hero-lead{font-size:clamp(1.02rem,1.8vw,1.25rem);max-width:640px;color:#E6EEF5;margin-bottom:var(--space-6)}
.hero-ctas{display:flex;flex-wrap:wrap;gap:14px;margin-bottom:var(--space-5)}
.hero-bullets{display:flex;gap:20px;flex-wrap:wrap;color:#DCE6EE;font-size:.85rem;font-weight:500;letter-spacing:.5px;text-transform:uppercase;margin:0}
.scroll-indicator{position:absolute;bottom:20px;left:50%;transform:translateX(-50%);display:flex;align-items:center;flex-direction:column;gap:6px;opacity:.85}
.scroll-indicator .mouse{width:22px;height:32px;border:2px solid #fff;border-radius:14px;position:relative}
.scroll-indicator .mouse::after{content:"";position:absolute;top:6px;left:50%;transform:translateX(-50%);width:4px;height:6px;background:#fff;border-radius:2px;animation:wheel 2s infinite}
.scroll-indicator .arrow{width:8px;height:8px;border-right:2px solid #fff;border-bottom:2px solid #fff;transform:rotate(45deg);animation:arrow 1.8s infinite}
@keyframes wheel{0%{opacity:0;transform:translate(-50%,0)}30%{opacity:1}60%{opacity:1}100%{opacity:0;transform:translate(-50%,10px)}}
@keyframes arrow{0%,100%{transform:translateY(0) rotate(45deg)}50%{transform:translateY(6px) rotate(45deg)}}

/* ---------- Buttons ---------- */
.btn{
  --btn-bg:var(--primary);
  --btn-color:#fff;
  --btn-shadow:0 6px 18px -6px rgba(var(--shadow-color)/.4);
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  font-weight:600;border-radius:var(--radius-full);padding:14px 28px;
  font-size:.95rem;line-height:1.1;position:relative;
  transition:var(--transition);background:var(--btn-bg);color:var(--btn-color);
  box-shadow:var(--btn-shadow)
}
.btn--primary{background:var(--gradient);box-shadow:0 6px 20px -6px rgba(var(--shadow-color)/.45)}
.btn--accent{--btn-bg:var(--accent);color:#fff}
.btn--ghost{--btn-bg:rgba(255,255,255,.10);--btn-color:#fff;backdrop-filter:blur(4px);box-shadow:none;border:1px solid rgba(255,255,255,.25)}
.btn--sm{padding:10px 18px;font-size:.78rem;font-weight:600}
.btn:hover,.btn:focus-visible{transform:translateY(-3px);box-shadow:0 12px 26px -10px rgba(var(--shadow-color)/.4)}
.btn:active{transform:translateY(-1px)}

/* ---------- Values Section ---------- */
.section--values{background:linear-gradient(180deg,#fff 0%,#f0f5f9 100%)}
.values-grid{display:grid;gap:28px;grid-template-columns:repeat(auto-fit,minmax(240px,1fr))}
.value-card{
  background:var(--bg-alt);padding:28px 26px;border-radius:var(--radius-lg);
  position:relative;overflow:hidden;border:1px solid var(--border);
  box-shadow:0 4px 12px -6px rgba(var(--shadow-color)/.18);
  transition:var(--transition)
}
.value-card::before{
  content:"";position:absolute;inset:0;
  background:radial-gradient(circle at 80% 10%,rgba(var(--accent-rgb),.15),transparent 70%);
  opacity:0;transition:var(--transition)
}
.value-card:hover::before{opacity:1}
.value-card h3{margin-bottom:10px;font-size:1.1rem}
.value-card p{color:var(--text-light);font-size:.92rem}
.icon-wrap{
  width:52px;height:52px;display:flex;align-items:center;justify-content:center;
  background:var(--gradient);color:#fff;border-radius:14px;font-size:1.4rem;font-weight:600;
  margin-bottom:18px;box-shadow:0 4px 14px -4px rgba(var(--shadow-color)/.38)
}

/* ---------- Destinations Section ---------- */
.section--destinations{background:#fff}
.dest-grid{display:grid;gap:36px;grid-template-columns:repeat(auto-fit,minmax(250px,1fr))}
.dest-card{
  display:flex;flex-direction:column;background:var(--bg-alt);border-radius:var(--radius-lg);
  overflow:hidden;box-shadow:0 4px 14px -6px rgba(var(--shadow-color)/.25);
  position:relative;border:1px solid var(--border);transition:var(--transition);isolation:isolate
}
.dest-media{aspect-ratio:16/11;overflow:hidden;position:relative}
.dest-media img{width:100%;height:100%;object-fit:cover;transition:transform .7s var(--easing)}
.dest-body{padding:22px 22px 26px;display:flex;flex-direction:column;gap:14px}
.dest-title{font-size:1.15rem}
.dest-text{color:var(--text-light);font-size:.92rem;line-height:1.4}
.dest-link{font-weight:600;color:var(--accent);font-size:.88rem;letter-spacing:.4px}
.dest-card:hover .dest-media img{transform:scale(1.07)}
.dest-card:hover{transform:translateY(-6px);box-shadow:0 18px 28px -14px rgba(var(--shadow-color)/.4)}

/* ---------- Why Section ---------- */
.section--why{background:linear-gradient(160deg,#1565C0 0%,#1976D2 55%,#1E88E5 100%);color:#fff}
.why-layout{display:grid;gap:60px;grid-template-columns:minmax(0,1fr) minmax(0,1fr)}
.why-intro p{margin-bottom:var(--space-6);color:#d3e2ee}
.check-list{list-style:none;padding:0;margin:0;display:grid;gap:10px;font-size:.92rem;color:#fff}
.check-list li{position:relative;padding-left:26px}
.check-list li::before{
  content:"";position:absolute;left:0;top:7px;width:14px;height:14px;
  border-radius:50%;background:var(--gradient-warm);
  box-shadow:0 0 0 3px rgba(255,255,255,.25)
}
.why-panels{display:grid;gap:30px;align-content:start}
.panel{
  padding:24px 26px;border-radius:var(--radius-lg);
  background:rgba(255,255,255,.06);backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.25);box-shadow:0 6px 22px -10px rgba(0,0,0,.5);
  min-height:150px;display:flex;flex-direction:column;gap:10px
}
.panel h3{font-size:1rem;font-weight:600}
.panel p{font-size:.9rem;color:#e0edf5}
.panel.glass{background:var(--glass-bg);border:var(--glass-border)}

/* ---------- Blog Section ---------- */
.section--blog{background:linear-gradient(180deg,#f7fbfe 0%,#ffffff 100%)}
.blog-grid{display:grid;gap:32px;grid-template-columns:repeat(auto-fit,minmax(260px,1fr))}
.blog-card{
  background:var(--bg-alt);padding:24px 24px 28px;border-radius:var(--radius-lg);
  border:1px solid var(--border);box-shadow:0 6px 18px -10px rgba(var(--shadow-color)/.2);
  display:flex;flex-direction:column;justify-content:space-between;transition:var(--transition);position:relative;overflow:hidden
}
.blog-card.placeholder::before{
  content:"Draft";position:absolute;top:12px;right:-40px;background:var(--accent);color:#fff;
  font-weight:600;padding:4px 46px;transform:rotate(35deg);font-size:.62rem;letter-spacing:.5px;
  box-shadow:0 2px 8px -2px rgba(var(--shadow-color)/.35)
}
.blog-card:hover{transform:translateY(-6px);box-shadow:0 18px 30px -16px rgba(var(--shadow-color)/.4)}
.blog-title{font-size:1.05rem;margin-bottom:12px}
.blog-excerpt{color:var(--text-light);font-size:.9rem;margin-bottom:14px}
.blog-meta{font-size:.7rem;font-weight:600;letter-spacing:.5px;color:var(--accent);text-transform:uppercase}

/* ---------- Tools Section ---------- */
.section--tools{background:#fff}
.tool-grid{display:grid;gap:28px;grid-template-columns:repeat(auto-fit,minmax(230px,1fr))}
.tool-card{
  background:var(--bg-alt);padding:24px 24px 28px;border-radius:var(--radius-lg);
  border:1px solid var(--border);box-shadow:0 4px 14px -8px rgba(var(--shadow-color)/.18);
  position:relative;overflow:hidden;transition:var(--transition)
}
.tool-card::after{
  content:"";position:absolute;inset:0;
  background:radial-gradient(circle at 65% 15%,rgba(var(--accent-rgb),.25),transparent 65%);
  opacity:0;transition:var(--transition)
}
.tool-card:hover::after{opacity:1}
.tool-card h3{margin-bottom:10px;font-size:1.02rem}
.tool-card p{font-size:.88rem;color:var(--text-light)}

/* ---------- Newsletter Section ---------- */
.section--newsletter{background:linear-gradient(135deg,#1565C0,#1976D2,#1E88E5)}
.nl-wrapper{display:flex;align-items:center;justify-content:center}
.nl-content{max-width:680px;color:#fff;text-align:center}
.nl-content p{color:#E6EEF5}
.nl-form{margin-top:26px;display:flex;flex-wrap:wrap;gap:12px;justify-content:center}
.nl-form input[type=email]{
  flex:1 1 280px;min-width:260px;
  border:1px solid rgba(255,255,255,.4);
  background:rgba(255,255,255,.14);color:#fff;
  padding:14px 18px;border-radius:var(--radius-full);
  font-size:.95rem;transition:var(--transition);backdrop-filter:blur(6px)
}
.nl-form input::placeholder{color:#d2e5f2}
.nl-form input:focus{outline:none;box-shadow:var(--focus-ring);border-color:var(--accent)}
.form-disclaimer{margin-top:10px;font-size:.72rem;letter-spacing:.5px;opacity:.85}

/* ---------- Footer ---------- */
.site-footer{background:#0C304B;color:#fff;padding:80px 0 60px;position:relative}
.footer-grid{display:grid;gap:50px;grid-template-columns:repeat(auto-fit,minmax(210px,1fr))}
.footer-brand{max-width:340px}
.footer-logo{font-size:1.1rem;margin-bottom:14px;display:inline-flex}
.footer-tagline{font-size:.9rem;color:#e0ecf5;margin-bottom:16px}
.footer-title{font-size:.85rem;letter-spacing:.5px;text-transform:uppercase;margin-bottom:18px;font-weight:600;color:#9ec1d9}
.footer-nav ul{list-style:none;display:grid;gap:10px;padding:0}
.footer-nav a{font-size:.84rem;color:#d4e4ef;transition:color .3s}
.footer-nav a:hover{color:#fff}
.footer-social .social-list{list-style:none;display:flex;gap:14px;padding:0;margin:0 0 14px}
.footer-social a{
  display:inline-flex;align-items:center;justify-content:center;width:38px;height:38px;
  background:linear-gradient(135deg,rgba(255,255,255,.15),rgba(255,255,255,.05));
  border:1px solid rgba(255,255,255,.25);border-radius:12px;font-size:.7rem;font-weight:600;
  letter-spacing:.5px;color:#fff;transition:var(--transition)
}
.footer-social a:hover{transform:translateY(-4px);background:var(--gradient);color:#fff}
.footer-copy{font-size:.72rem;letter-spacing:.5px;color:#9fc0d7}
.disclosure{font-size:.68rem;line-height:1.4;color:#9ec1d9;margin-top:12px}
.disclosure strong{color:#fff}

/* ---------- Shared Visual Patterns ---------- */
.glass{background:var(--glass-bg);backdrop-filter:blur(10px);border:var(--glass-border)}
.value-card:hover,.tool-card:hover,.blog-card:hover{cursor:pointer}

/* ---------- Media Queries ---------- */
@media (max-width:960px){
  .primary-nav{display:none}
  .nav-toggle{display:flex}
}
@media (max-width:880px){
  .why-layout{grid-template-columns:1fr}
  .hero-bullets{max-width:480px}
  .section{padding:72px 0}
  .hero{min-height:calc(100svh - 0px)}
}
@media (max-width:640px){
  .hero-title{font-size:clamp(2.05rem,8vw,2.8rem)}
  .hero-ctas .btn{flex:1 1 auto;justify-content:center}
  .hero-bullets{gap:10px}
  .footer-grid{gap:40px}
  .section-title{margin-bottom:var(--space-5)}
  .values-grid,.dest-grid,.blog-grid,.tool-grid{gap:26px}
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion:reduce){
  *{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}
  .scroll-indicator{display:none}
}

/* ---------- Selection ---------- */
::selection{background:var(--accent);color:#fff}

/* ---------- Form + Focus ---------- */
input,textarea{border-radius:var(--radius-sm)}
input:focus-visible,textarea:focus-visible{outline:none;box-shadow:var(--focus-ring)}

/* ---------- Accessibility ---------- */
.visually-hidden{position:absolute!important;clip:rect(1px,1px,1px,1px);padding:0;border:0;height:1px;width:1px;overflow:hidden;white-space:nowrap}

/* ---------- Scrollbar (Optional aesthetic) ---------- */
::-webkit-scrollbar{width:10px}
::-webkit-scrollbar-track{background:var(--bg)}
::-webkit-scrollbar-thumb{background:linear-gradient(var(--primary),#164f7c);border-radius:20px}
::-webkit-scrollbar-thumb:hover{background:linear-gradient(#164f7c,#1c628f)}

/* ---------- Content Link Visibility Enhancement ---------- */
.section a:not(.btn):not(.dest-link):not(.primary-nav a){
  text-decoration:underline;
  text-decoration-thickness:2px;
  text-underline-offset:3px;
}
.section a:not(.btn):hover{
  color:var(--accent);
}

/* ======== FLIGHT DEALS HUB STYLES ======== */

.deals-hub {
  padding: var(--space-9) 0;
  text-align: center;
  background-color: var(--bg-soft);
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: left;
}

.deal-card {
  background-color: var(--bg-alt);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 15px rgba(var(--shadow-color), 0.08);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.deal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(var(--shadow-color), 0.12);
}

.deal-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.deal-content {
  padding: 25px;
}

.deal-content h3 {
  font-size: 1.8em;
  margin-top: 0;
  margin-bottom: 5px;
  color: var(--text);
}

.deal-content .origin {
  font-size: 1em;
  color: var(--text-light);
  margin-top: 0;
  margin-bottom: 20px;
}

.deal-price {
  margin-bottom: 25px;
}

.price-label {
  font-size: 0.9em;
  color: var(--text-light);
  display: block;
}

.price-amount {
  font-size: 2.2em;
  font-weight: bold;
  color: var(--primary);
}

.deal-card .cta-button {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: var(--primary);
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: var(--radius-md);
  transition: background-color 0.3s ease;
}

.deal-card .cta-button:hover {
  background-color: var(--accent);
  color: var(--primary);
}

/* ==== VistaVoyage — Partner Logo Card Enhancement (additive) ==== */
.vv-logo-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 22px;
  box-shadow: 0 8px 28px -8px rgba(21,101,192,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 90px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.vv-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px -10px rgba(21,101,192,0.18);
}
.vv-logo-card img {
  
  
  object-fit: contain;
max-height:48px;max-width:160px;object-fit:contain;border-radius:12px;padding:6px;background:#fff;}

/* ---------- VistaVoyage – Text Refinement (Why Section) ---------- */
/* Slightly smaller, more professional typography on desktop + mobile */
.section--why h2 {
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  line-height: 1.2;
}

.section--why h3 {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
}

.section--why p,
.section--why .check-list li {
  font-size: 0.95rem;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .section--why h2 {
    font-size: 1.5rem;
  }

  .section--why h3 {
    font-size: 1.1rem;
  }

  .section--why p,
  .section--why .check-list li {
    font-size: 0.9rem;
  }
}


/* ---------------------------------
   VistaVoyage: Why-Section Typo Tune
   --------------------------------- */
.vv-why .vv-section-title{
  font-size:clamp(1.6rem,3vw,2.1rem);
  line-height:1.2;
  margin-bottom:1.5rem;
}

.vv-why .vv-why-grid{
  row-gap:1.25rem;
}

.vv-why .vv-why-item h3{
  font-size:clamp(1.05rem,2vw,1.25rem);
  line-height:1.25;
  margin-bottom:0.15rem;
}

.vv-why .vv-why-item p{
  font-size:0.95rem;
  line-height:1.55;
}

/* Mobile: slightly smaller again for comfort */
@media (max-width:768px){
  .vv-why .vv-section-title{
    font-size:1.4rem;
  }
  .vv-why .vv-why-item h3{
    font-size:1.02rem;
  }
  .vv-why .vv-why-item p{
    font-size:0.9rem;
  }
}


/* ===== VistaVoyage Phase 1 premium hero upgrade ===== */
.hero-search.vv-hero-upgrade{
  position:relative;
  padding:110px 0 48px !important;
  background:
    radial-gradient(circle at 86% 28%, rgba(63,149,255,.34) 0%, rgba(63,149,255,.16) 18%, rgba(63,149,255,0) 42%),
    radial-gradient(circle at 16% 30%, rgba(13,54,122,.58) 0%, rgba(13,54,122,.18) 26%, rgba(13,54,122,0) 50%),
    linear-gradient(90deg, #051532 0%, #082450 44%, #0b2f6c 72%, #174892 100%) !important;
  overflow:hidden;
}
.hero-search.vv-hero-upgrade::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(3,12,28,.08) 0%, rgba(3,12,28,.18) 100%);
  pointer-events:none;
}
.hero-search.vv-hero-upgrade > .container,
.hero-search.vv-hero-upgrade .container.vv-hero-grid{
  position:relative;
  z-index:1;
  max-width:1220px !important;
  margin:0 auto !important;
  display:grid !important;
  grid-template-columns:minmax(0, 1.03fr) minmax(360px, .97fr) !important;
  gap:34px !important;
  align-items:start !important;
}
.hero-search.vv-hero-upgrade .vv-hero-copy{
  max-width:560px !important;
  color:#fff !important;
  padding-top:10px;
}
.hero-search.vv-hero-upgrade .vv-hero-copy h1{
  margin:0 0 18px !important;
  max-width:560px;
  font-size:clamp(2.9rem,4.8vw,5rem) !important;
  line-height:1.05 !important;
  letter-spacing:-1.6px !important;
  font-weight:700 !important;
  color:#fff !important;
  text-wrap:balance;
}
.hero-search.vv-hero-upgrade .vv-hero-copy p{
  margin:0 0 18px !important;
  max-width:520px !important;
  font-size:1.1rem !important;
  line-height:1.5 !important;
  color:rgba(233,241,255,.9) !important;
}
.hero-search.vv-hero-upgrade .vv-authority-badge{
  gap:14px !important;
  padding:14px 20px !important;
  border-radius:999px !important;
  background:linear-gradient(180deg, rgba(255,255,255,.15), rgba(255,255,255,.08)) !important;
  border:1px solid rgba(255,255,255,.26) !important;
  box-shadow:0 10px 24px rgba(3,10,26,.2), inset 0 1px 0 rgba(255,255,255,.16) !important;
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}
.hero-search.vv-hero-upgrade .vv-authority-badge strong{font-size:1rem;color:#fff;display:block;line-height:1.15;}
.hero-search.vv-hero-upgrade .vv-authority-badge span{color:rgba(236,243,255,.92) !important;}
.hero-search.vv-hero-upgrade .vv-bullets{
  display:flex;
  flex-wrap:wrap;
  gap:6px 16px;
  margin:0 0 18px !important;
  font-size:1rem !important;
  line-height:1.45;
  color:rgba(236,243,255,.92) !important;
}
.hero-search.vv-hero-upgrade .vv-email-pill a,
.hero-search.vv-hero-upgrade .vv-email-pill{
  display:inline-flex !important;
  align-items:center !important;
  gap:10px !important;
  padding:12px 20px !important;
  border-radius:999px !important;
  border:1px solid rgba(255,255,255,.18) !important;
  background:linear-gradient(180deg, rgba(5,17,42,.72), rgba(6,20,44,.52)) !important;
  color:#fff !important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08), 0 10px 22px rgba(0,0,0,.18) !important;
  font-weight:700 !important;
}
.hero-search.vv-hero-upgrade .vv-quick-tiles{
  margin:0 0 18px !important;
  gap:14px !important;
}
.hero-search.vv-hero-upgrade .vv-quick-tiles > a{flex:1 1 0 !important;min-width:0 !important;}
.hero-search.vv-hero-upgrade .vv-quick-tiles .vv-tile{
  min-height:118px;
  border-radius:18px !important;
  padding:18px 14px !important;
  background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.07)) !important;
  border:1px solid rgba(255,255,255,.16) !important;
  box-shadow:0 14px 28px rgba(1,10,24,.18), inset 0 1px 0 rgba(255,255,255,.1) !important;
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}
.hero-search.vv-hero-upgrade #flight-widget-shell,
.hero-search.vv-hero-upgrade .vv-widget-shell{
  border-radius:28px !important;
  background:#f4f7fb !important;
  box-shadow:0 26px 80px rgba(3,12,30,.34), 0 4px 0 rgba(255,255,255,.08) inset !important;
  overflow:hidden !important;
  border:1px solid rgba(255,255,255,.2) !important;
}
.hero-search.vv-hero-upgrade #vv-ts-embed{border-radius:28px !important; min-height:760px !important;}
.hero-search.vv-hero-upgrade #vv-ts-frame{height:760px !important; width:100% !important; display:block !important;}
@media (max-width: 1024px){
  .hero-search.vv-hero-upgrade{padding:96px 0 40px !important;}
  .hero-search.vv-hero-upgrade > .container,
  .hero-search.vv-hero-upgrade .container.vv-hero-grid{grid-template-columns:1fr !important; gap:22px !important;}
  .hero-search.vv-hero-upgrade .vv-hero-copy{max-width:700px !important;}
}
@media (max-width: 768px){
  .hero-search.vv-hero-upgrade{padding:88px 0 28px !important;}
  .hero-search.vv-hero-upgrade > .container,
  .hero-search.vv-hero-upgrade .container.vv-hero-grid{padding:0 16px !important; gap:16px !important;}
  .hero-search.vv-hero-upgrade .vv-hero-copy{padding-top:0;}
  .hero-search.vv-hero-upgrade .vv-hero-copy h1{font-size:clamp(2.6rem,9.8vw,3.8rem) !important; letter-spacing:-1.2px !important;}
  .hero-search.vv-hero-upgrade .vv-hero-copy p{font-size:1rem !important;}
  .hero-search.vv-hero-upgrade .vv-authority-badge{padding:12px 16px !important;}
  .hero-search.vv-hero-upgrade .vv-bullets{display:block;font-size:.98rem !important;line-height:1.55;}
  .hero-search.vv-hero-upgrade .vv-quick-tiles{gap:12px !important;}
  .hero-search.vv-hero-upgrade .vv-quick-tiles .vv-tile{min-height:110px;padding:16px 10px !important;border-radius:17px !important;}
  .hero-search.vv-hero-upgrade #flight-widget-shell,
  .hero-search.vv-hero-upgrade .vv-widget-shell,
  .hero-search.vv-hero-upgrade #vv-ts-embed{border-radius:26px !important;}
  .hero-search.vv-hero-upgrade #vv-ts-embed{min-height:660px !important;}
  .hero-search.vv-hero-upgrade #vv-ts-frame{height:660px !important;}
}

/* ===== VistaVoyage Phase 1 refinement patch — visibility + mobile rhythm ===== */
.hero-search.vv-hero-upgrade > .container > div:nth-child(3),
.hero-search.vv-hero-upgrade > .container > div:nth-child(4),
.hero-search.vv-hero-upgrade > .container > div:nth-child(5),
.hero-search.vv-hero-upgrade > .container > div:nth-child(6){
  color:#eef4ff !important;
  opacity:1 !important;
  text-shadow:0 1px 12px rgba(3,12,30,.18);
}

.hero-search.vv-hero-upgrade > .container > div:nth-child(3){
  font-size:clamp(1.9rem,2.4vw,2.35rem) !important;
  font-weight:800 !important;
  line-height:1.05 !important;
  letter-spacing:-0.03em !important;
  margin:8px 0 8px !important;
  color:#f5f9ff !important;
}

.hero-search.vv-hero-upgrade > .container > div:nth-child(4){
  font-size:clamp(1.25rem,1.9vw,1.55rem) !important;
  font-weight:800 !important;
  line-height:1.25 !important;
  margin:0 0 8px !important;
  color:#ffffff !important;
}

.hero-search.vv-hero-upgrade > .container > div:nth-child(5){
  font-size:1rem !important;
  line-height:1.65 !important;
  max-width:560px !important;
  margin:0 0 14px !important;
  color:rgba(236,243,255,.92) !important;
}

.hero-search.vv-hero-upgrade > .container > div:nth-child(6){
  display:inline-flex !important;
  align-items:center !important;
  gap:8px !important;
  padding:10px 16px !important;
  border-radius:999px !important;
  background:linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.08)) !important;
  border:1px solid rgba(255,255,255,.22) !important;
  box-shadow:0 10px 24px rgba(3,10,26,.16), inset 0 1px 0 rgba(255,255,255,.1) !important;
  color:#ffffff !important;
  font-size:.82rem !important;
  font-weight:700 !important;
  margin:0 0 8px !important;
}

.hero-search.vv-hero-upgrade > div:nth-child(2){
  background:linear-gradient(180deg, rgba(8,55,92,.96), rgba(7,48,82,.92)) !important;
  color:#ffffff !important;
  border:1px solid rgba(255,255,255,.08) !important;
  box-shadow:0 18px 40px rgba(3,12,30,.18) !important;
}
.hero-search.vv-hero-upgrade > div:nth-child(2) p,
.hero-search.vv-hero-upgrade > div:nth-child(2) strong,
.hero-search.vv-hero-upgrade > div:nth-child(2) span{
  color:#ffffff !important;
  opacity:1 !important;
}

.hero-search.vv-hero-upgrade > .vv-trust-strip,
.hero-search.vv-hero-upgrade > div:nth-child(4),
.hero-search.vv-hero-upgrade > div:nth-child(5){
  position:relative;
  z-index:2;
}

.hero-search.vv-hero-upgrade > .vv-trust-strip{
  margin-top:14px !important;
  gap:10px !important;
}
.hero-search.vv-hero-upgrade > .vv-trust-strip .vv-trust-pill{
  color:#f5f9ff !important;
  background:rgba(255,255,255,.08) !important;
  border:1px solid rgba(255,255,255,.16) !important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06) !important;
}
.hero-search.vv-hero-upgrade > .vv-trust-strip .vv-trust-pill span{
  color:#f5f9ff !important;
  opacity:1 !important;
}

.hero-search.vv-hero-upgrade > div:nth-child(4) > span:first-child,
.hero-search.vv-hero-upgrade > div:nth-child(5) > div > span:first-child{
  color:#dbe8ff !important;
  opacity:1 !important;
}
.hero-search.vv-hero-upgrade > div:nth-child(4) a,
.hero-search.vv-hero-upgrade > div:nth-child(5) a{
  color:#ffffff !important;
  background:rgba(255,255,255,.08) !important;
  border-color:rgba(255,255,255,.14) !important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.05) !important;
}

@media (min-width: 769px){
  .hero-search.vv-hero-upgrade{
    padding-bottom:30px !important;
  }
  .hero-search.vv-hero-upgrade > .container{
    gap:28px 42px !important;
    align-items:start !important;
  }
  .hero-search.vv-hero-upgrade > .container > div:first-child{
    padding-top:10px !important;
  }
}

@media (max-width: 768px){
  .hero-search.vv-hero-upgrade{
    padding:84px 0 22px !important;
  }

  .hero-search.vv-hero-upgrade > .container,
  .hero-search.vv-hero-upgrade .container.vv-hero-grid{
    gap:14px !important;
  }

  .hero-search.vv-hero-upgrade .vv-hero-copy h1{
    font-size:clamp(2.15rem,8.5vw,3.1rem) !important;
    line-height:1.06 !important;
    letter-spacing:-1.1px !important;
    margin-bottom:14px !important;
  }

  .hero-search.vv-hero-upgrade .vv-hero-copy p{
    font-size:1rem !important;
    line-height:1.52 !important;
    margin-bottom:14px !important;
  }

  .hero-search.vv-hero-upgrade .vv-authority-badge{
    padding:11px 14px !important;
    gap:10px !important;
    margin-bottom:12px !important;
  }

  .hero-search.vv-hero-upgrade .vv-bullets{
    font-size:.98rem !important;
    line-height:1.5 !important;
    margin-bottom:12px !important;
  }

  .hero-search.vv-hero-upgrade .vv-email-pill,
  .hero-search.vv-hero-upgrade .vv-email-pill a{
    padding:10px 15px !important;
    font-size:1rem !important;
  }

  .hero-search.vv-hero-upgrade .vv-quick-tiles{
    gap:10px !important;
    margin-bottom:12px !important;
  }

  .hero-search.vv-hero-upgrade .vv-quick-tiles .vv-tile{
    min-height:96px !important;
    padding:12px 8px !important;
  }

  .hero-search.vv-hero-upgrade .vv-quick-tiles .vv-tile > div:first-child{
    font-size:18px !important;
    margin-bottom:4px !important;
  }

  .hero-search.vv-hero-upgrade .vv-quick-tiles .vv-tile > div:nth-child(2){
    font-size:12px !important;
    line-height:1.08 !important;
  }

  .hero-search.vv-hero-upgrade .vv-quick-tiles .vv-tile > div:last-child{
    font-size:10px !important;
    margin-top:3px !important;
  }

  .hero-search.vv-hero-upgrade #flight-widget-shell,
  .hero-search.vv-hero-upgrade .vv-widget-shell,
  .hero-search.vv-hero-upgrade #vv-ts-embed{
    border-radius:24px !important;
  }

  .hero-search.vv-hero-upgrade #vv-ts-embed{
    min-height:640px !important;
  }

  .hero-search.vv-hero-upgrade #vv-ts-frame{
    height:640px !important;
  }

  .hero-search.vv-hero-upgrade > .container > div:nth-child(3){
    font-size:1.65rem !important;
    line-height:1.05 !important;
    margin:2px 0 6px !important;
  }

  .hero-search.vv-hero-upgrade > .container > div:nth-child(4){
    font-size:1.55rem !important;
    line-height:1.18 !important;
    margin:0 0 6px !important;
    color:#f7fbff !important;
  }

  .hero-search.vv-hero-upgrade > .container > div:nth-child(5){
    font-size:.98rem !important;
    line-height:1.55 !important;
    margin-bottom:12px !important;
  }

  .hero-search.vv-hero-upgrade > .container > div:nth-child(6){
    font-size:.78rem !important;
    padding:9px 14px !important;
    margin-bottom:6px !important;
  }

  .hero-search.vv-hero-upgrade > div:nth-child(2){
    margin:14px 16px 0 !important;
    padding:18px 16px !important;
    border-radius:18px !important;
  }

  .hero-search.vv-hero-upgrade > .vv-trust-strip{
    margin:12px 16px 0 !important;
    justify-content:center !important;
  }

  .hero-search.vv-hero-upgrade > div:nth-child(4){
    margin:12px 16px 0 !important;
    gap:8px !important;
  }

  .hero-search.vv-hero-upgrade > div:nth-child(5){
    margin:10px 16px 0 !important;
  }
}


/* ===== VistaVoyage targeted polish — visibility + mobile tile balance ===== */
.hero-search.vv-hero-upgrade .vv-quick-tiles{
  align-items:stretch !important;
}
.hero-search.vv-hero-upgrade .vv-quick-tiles > a{
  display:flex !important;
  min-width:0 !important;
}
.hero-search.vv-hero-upgrade .vv-quick-tiles .vv-tile{
  height:100% !important;
  min-height:108px !important;
  justify-content:center !important;
}
.hero-search.vv-hero-upgrade .vv-quick-tiles .vv-tile > div:nth-child(2){
  font-size:1.02rem !important;
  line-height:1.12 !important;
  letter-spacing:-.2px !important;
}
.hero-search.vv-hero-upgrade .vv-quick-tiles .vv-tile > div:last-child{
  font-size:.92rem !important;
  line-height:1.2 !important;
}

.hero-search.vv-hero-upgrade > .container > div:nth-child(3),
.hero-search.vv-hero-upgrade > .container > div:nth-child(4),
.hero-search.vv-hero-upgrade > .container > div:nth-child(5),
.hero-search.vv-hero-upgrade > .container > div:nth-child(6),
.hero-search.vv-hero-upgrade > div:nth-child(2),
.hero-search.vv-hero-upgrade > div:nth-child(3),
.hero-search.vv-hero-upgrade > div:nth-child(4),
.hero-search.vv-hero-upgrade > div:nth-child(5){
  position:relative !important;
  z-index:2 !important;
}

.hero-search.vv-hero-upgrade > .container > div:nth-child(3),
.hero-search.vv-hero-upgrade > div:nth-child(3){
  color:#eaf3ff !important;
  opacity:1 !important;
  text-shadow:0 2px 14px rgba(3,10,26,.32) !important;
}
.hero-search.vv-hero-upgrade > .container > div:nth-child(4),
.hero-search.vv-hero-upgrade > div:nth-child(4){
  color:#f6fbff !important;
  opacity:1 !important;
  text-shadow:0 2px 16px rgba(3,10,26,.34) !important;
}
.hero-search.vv-hero-upgrade > .container > div:nth-child(5),
.hero-search.vv-hero-upgrade > div:nth-child(5){
  color:#f2f7ff !important;
  opacity:1 !important;
}
.hero-search.vv-hero-upgrade > .container > div:nth-child(6),
.hero-search.vv-hero-upgrade > div:nth-child(6){
  color:#eef5ff !important;
  opacity:1 !important;
}

.hero-search.vv-hero-upgrade > .container > div:nth-child(6),
.hero-search.vv-hero-upgrade > div:nth-child(6),
.hero-search.vv-hero-upgrade .vv-trust-strip,
.hero-search.vv-hero-upgrade .vv-trust-strip *{
  color:#eef5ff !important;
}
.hero-search.vv-hero-upgrade > .container > div:nth-child(6) a,
.hero-search.vv-hero-upgrade > div:nth-child(6) a,
.hero-search.vv-hero-upgrade .vv-trust-strip a{
  color:#eef5ff !important;
  opacity:1 !important;
}
.hero-search.vv-hero-upgrade > .container > div:nth-child(6) > *,
.hero-search.vv-hero-upgrade > div:nth-child(6) > *,
.hero-search.vv-hero-upgrade .vv-trust-strip > *{
  background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06)) !important;
  border:1px solid rgba(255,255,255,.18) !important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08) !important;
}

@media (max-width: 768px){
  .hero-search.vv-hero-upgrade .vv-quick-tiles{
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  }
  .hero-search.vv-hero-upgrade .vv-quick-tiles .vv-tile{
    min-height:90px !important;
    padding:10px 8px !important;
  }
  .hero-search.vv-hero-upgrade .vv-quick-tiles .vv-tile > div:first-child{
    font-size:16px !important;
    margin-bottom:3px !important;
  }
  .hero-search.vv-hero-upgrade .vv-quick-tiles .vv-tile > div:nth-child(2){
    font-size:.82rem !important;
    line-height:1.02 !important;
  }
  .hero-search.vv-hero-upgrade .vv-quick-tiles .vv-tile > div:last-child{
    font-size:.72rem !important;
    line-height:1.08 !important;
    margin-top:3px !important;
  }

  .hero-search.vv-hero-upgrade > .container > div:nth-child(3),
  .hero-search.vv-hero-upgrade > div:nth-child(3){
    font-size:1.88rem !important;
    line-height:1.04 !important;
    margin:8px 16px 4px !important;
    color:#f2f8ff !important;
  }
  .hero-search.vv-hero-upgrade > .container > div:nth-child(4),
  .hero-search.vv-hero-upgrade > div:nth-child(4){
    font-size:1.92rem !important;
    line-height:1.12 !important;
    margin:0 16px 8px !important;
    color:#f7fbff !important;
  }
  .hero-search.vv-hero-upgrade > .container > div:nth-child(5),
  .hero-search.vv-hero-upgrade > div:nth-child(5){
    font-size:1rem !important;
    line-height:1.5 !important;
    margin:0 16px 12px !important;
    color:#edf5ff !important;
  }
  .hero-search.vv-hero-upgrade > .container > div:nth-child(6),
  .hero-search.vv-hero-upgrade > div:nth-child(6){
    margin:0 16px 12px !important;
  }
}

/* ===== 2026-04-14 mobile cleanup — homepage quick tiles + quick routes ===== */
@media (max-width: 768px){
  .hero-search.vv-hero-upgrade .vv-quick-tiles{
    display:grid !important;
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
    gap:8px !important;
    align-items:stretch !important;
    margin:10px 0 12px !important;
  }

  .hero-search.vv-hero-upgrade .vv-quick-tiles > a{
    display:flex !important;
    min-width:0 !important;
    width:100% !important;
  }

  .hero-search.vv-hero-upgrade .vv-quick-tiles .vv-tile{
    min-height:78px !important;
    height:100% !important;
    padding:9px 6px !important;
    border-radius:14px !important;
    justify-content:center !important;
  }

  .hero-search.vv-hero-upgrade .vv-quick-tiles .vv-tile > div:first-child{
    font-size:15px !important;
    line-height:1 !important;
    margin-bottom:2px !important;
  }

  .hero-search.vv-hero-upgrade .vv-quick-tiles .vv-tile > div:nth-child(2){
    font-size:.70rem !important;
    line-height:1.02 !important;
    letter-spacing:0 !important;
  }

  .hero-search.vv-hero-upgrade .vv-quick-tiles .vv-tile > div:last-child{
    font-size:.64rem !important;
    line-height:1.05 !important;
    margin-top:2px !important;
  }

  .hero-search.vv-hero-upgrade > div:nth-child(4),
  .hero-search.vv-hero-upgrade > div:nth-child(5){
    margin-left:16px !important;
    margin-right:16px !important;
  }

  .hero-search.vv-hero-upgrade > div:nth-child(4){
    margin-top:10px !important;
    gap:6px !important;
    font-size:0 !important;
    line-height:1.2 !important;
  }

  .hero-search.vv-hero-upgrade > div:nth-child(4) > span:first-child{
    display:block !important;
    width:100% !important;
    margin:0 0 4px !important;
    font-size:12px !important;
    line-height:1.2 !important;
  }

  .hero-search.vv-hero-upgrade > div:nth-child(4) a{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    padding:5px 9px !important;
    font-size:11px !important;
    line-height:1.15 !important;
    border-radius:999px !important;
    white-space:nowrap !important;
  }

  .hero-search.vv-hero-upgrade > div:nth-child(5){
    margin-top:8px !important;
  }

  .hero-search.vv-hero-upgrade > div:nth-child(5) > div{
    gap:6px !important;
    font-size:0 !important;
    line-height:1.2 !important;
  }

  .hero-search.vv-hero-upgrade > div:nth-child(5) > div > span:first-child{
    display:block !important;
    width:100% !important;
    margin:0 0 4px !important;
    font-size:12px !important;
    line-height:1.2 !important;
  }

  .hero-search.vv-hero-upgrade > div:nth-child(5) a{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    padding:5px 9px !important;
    font-size:11px !important;
    line-height:1.15 !important;
    border-radius:999px !important;
    white-space:nowrap !important;
  }
}

/* ===== 2026-04-15 desktop-only tile parity patch ===== */
@media (min-width: 769px){
  .hero-search.vv-hero-upgrade .vv-quick-tiles > a:first-child .vv-tile > div:nth-child(2){
    font-size:.96rem !important;
    line-height:1.08 !important;
    letter-spacing:-.1px !important;
  }
  .hero-search.vv-hero-upgrade .vv-quick-tiles > a:first-child .vv-tile > div:last-child{
    margin-top:3px !important;
  }
}


/* VV CRO LEVEL 2 CLEAN */
.vv-cro-inline{
  max-width: 1200px;
  margin: 12px auto 0;
  padding: 0 20px 12px;
}
.vv-urgency{
  text-align:center;
  font-size:14px;
  line-height:1.5;
  margin:0 0 8px;
  color:#ffb347;
  font-weight:600;
}
.vv-trust-strip{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  font-size:13px;
  opacity:.95;
}
.vv-trust-strip span{
  color:#dbe7ff;
}
.vv-trust-strip img{
  height:22px;
  width:auto;
  object-fit:contain;
  border-radius:4px;
  background:#fff;
  padding:2px 6px;
  opacity:1;
}
@media (max-width: 768px){
  .vv-cro-inline{
    margin-top:10px;
    padding:0 16px 12px;
  }
  .vv-urgency{
    font-size:13px;
  }
  .vv-trust-strip{
    gap:8px;
    font-size:12px;
  }
  .vv-trust-strip img{
    height:20px;
  }
}
