
:root{
  --blue-1:#0b64b3;
  --blue-2:#1e90ff;
  --bg-1:#eaf4ff;
  --text:#0e2337;
  --muted:#5f728a;
  --border:#e2edf8;
  --radius:16px;
  --shadow:0 14px 40px rgba(14,35,55,0.08);
  --max:1120px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 800px at 20% 10%, rgba(30,144,255,.10), transparent 55%),
             radial-gradient(900px 700px at 90% 20%, rgba(11,100,179,.10), transparent 60%),
             linear-gradient(180deg, var(--bg-1), #ffffff 45%, #ffffff);
}
a{color:inherit}
.container{max-width:var(--max);margin:0 auto;padding:26px}
.skip-link{
  position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden;
}
.skip-link:focus{left:16px;top:16px;width:auto;height:auto;z-index:99999;background:#fff;padding:10px 12px;border-radius:10px;border:1px solid var(--border)}
/* header */
.site-header{
  padding:18px 0 34px;
  border-bottom:1px solid var(--border);
  background:linear-gradient(135deg, rgba(207,233,255,.9), rgba(233,245,255,.9));
}
.topbar{
  display:flex;align-items:center;justify-content:space-between;
  gap:14px;
}
.brand{
  display:flex;align-items:center;gap:12px;text-decoration:none;
}
.brand img{
  height:44px;width:auto;display:block;object-fit:contain;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.12));
}
.brand .name{
  font-weight:900;letter-spacing:.2px;
  color:#083a86;
}
.nav{
  display:flex;gap:14px;flex-wrap:wrap;justify-content:flex-end;
}
.nav a{
  text-decoration:none;
  padding:10px 12px;border-radius:12px;
  color:#083a86;
  font-weight:700;
}
.nav a:hover{background:rgba(255,255,255,.65)}
.hero{
  padding:18px 0 6px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:start;
}
h1{margin:0 0 10px;font-size:36px;line-height:1.15;color:#0a3d8f}
.lead{margin:0 0 14px;color:var(--muted);line-height:1.65;font-size:16px}
.pills{display:flex;flex-wrap:wrap;gap:10px;margin-top:14px}
.pill{
  display:inline-flex;align-items:center;gap:8px;
  padding:10px 12px;border-radius:999px;border:1px solid rgba(11,100,179,.18);
  background:rgba(255,255,255,.7);
  font-weight:700;color:#0a3d8f;
}
.card{
  background:#fff;border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.callbox{padding:18px}
.callbox .label{font-size:12px;letter-spacing:.2px;color:var(--muted);font-weight:800}
.callbox .number{font-size:28px;font-weight:950;color:#0a3d8f;margin:6px 0 10px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:14px 16px;border-radius:14px;
  font-weight:900;text-decoration:none;border:1px solid transparent;
}
.btn.primary{background:#0a3d8f;color:#fff}
.btn.primary:hover{filter:brightness(.96)}
.btn.ghost{background:rgba(255,255,255,.6);border-color:rgba(11,100,179,.20);color:#083a86}
.smallnote{margin-top:10px;color:var(--muted);font-size:13px;line-height:1.55}
.grid3{
  display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin:18px 0 6px;
}
.grid3 .item{padding:14px}
.grid3 h3{margin:0 0 6px;font-size:16px;color:#0a3d8f}
.grid3 p{margin:0;color:var(--muted);line-height:1.6}
.section{margin:26px 0}
.section h2{margin:0 0 10px;color:#0a3d8f}
.faq dt{font-weight:900;margin-top:12px}
.faq dd{margin:6px 0 0;color:var(--muted);line-height:1.65}
.footer{
  margin-top:34px;
  background:#f4fbff;
  border-top:1px solid var(--border);
}
.footer .wrap{
  display:grid;
  grid-template-columns:1fr 1.3fr;
  gap:18px;
  align-items:start;
}
.footer .box{padding:16px}
.footer .box h4{margin:0 0 10px;color:#0a3d8f}
.footer a{color:#0a3d8f}
.disclaimer{
  font-size:13px;line-height:1.65;color:#4f6277;
  background:#fff;border:1px solid var(--border);border-radius:14px;padding:14px;
}
.footer-links{
  display:flex;flex-wrap:wrap;gap:10px;margin-top:12px;
}
.footer-links a{
  text-decoration:none;
  padding:8px 10px;border-radius:12px;border:1px solid rgba(11,100,179,.15);
  background:rgba(255,255,255,.7);
  font-weight:800;color:#0a3d8f;
}
.footer-links a:hover{filter:brightness(.98)}
.copy{margin-top:12px;color:#6b7c93;font-size:13px}
/* floating call */
.floating{
  position:fixed;right:18px;bottom:18px;z-index:9999;
}
.floating a{
  background:#0a3d8f;color:#fff;text-decoration:none;
  padding:16px 20px;border-radius:999px;font-weight:950;
  box-shadow:0 14px 30px rgba(0,0,0,.22);
}
.floating a:hover{filter:brightness(.96)}
/* subtle animations */
@media (prefers-reduced-motion: no-preference){
  .reveal{opacity:0;transform:translateY(10px);transition:opacity .6s ease, transform .6s ease}
  .reveal.show{opacity:1;transform:none}
}
@media (max-width: 980px){
  .hero{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .footer .wrap{grid-template-columns:1fr}
  h1{font-size:30px}
}


/* Sticky call bar (conversion-friendly, compliant) */
.sticky-call{
  position:fixed;
  left:16px;
  right:16px;
  bottom:14px;
  z-index:9999;
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  padding:14px 16px;
  border-radius:999px;
  text-decoration:none;
  background:#0a3d8f;
  color:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,0.25);
}
.sticky-call__label{font-weight:700; opacity:.92; font-size:13px;}
.sticky-call__number{font-weight:900; font-size:16px; letter-spacing:.2px;}
.sticky-call__cta{
  background:#ffffff;
  color:#0a3d8f;
  font-weight:900;
  padding:10px 14px;
  border-radius:999px;
  font-size:13px;
  white-space:nowrap;
}
@media (min-width: 980px){
  .sticky-call{
    left:50%;
    right:auto;
    transform:translateX(-50%);
    width:min(760px, calc(100% - 48px));
  }
  .sticky-call__label{font-size:14px}
  .sticky-call__number{font-size:18px}
}

/* Welcome modal */

/* Popup / Modal (non-branded, mobile-friendly) */
.modal{
  display:none;
  position:fixed;
  inset:0;
  z-index:10000;
}
.modal.is-open{display:block;}
.modal__overlay{
  position:absolute;
  inset:0;
  background:rgba(10, 20, 35, 0.55);
}
.modal__card{
  position:relative;
  width:min(520px, calc(100% - 32px));
  margin:8vh auto 0;
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:0 18px 60px rgba(0,0,0,.25);
  padding:22px 22px 18px;
  animation:modalIn .28s ease-out;
}
.modal__close{
  position:absolute;
  top:12px;
  right:12px;
  width:40px;
  height:40px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  color:#2c3e50;
  font-size:20px;
  cursor:pointer;
}
.modal__close:hover{background:#f6f9ff;}





.modal__title{
  margin:6px 0 8px;
  font-size:20px;
  color:#0a2a66;
  text-align:center;
}
.modal__desc{
  margin:0 0 12px;
  font-size:13.5px;
  color:var(--muted);
  line-height:1.55;
  text-align:center;
}

.modal__list{
  margin:0 0 12px;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.modal__list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:var(--text);
  font-size:13.5px;
}
.modal__dot{
  width:10px;height:10px;border-radius:999px;
  background:var(--blue-1);
  margin-top:4px;
  flex:0 0 10px;
}

.modal__actions{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin:12px 0 10px;
}
.modal__primary{
  display:flex;
  justify-content:center;
  align-items:center;
  text-decoration:none;
  background:var(--blue-1);
  color:#fff;
  font-weight:900;
  border-radius:14px;
  padding:14px 16px;
}
.modal__secondary{
  border-radius:14px;
  padding:12px 14px;
  background:#fff;
  border:1px solid var(--border);
  color:#1f2d3d;
  font-weight:800;
  cursor:pointer;
}
.modal__secondary:hover{background:#f6f9ff;}


.modal__fineprint a{color:var(--blue-1);font-weight:800;text-decoration:none;}
.modal__fineprint a:hover{text-decoration:underline;}

@keyframes modalIn{
  from{transform:translateY(10px) scale(.98); opacity:0;}
  to{transform:none; opacity:1;}
}

@media (max-width: 420px){
  .modal__card{margin:10vh auto 0; padding:20px 16px 16px;}
}


/* --- Mobile layout fixes (added) --- */
@media (max-width: 520px){
  .topbar{flex-wrap:wrap; gap:12px;}
  .brand{flex:1 1 auto;}
  .nav{flex:1 1 100%; justify-content:flex-start; gap:14px; flex-wrap:wrap;}
  .nav a{padding:10px 10px;}
}

/* Sticky call bar: ensure number always visible on small screens */
@media (max-width: 420px){
  .sticky-call{
    display:grid;
    grid-template-columns: 1fr auto;
    grid-template-rows:auto auto;
    gap:6px 10px;
    border-radius:20px;
    padding:12px 14px;
  }
  .sticky-call__label{display:none;}
  .sticky-call__number{grid-column:1 / 2; grid-row:1 / 3; font-size:15px; white-space:nowrap;}
  .sticky-call__cta{grid-column:2 / 3; grid-row:1 / 3; padding:10px 12px; font-size:12px;}
}


/* === Bottom-sheet modal overrides (added) === */
.modal{
  align-items:flex-end !important;
  justify-content:center !important;
  padding:0 !important;
  background:rgba(10, 20, 35, 0.45) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal__dialog{
  width:min(520px, 100%) !important;
  max-height:55vh !important;
  height:auto !important;
  border-radius:18px 18px 0 0 !important;
  margin:0 !important;
  box-shadow:0 -18px 60px rgba(0,0,0,.25) !important;
  overflow:auto !important;
  transform:translateY(26px) !important;
}
.modal.is-open .modal__dialog{
  transform:translateY(0) !important;
}

/* Grab handle */
.modal__grab{
  width:56px;
  height:5px;
  border-radius:999px;
  background:#d9e6fb;
  margin:10px auto 0;
}

@media (prefers-reduced-motion: reduce){
  .modal__dialog{ transition:none !important; }
}


/* === Bottom-sheet modal overrides (v2) === */
.modal{
  align-items:flex-end !important;
  justify-content:center !important;
  padding:0 !important;
}

/* Overlay blur + dim */
.modal__overlay{
  background:rgba(10, 20, 35, 0.45) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Card as bottom sheet */
.modal__card{
  width:min(520px, 100%) !important;
  max-height:55vh !important;
  height:auto !important;
  border-radius:18px 18px 0 0 !important;
  margin:0 !important;
  box-shadow:0 -18px 60px rgba(0,0,0,.25) !important;
  overflow:auto !important;
  transform:translateY(26px) !important;
}

/* Slide-up when open */
.modal.is-open .modal__card{
  transform:translateY(0) !important;
}

/* Grab handle */
.modal__grab{
  width:56px;
  height:5px;
  border-radius:999px;
  background:#d9e6fb;
  margin:10px auto 0;
}

/* Hide disclosure visually (requested) */


@media (prefers-reduced-motion: reduce){
  .modal__card{ transition:none !important; }
}


/* ===== FINAL Bottom-sheet Modal Overrides ===== */
.modal.is-open{
  display:flex !important;
  align-items:flex-end !important;
  justify-content:center !important;
}

.modal__overlay{
  background:rgba(10, 20, 35, 0.45) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal__card{
  width:100% !important;
  max-width:520px !important;
  margin:0 !important;
  border-radius:18px 18px 0 0 !important;
  box-shadow:0 -18px 60px rgba(0,0,0,.25) !important;
  max-height:55vh !important;
  overflow:auto !important;
  padding:22px 22px 18px !important;

  animation:none !important;
  transform:translateY(100%) !important;
  transition:transform .35s ease !important;
}

.modal.is-open .modal__card{
  transform:translateY(0) !important;
}

.modal__grab{
  width:56px;
  height:5px;
  border-radius:999px;
  background:#d9e6fb;
  margin:10px auto 0;
}



@media (prefers-reduced-motion: reduce){
  .modal__card{ transition:none !important; }
}


/* ===== Enhanced Bottom Sheet Animation ===== */

.modal__card {
  transform: translateY(100%) scale(0.98) !important;
  opacity: 0 !important;
  transition: transform 0.45s cubic-bezier(.22,1,.36,1), 
              opacity 0.35s ease !important;
}

/* Slide up + slight bounce */
.modal.is-open .modal__card {
  transform: translateY(0) scale(1) !important;
  opacity: 1 !important;
}

/* Smooth fade overlay */
.modal__overlay {
  opacity: 0;
  transition: opacity 0.35s ease;
}

.modal.is-open .modal__overlay {
  opacity: 1;
}

/* Optional small bounce keyframe */
@keyframes sheetBounce {
  0% { transform: translateY(40px); }
  60% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

.modal.is-open .modal__card {
  animation: sheetBounce 0.5s ease-out;
}


/* ===== iOS-style spring + drag-to-close enhancements ===== */
:root{
  --sheet-spring: cubic-bezier(.16, 1, .3, 1);
}

/* Scale background slightly when modal open (premium feel) */
html.modal-open body{
  transform: scale(0.985);
  transform-origin: top center;
  transition: transform 420ms var(--sheet-spring);
}
body{ transition: transform 420ms var(--sheet-spring); }

/* Make the card feel like a sheet */
.modal__card{
  will-change: transform;
  touch-action: none; /* required for drag */
  transition: transform 520ms var(--sheet-spring), opacity 260ms ease !important;
}

/* When dragging, JS adds .is-dragging */
.modal__card.is-dragging{
  transition: none !important;
}

/* Slight shadow increase when open */
.modal.is-open .modal__card{
  box-shadow: 0 -22px 70px rgba(0,0,0,.30) !important;
}

/* Grab handle a bit more visible */
.modal__grab{
  background:#cfe0ff !important;
}


.footer-legal{
  font-size:12px;
  color:#6b7280;
  text-align:center;
  margin-top:20px;
  line-height:1.6;
}


/* =========================
   RESPONSIVE FIX PACK (v1)
   ========================= */

/* Universal */
*{ box-sizing:border-box; }
img{ max-width:100%; height:auto; }

/* Container helper (non-breaking if not used) */
.container{ max-width:1100px; margin:0 auto; padding:0 16px; }

/* Header / nav: prevent overflow on mobile */
header, .header, .site-header{
  width:100%;
}
.nav, nav, .navbar, .header__nav{
  flex-wrap:wrap;
}
.nav a, nav a, .navbar a{
  white-space:normal;
}

/* Buttons/links tap targets */
a, button{ -webkit-tap-highlight-color: transparent; }
button{ max-width:100%; }

/* Sticky call bar: ensure number visible on small screens */
.sticky-call{
  position:fixed;
  left:12px;
  right:12px;
  bottom:12px;
  z-index:9998;
}
.sticky-call__btn{
  display:grid !important;
  grid-template-columns: 1fr auto;
  gap:10px;
  align-items:center;
  padding:12px 14px !important;
}
.sticky-call__label{
  display:block;
  font-size:12px;
  line-height:1.2;
  opacity:.9;
}
.sticky-call__number{
  display:block;
  font-size:16px;
  font-weight:800;
  line-height:1.1;
  word-break:break-word;
}
.sticky-call__cta{
  white-space:nowrap;
  padding:10px 12px;
  border-radius:12px;
}

/* Sections spacing */
section{ width:100%; }
main{ width:100%; overflow-x:hidden; }
body{ overflow-x:hidden; }

/* Modal fineprint (disclaimer) */


/* Modal bottom sheet: make sure it stays bottom on all screens */
.modal{ align-items:flex-end !important; justify-content:center !important; padding:0 !important; }
.modal__card{
  width:100% !important;
  max-width:520px !important;
  max-height:55vh !important;
  border-radius:18px 18px 0 0 !important;
  margin:0 !important;
}

/* Mobile-first improvements */
@media (max-width: 768px){
  /* prevent side padding overflow */
  .hero, .hero-section, .banner, .top, .wrap, .content, .section, .grid, .row{
    padding-left:16px !important;
    padding-right:16px !important;
  }

  /* stack common two-column layouts */
  .row, .grid, .columns, .two-col, .features, .cards{
    display:block !important;
  }

  /* headings scale */
  h1{ font-size:26px !important; line-height:1.2 !important; }
  h2{ font-size:20px !important; line-height:1.25 !important; }
  p{ font-size:14px !important; }

  /* ensure logo/menu don't push out */
  .logo, .brand, .site-logo{ max-width:180px; }
}

/* Very small devices */
@media (max-width: 420px){
  .sticky-call{ left:10px; right:10px; bottom:10px; }
  .sticky-call__number{ font-size:15px; }
  .sticky-call__cta{ font-size:13px; padding:9px 10px; }
}




/* ===== CLEAN SINGLE STICKY CTA (FINAL) ===== */

.sticky-call__btn{
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  padding:14px 16px !important;
}

.sticky-call__label,
.sticky-call__cta{
  display:none !important;
}

.sticky-call__number{
  font-size:18px !important;
  font-weight:800 !important;
  letter-spacing:0.5px;
}


/* Popup Logo Styling */
.modal__logo img{
  display:block;
  margin:0 auto;
}


/* ===== HERO CALL BUTTON ===== */
.hero-call-btn{
  display:inline-block;
  background:#0b5ed7;
  color:#fff;
  padding:14px 22px;
  font-size:18px;
  font-weight:700;
  border-radius:30px;
  text-decoration:none;
  box-shadow:0 8px 25px rgba(11,94,215,.35);
  transition:all .25s ease;
}
.hero-call-btn:hover{
  background:#084db5;
  transform:translateY(-2px);
}


/* =========================
   PREMIUM RESPONSIVE HEADER
   ========================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 9997;
  background: rgba(235, 245, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(180, 205, 235, 0.55);
}

.site-header__inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}

.brand{
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 140px;
}
.brand__text{
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color:#0A2A66;
}

.nav{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.nav__link{
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  color:#0A2A66;
  padding:10px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(180, 205, 235, 0.75);
  box-shadow: 0 10px 25px rgba(10, 42, 102, 0.10);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.nav__link:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.95);
  box-shadow: 0 14px 35px rgba(10, 42, 102, 0.14);
}

.nav__link--active{
  background: #0B5ED7;
  color:#fff;
  border-color: rgba(11, 94, 215, 0.6);
  box-shadow: 0 16px 40px rgba(11, 94, 215, 0.28);
}

@media (max-width: 560px){
  .site-header__inner{
    flex-direction: column;
    align-items: flex-start;
  }
  .nav{
    width:100%;
    justify-content:flex-start;
  }
  .nav__link{
    flex: 1 1 auto;
    text-align:center;
  }
}


/* =========================
   PREMIUM HERO SECTION
   ========================= */

.hero-section{
  position:relative;
  min-height:520px;
  background-image:url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?q=80&w=1600');
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
}

.hero-overlay{
  width:100%;
  background:linear-gradient(135deg, rgba(8,40,90,0.85), rgba(11,94,215,0.75));
  padding:60px 20px;
}

.hero-content{
  max-width:700px;
  margin:auto;
  text-align:center;
  color:#fff;
}

.hero-content h1{
  font-size:38px;
  font-weight:800;
  margin-bottom:16px;
  line-height:1.2;
}

.hero-sub{
  font-size:18px;
  margin-bottom:30px;
  opacity:0.95;
}

.hero-call-btn-large{
  display:inline-block;
  background:#ffffff;
  color:#0B5ED7;
  font-size:20px;
  font-weight:800;
  padding:16px 28px;
  border-radius:40px;
  text-decoration:none;
  box-shadow:0 15px 40px rgba(0,0,0,0.35);
  transition:all .25s ease;
}

.hero-call-btn-large:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 55px rgba(0,0,0,0.45);
}

.hero-mini-features{
  margin-top:25px;
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
  font-size:14px;
  font-weight:600;
}

.hero-mini-features span{
  background:rgba(255,255,255,0.15);
  padding:8px 14px;
  border-radius:20px;
}

@media(max-width:768px){
  .hero-section{min-height:480px;}
  .hero-content h1{font-size:28px;}
  .hero-sub{font-size:15px;}
  .hero-call-btn-large{font-size:17px; padding:14px 22px;}
}


/* =========================
   PREMIUM DISCLOSURE BLOCK
   ========================= */
.premium-disclosure{
  max-width: 900px;
  margin: 60px auto;
  padding: 40px 35px;
  background: linear-gradient(135deg, #ffffff, #f3f7ff);
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(10,42,102,0.08);
  border: 1px solid rgba(180,205,235,0.4);
}

.premium-disclosure h3{
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
  color:#0A2A66;
}

.premium-disclosure p{
  font-size: 15px;
  line-height: 1.7;
  color:#2f3e55;
  margin-bottom: 18px;
}

.premium-disclosure strong{
  color:#0B5ED7;
}

@media(max-width:768px){
  .premium-disclosure{
    padding: 28px 20px;
    margin: 40px 16px;
  }
}


/* Premium Disclosure Logo */
.disclosure-logo{
  text-align:center;
  margin-bottom:25px;
}
.disclosure-logo img{
  max-width:160px;
  height:auto;
  filter: drop-shadow(0 10px 25px rgba(10,42,102,0.15));
}


/* Ensure Header Logo Visible */
.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.brand__logo{
  height:38px;
  width:auto;
  display:block;
}


/* === Premium Mobile Modal Enhancements (appended) === */
/* Fade overlay/container in/out */
.modal{
  opacity: 0;
  transition: opacity .25s ease !important;
}
.modal.is-open{
  opacity: 1;
}
.modal.is-closing{
  opacity: 0;
}

/* Smooth close: let sheet slide down before display none */
.modal.is-closing .modal__card{
  transform: translateY(100%) !important;
}

/* Modal logo sizing (prevents oversized logo) */
.modal__logo img{
  max-width: 120px;
  width: 100%;
  height: auto;
  display:block;
  margin: 0 auto 10px;
}
@media (max-width: 600px){
  .modal__logo img{ max-width: 90px; }
}

/* Desktop safety: never show welcome modal */
@media (min-width: 769px){
  #welcomeModal{ display:none !important; }
}

