/* --- Just In Joy Travel: Hero Section --- */
.jij-hero {
  position: relative;
  padding: clamp(64px, 8vw, 120px) 20px 48px;
  text-align: center;
  color: #0f172a; /* dark slate */
  background: #f8fbff url("/images/hero.jpg") center/cover no-repeat;
}

.jij-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,.70), rgba(255,255,255,.85));
}

.jij-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.jij-hero__title {
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 14px;
}

.jij-hero__subtitle {
  font-size: clamp(16px, 2.1vw, 20px);
  color: #334155; /* slate-700 */
  max-width: 760px;
  margin: 0 auto 24px;
}

.jij-hero__ctas {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.jij-btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .06s ease, box-shadow .2s ease;
  border: 1px solid transparent;
}

.jij-btn:hover { transform: translateY(-1px); }
.jij-btn:active { transform: translateY(0); }

.jij-btn--primary {
  background: #2563eb; /* blue-600 */
  color: #fff;
  box-shadow: 0 6px 18px rgba(37,99,235,.25);
}
.jij-btn--primary:hover { background: #1d4ed8; } /* blue-700 */

.jij-btn--ghost {
  background: #fff;
  color: #0f172a;
  border-color: #e5e7eb; /* gray-200 */
}
.jij-btn--ghost:hover { border-color: #2563eb; color: #2563eb; }

.jij-hero__logos {
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  opacity: .95;
}

.jij-hero__logos img {
  height: 42px;
  width: auto;
  filter: saturate(.95) contrast(1.05);
}

/* --- Mobile tweaks --- */
@media (max-width: 480px) {
  .jij-hero { padding-top: 56px; }
  .jij-hero__logos img { height: 36px; }
}

:root{
  --brand:#0a7cff;
  --brand-dark:#075ec5;
  --ink:#111827;
  --muted:#6b7280;
  --bg:#fafafa;
  --card:#ffffff;
  --accent:#17a34a;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif; color:var(--ink); background:var(--bg);}
a{color:var(--brand);text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:1100px;margin:0 auto;padding:0 18px}
header{background:#fff;border-bottom:1px solid #eee;position:sticky;top:0;z-index:50}
.nav{display:flex;align-items:center;justify-content:space-between;padding:14px 0}
.brand{display:flex;align-items:center;gap:10px}
.brand img{width:42px;height:42px;border-radius:6px}
.brand .title{font-weight:700;font-size:18px;letter-spacing:.2px}
nav ul{list-style:none;margin:0;padding:0;display:flex;gap:18px;align-items:center}
nav a.btn{background:var(--brand);color:#fff;padding:8px 12px;border-radius:10px;font-weight:600}
nav a.btn:hover{background:var(--brand-dark);text-decoration:none}
.hero{padding:48px 0 26px;background:linear-gradient(180deg,#fff 0%,#f5f7fb 100%);border-bottom:1px solid #eee}
.hero h1{font-size:40px;line-height:1.1;margin:0 0 8px}
.hero p{font-size:18px;color:var(--muted);margin:0 0 18px}
.cta{display:flex;gap:12px;flex-wrap:wrap}
.btn{display:inline-block;background:var(--brand);color:#fff;border:none;border-radius:12px;padding:12px 16px;font-weight:700}
.btn.secondary{background:#111827;color:#fff}
.btn.ghost{background:#fff;border:1px solid #e5e7eb;color:#111827}
.section{padding:26px 0}
.card{background:var(--card);border:1px solid #eee;border-radius:16px;padding:18px;margin:14px 0}
h2{font-size:24px;margin:18px 0 10px}
h3{font-size:18px;margin:12px 0 6px}
ul.checklist{list-style:none;padding-left:0;margin:8px 0}
ul.checklist li{margin:8px 0;padding-left:34px;position:relative}
ul.checklist li::before{content:"☐";position:absolute;left:0;top:-2px;font-size:18px;color:#6b7280}
footer{border-top:1px solid #eee;background:#fff;margin-top:36px}
footer .inner{padding:22px 0;color:var(--muted);font-size:14px}
.grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
@media (max-width:860px){
  .grid{grid-template-columns:1fr}
  .hero h1{font-size:30px}
}
.notice{background:#ecfdf5;border:1px solid #d1fae5;color:#065f46;border-radius:14px;padding:12px;margin:14px 0}
.small{font-size:13px;color:var(--muted)}
.download{display:flex;gap:12px;align-items:center;margin-top:10px}

.badges{display:flex;gap:10px;flex-wrap:wrap;margin:8px 0 0}
.badge{border:1px solid #e5e7eb;border-radius:999px;padding:8px 12px;background:#fff;font-weight:600;font-size:14px}
.trust{display:grid;grid-template-columns:1.2fr .8fr;gap:18px}
.review{background:#fff;border:1px solid #eee;border-radius:14px;padding:14px}
.review .who{font-weight:700;margin-bottom:6px}
@media (max-width:860px){.trust{grid-template-columns:1fr}}
/* --- Just In Joy Travel: Hero Section --- */
.jij-hero {
  position: relative;
  padding: clamp(64px, 8vw, 120px) 20px 48px;
  text-align: center;
  color: #0f172a;
  background: #f8fbff url("/images/hero.jpg") center/cover no-repeat;
}
.jij-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(255,255,255,.70), rgba(255,255,255,.85)); }
.jij-hero__inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; }
.jij-hero__title { font-size: clamp(28px, 4.2vw, 44px); font-weight: 800; line-height: 1.1; margin: 0 0 14px; }
.jij-hero__subtitle { font-size: clamp(16px, 2.1vw, 20px); color: #334155; max-width: 760px; margin: 0 auto 24px; }
.jij-hero__ctas { display: inline-flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.jij-btn { display: inline-block; padding: 14px 22px; border-radius: 14px; font-weight: 700; text-decoration: none; transition: transform .06s, box-shadow .2s; border: 1px solid transparent; }
.jij-btn:hover { transform: translateY(-1px); } .jij-btn:active { transform: translateY(0); }
.jij-btn--primary { background:#2563eb; color:#fff; box-shadow:0 6px 18px rgba(37,99,235,.25); }
.jij-btn--primary:hover { background:#1d4ed8; }
.jij-btn--ghost { background:#fff; color:#0f172a; border-color:#e5e7eb; }
.jij-btn--ghost:hover { border-color:#2563eb; color:#2563eb; }
.jij-hero__logos { display:flex; gap:22px; justify-content:center; align-items:center; flex-wrap:wrap; opacity:.95; }
.jij-hero__logos img { height:42px; width:auto; filter:saturate(.95) contrast(1.05); }
@media (max-width: 480px) { .jij-hero { padding-top:56px; } .jij-hero__logos img { height:36px; } }
/* Supplier logos polish */
.jij-hero__logos { gap: 24px; flex-wrap: wrap; }
.jij-hero__logos img { height: 44px; width: auto; object-fit: contain; flex: 0 0 auto; }
@media (max-width: 520px){ .jij-hero__logos img { height: 36px; } }
/* Mobile sticky CTA */
.sticky-cta{
  position: fixed; left: 16px; right:16px; bottom:16px;
  display:inline-block; text-align:center; padding:14px 16px;
  background:#2563eb; color:#fff; font-weight:800; border-radius:14px;
  box-shadow:0 10px 24px rgba(37,99,235,.35); z-index:50;
}
@media (min-width:768px){ .sticky-cta{ display:none; } }
/* Container helper (add once) */
.jij-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Testimonials */
.jij-testimonials { padding: 48px 0; background: #0ea5e90d; }
.jij-testimonials h2 { text-align: center; font-size: clamp(22px, 3vw, 32px); margin: 0 0 22px; }

.jij-testimonials__grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 18px; grid-template-columns: repeat(3, minmax(0,1fr));
}

.jij-testimonials__grid li {
  display: flex; gap: 12px; align-items: flex-start;
  background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; padding: 16px;
}

.jij-testimonials .avatar {
  width: 40px; height: 40px; border-radius: 999px;
  background: #e2e8f0; display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #334155;
}

.jij-testimonials .quote { font-size: 16px; line-height: 1.5; color: #0f172a; }
.jij-testimonials .who { margin-top: 6px; color: #64748b; font-weight: 600; }

@media (max-width: 900px) { .jij-testimonials__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .jij-testimonials__grid { grid-template-columns: 1fr; } }
/* Avatar images for testimonials */
.jij-testimonials__grid li{ display:flex; gap:12px; align-items:flex-start; }
.jij-testimonials .avatar{
  width:48px; height:48px; flex:0 0 48px;
  border-radius:999px; overflow:hidden; position:relative;
  background:#e2e8f0; border:2px solid #fff;
  box-shadow:0 2px 8px rgba(0,0,0,.08);
}
.jij-testimonials .avatar img{
  width:100%; height:100%; object-fit:cover; display:block;
}
.jij-testimonials .avatar .initials{
  display:none; /* shown only if the image fails (via onerror) */
  width:100%; height:100%; align-items:center; justify-content:center;
  font-weight:800; color:#334155;
}
/* Ensure hero background applies */
.jij-hero {
  position: relative;
  padding: clamp(64px, 8vw, 120px) 20px 48px;
  text-align: center;
  color: #0f172a;
  background: #f8fbff url("/images/hero.jpg") center/cover no-repeat;
}
.jij-hero__overlay{position:absolute;inset:0;background:linear-gradient(to bottom,rgba(255,255,255,.70),rgba(255,255,255,.85));}
.jij-hero__inner{position:relative;z-index:1;max-width:1100px;margin:0 auto;}
.jij-hero__title{font-size:clamp(28px,4.2vw,44px);font-weight:800;line-height:1.1;margin:0 0 14px;}
.jij-hero__subtitle{font-size:clamp(16px,2.1vw,20px);color:#334155;max-width:760px;margin:0 auto 24px;}

/* Buttons — make sure links look like CTAs */
.jij-hero__ctas{display:inline-flex;gap:12px;flex-wrap:wrap;margin-bottom:28px;}
.jij-btn{display:inline-block;padding:14px 22px;border-radius:14px;font-weight:700;text-decoration:none;transition:transform .06s,box-shadow .2s;border:1px solid transparent;}
.jij-btn:hover{transform:translateY(-1px);} .jij-btn:active{transform:translateY(0);}
.jij-btn--primary{background:#2563eb;color:#fff;box-shadow:0 6px 18px rgba(37,99,235,.25);}
.jij-btn--primary:hover{background:#1d4ed8;}
.jij-btn--ghost{background:#fff;color:#0f172a;border-color:#e5e7eb;}
.jij-btn--ghost:hover{border-color:#2563eb;color:#2563eb;}

/* Logos — uniform size, wrap nicely */
.jij-hero__logos{display:flex;gap:24px;justify-content:center;align-items:center;flex-wrap:wrap;margin-top:8px;}
.jij-hero__logos img{height:44px;width:auto;object-fit:contain;}
@media (max-width:520px){.jij-hero__logos img{height:36px;}}

/* Hide any accidental horizontal rule inside hero */
.jij-hero hr{display:none;border:0;height:0;}
/* --- HERO contrast & spacing --- */
.jij-hero{
  /* ensure the image shows and the section has presence */
  min-height: clamp(420px, 62vh, 680px);
  background: #f8fbff url("/images/hero.jpg") center/cover no-repeat;
}
.jij-hero__overlay{
  /* slightly less white so photos show through */
  background: linear-gradient(to bottom, rgba(255,255,255,.55), rgba(255,255,255,.78));
}
.jij-hero__subtitle{ margin-bottom: 18px; }
.jij-hero__ctas{ margin-bottom: 16px; }

/* --- Supplier logos: uniform, readable, tidy --- */
.jij-hero__logos{
  display:flex; gap:24px; justify-content:center; align-items:center; flex-wrap:wrap;
}
.jij-hero__logos img{
  height:44px; width:auto; object-fit:contain;
  /* small lift so light logos don’t wash out over the hero */
  filter: brightness(1.05) contrast(1.18) saturate(1.05) drop-shadow(0 1px 0 rgba(0,0,0,.06));
  opacity:.98;
}
@media (max-width:520px){ .jij-hero__logos img{ height:36px; } }
.jij-hero{ background-image:image-set(url("/images/hero.webp") type("image/webp"), url("/images/hero.jpg") type("image/jpeg")); }
/* Mobile sticky CTA */
.sticky-cta{
  position:fixed;left:16px;right:16px;bottom:16px;z-index:60;
  display:inline-block;text-align:center;padding:14px 16px;font-weight:800;
  background:#2563eb;color:#fff;border-radius:14px;box-shadow:0 10px 24px rgba(37,99,235,.35);
}
@media (min-width:768px){.sticky-cta{display:none}}
/* Default fallback (works everywhere) */
.jij-hero{
  background: #f8fbff url("/images/hero.jpg") center/cover no-repeat;
}

/* Modern browsers */
@supports (background-image: image-set(url("/images/hero.webp") type("image/webp"), url("/images/hero.jpg") type("image/jpeg"))) {
  .jij-hero{
    background-image: image-set(
      url("/images/hero.webp") type("image/webp"),
      url("/images/hero.jpg")  type("image/jpeg")
    );
  }
}

/* Safari fallback (older versions) */
@supports (background-image: -webkit-image-set(url("/images/hero.webp") type("image/webp"), url("/images/hero.jpg") type("image/jpeg"))) {
  .jij-hero{
    background-image: -webkit-image-set(
      url("/images/hero.webp") type("image/webp"),
      url("/images/hero.jpg")  type("image/jpeg")
    );
  }
}
/* FAQ */
.jij-faq{padding:48px 0;background:#fff}
.jij-faq h2{text-align:center;font-size:clamp(22px,3vw,32px);margin:0 0 16px}
.jij-faq details{max-width:900px;margin:10px auto;background:#f8fafc;border:1px solid #e5e7eb;border-radius:12px;padding:14px 16px}
.jij-faq summary{cursor:pointer;font-weight:700;outline:none}
.jij-faq p{margin:10px 0 0;color:#475569}
/* Default fallback (works everywhere) */
.jij-hero{
  background: #f8fbff url("/images/hero.jpg") center/cover no-repeat;
}

/* Modern browsers */
@supports (background-image: image-set(url("/images/hero.webp") type("image/webp"), url("/images/hero.jpg") type("image/jpeg"))) {
  .jij-hero{
    background-image: image-set(
      url("/images/hero.webp") type("image/webp"),
      url("/images/hero.jpg")  type("image/jpeg")
    );
  }
}

/* Safari fallback (older versions) */
@supports (background-image: -webkit-image-set(url("/images/hero.webp") type("image/webp"), url("/images/hero.jpg") type("image/jpeg"))) {
  .jij-hero{
    background-image: -webkit-image-set(
      url("/images/hero.webp") type("image/webp"),
      url("/images/hero.jpg")  type("image/jpeg")
    );
  }
}
/* Default fallback (works everywhere) */
.jij-hero{
  background: #f8fbff url("/images/hero.jpg") center/cover no-repeat;
}

/* Modern browsers */
@supports (background-image: image-set(url("/images/hero.webp") type("image/webp"), url("/images/hero.jpg") type("image/jpeg"))) {
  .jij-hero{
    background-image: image-set(
      url("/images/hero.webp") type("image/webp"),
      url("/images/hero.jpg")  type("image/jpeg")
    );
  }
}

/* Safari fallback (older versions) */
@supports (background-image: -webkit-image-set(url("/images/hero.webp") type("image/webp"), url("/images/hero.jpg") type("image/jpeg"))) {
  .jij-hero{
    background-image: -webkit-image-set(
      url("/images/hero.webp") type("image/webp"),
      url("/images/hero.jpg")  type("image/jpeg")
    );
  }
}
/* Hero logo strip – normalize */
.jij-hero__logos{
  display:flex; align-items:center; justify-content:center; gap:22px;
  margin-top:18px;
}
.jij-hero__logos img{
  height:34px; /* adjust to taste */
  opacity:.92;           /* ensure visibility */
  filter:none;           /* remove any grayscale/brightness filters */
  image-rendering:auto;
}
@media (max-width:640px){
  .jij-hero__logos img{ height:28px; }
}
/* Tighter hero spacing */
.jij-hero{ padding-top:56px; padding-bottom:24px; }
/* Virgin Voyages logo — slightly larger in the hero strip */
.jij-hero__logos img[alt="Virgin Voyages"] {
  height: 42px;          /* baseline logos are ~34px; this is a modest bump */
  vertical-align: middle;
}

/* Keep it balanced on small screens */
@media (max-width: 640px){
  .jij-hero__logos img[alt="Virgin Voyages"] { height: 34px; }
}

.jij-hero{ padding-top:56px; padding-bottom:24px; }
.jij-hero__logos{ display:flex; gap:22px; justify-content:center; align-items:center; }
.jij-hero__logos img{ height:34px; opacity:.95; }
.jij-hero__logos img[alt="Virgin Voyages"]{ height:42px; } /* your requested bump */
@media (max-width:640px){ .jij-hero__logos img{ height:28px } .jij-hero__logos img[alt="Virgin Voyages"]{ height:34px } }
/* FAQ */
.jij-faq{padding:48px 0;background:#fff}
.jij-faq h2{text-align:center;font-size:clamp(22px,3vw,32px);margin:0 0 16px}
.jij-faq .jij-container{max-width:960px;margin:0 auto;padding:0 16px}
.jij-faq details{
  background:#f8fafc;border:1px solid #e5e7eb;border-radius:12px;
  padding:14px 16px;margin:10px 0;
}
.jij-faq summary{cursor:pointer;font-weight:700;list-style:none}
.jij-faq summary::-webkit-details-marker{display:none}
.jij-faq p{margin:10px 0 0;color:#475569}
/* About band */
.jij-about{background:#0b1220;color:#fff;padding:36px 0;margin-top:12px}
.jij-about .jij-container{max-width:1100px;margin:0 auto;padding:0 16px}
.jij-about .bio{display:grid;grid-template-columns:92px 1fr;gap:18px;align-items:center}
.jij-about img{width:92px;height:92px;border-radius:20px;background:#fff;padding:8px}
.jij-about h2{margin:0 0 6px;font-size:clamp(18px,2vw,24px)}
.jij-about p{margin:0 0 12px;color:#e5e7eb}
.jij-about .btn{background:#1463ff;color:#fff;border-radius:10px;padding:10px 14px;display:inline-block}
@media (max-width:700px){.jij-about .bio{grid-template-columns:64px 1fr}}
/* About band */
.about-band{background:#0b1220;color:#fff;padding:36px 0;margin-top:12px}
.about-band .container{max-width:1100px;margin:0 auto;padding:0 16px}
.about-media{display:grid;grid-template-columns:92px 1fr;gap:18px;align-items:center}
.about-media img{width:92px;height:92px;border-radius:20px;background:#fff;padding:8px}
.about-copy h2{margin:0 0 6px;font-size:clamp(18px,2vw,24px)}
.about-copy p{margin:0 0 12px;color:#e5e7eb}
.about-copy .btn{background:#1463ff;color:#fff;border-radius:10px;padding:10px 14px;display:inline-block}
@media (max-width:700px){.about-media{grid-template-columns:64px 1fr}}
/* FAQ */
.faq{padding:48px 0;background:#fff}
.faq .container{max-width:960px;margin:0 auto;padding:0 16px}
.faq h2{text-align:center;font-size:clamp(22px,3vw,32px);margin:0 0 16px}
.faq details{
  background:#f8fafc;border:1px solid #e5e7eb;border-radius:12px;
  padding:14px 16px;margin:10px 0;
}
.faq summary{cursor:pointer;font-weight:700;list-style:none}
.faq summary::-webkit-details-marker{display:none}
.faq p{margin:10px 0 0;color:#475569}
/* Collage hero background (JPG fallback) */
.jij-hero{
  background: #f8fbff url("/images/hero.jpg") center/cover no-repeat;
}

/* Use WEBP when supported */
@supports (background-image: image-set(url("/images/hero.webp") type("image/webp"))) {
  .jij-hero{
    background-image: image-set(
      url("/images/hero.webp") type("image/webp"),
      url("/images/hero.jpg")  type("image/jpeg")
    );
  }
}

/* Make the headline readable across photos */
.jij-hero__overlay{
  background: linear-gradient(
    180deg,
    rgba(11,18,32,.55) 0%,
    rgba(11,18,32,.35) 40%,
    rgba(11,18,32,0)   100%
  );
}

/* Slight lift for type on busy images */
.jij-hero__title{ text-shadow: 0 2px 12px rgba(0,0,0,.25); }
.jij-hero__subtitle{ text-shadow: 0 1px 8px rgba(0,0,0,.22); }

/* Mobile: keep it legible and tighter */
@media (max-width: 640px){
  .jij-hero{ background-position: 50% 30%; padding-bottom: 20px; }
  .jij-hero__overlay{ background: linear-gradient(180deg, rgba(11,18,32,.55), rgba(11,18,32,.15)); }
}
.jij-wave svg{ width:100%; height:80px; display:block }
.jij-wave path{ fill:#f6f8fb; } /* matches your card background */
/* Make supplier logos clickable & button-like (Virgin) */
.jij-hero__logos .jij-logo-cta{
  display:inline-flex; align-items:center; justify-content:center;
  padding:6px 10px; border-radius:10px; transition:transform .12s ease, box-shadow .12s ease, background-color .12s ease;
}
.jij-hero__logos .jij-logo-cta:hover,
.jij-hero__logos .jij-logo-cta:focus-visible{
  transform:translateY(-2px);
  background:rgba(255,255,255,.6);
  box-shadow:0 8px 20px rgba(0,0,0,.12);
  outline:2px solid #e5efff; outline-offset:2px;
}
.jij-hero__logos{
  display:flex; gap:28px; justify-content:center; align-items:center; margin-top:14px;
  flex-wrap:nowrap;
}
.jij-hero__logos img{ height:36px; width:auto; opacity:.95; transition:transform .12s ease, opacity .12s ease; }
.jij-hero__logos a{ line-height:0; display:inline-flex; }
.jij-hero__logos img:hover{ transform:translateY(-2px); opacity:1; }
/* FAQ details */
.faq details { border-radius: 12px; background:#fff; margin:10px 0; overflow:hidden; }
.faq summary { cursor:pointer; padding:14px 16px; font-weight:600; list-style:none; position:relative; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after{
  content:"▸"; position:absolute; right:16px; transform:rotate(0deg); transition:.2s;
}
.faq details[open] summary::after{ transform:rotate(90deg); }
.faq details > *:not(summary){ padding:0 16px 16px 16px; }
.faq details[open] { box-shadow:0 8px 24px rgba(16,24,40,.08); }
/* Brand strip: interactive logos */
.jij-hero__logos a { display:inline-flex; align-items:center; justify-content:center; width:88px; height:56px; border-radius:12px; transition:.2s; }
.jij-hero__logos img { max-height:40px; width:auto; filter:grayscale(1) contrast(.9) opacity(.8); transition:.2s; }
.jij-hero__logos a:hover img,
.jij-hero__logos a:focus img { filter:none; opacity:1; }
.jij-hero__logos a:focus { outline:2px solid #2563eb; outline-offset:2px; }
/* Mobile FAB CTA */
.fab-cta{
  position:fixed; right:16px; bottom:16px; z-index:60;
  background:#2563eb; color:#fff; font-weight:700; 
  padding:12px 16px; border-radius:999px; box-shadow:0 12px 28px rgba(37,99,235,.35);
  transition:transform .15s ease, box-shadow .15s ease; display:none;
}
.fab-cta:active{ transform:translateY(1px); box-shadow:0 8px 16px rgba(37,99,235,.35); }
@media (max-width: 768px){ .fab-cta{ display:inline-block; } }
.vv-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(260px,1fr)); gap:16px; }
.vv-card { background:#fff; border-radius:12px; overflow:hidden; box-shadow:0 6px 20px rgba(0,0,0,.06); padding:0; }
.vv-card figcaption { padding:10px 12px; font-size:14px; color:#334155; }

    