/* ============================================================
   INA INSURANCE HUB — The Crystal Fortress
   Static site core stylesheet
   ============================================================ */

:root {
  --primary-blue: #0057B8;
  --secondary-blue: #00A3E0;
  --deep-blue: #003A7A;
  --ink: #101828;
  --white: #FFFFFF;
  --dark-gray: #2D3748;
  --muted: #64748b;
  --bg-light: #F4F7FA;
  --bg-mist: #EAF2FB;
  --line: rgba(16, 24, 40, 0.08);

  --grad-brand: linear-gradient(135deg, #0057B8 0%, #00A3E0 100%);
  --grad-deep: linear-gradient(150deg, #001F44 0%, #003A7A 45%, #0057B8 100%);

  --shadow-soft: 0 10px 40px -10px rgba(0, 87, 184, 0.15);
  --shadow-hover: 0 26px 60px -14px rgba(0, 87, 184, 0.30);
  --shadow-card: 0 18px 50px -20px rgba(16, 24, 40, 0.22);

  --radius-card: 24px;
  --radius-lg: 32px;
  --radius-pill: 50px;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* -------------------- Base -------------------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--dark-gray);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}
body.lenis-lock { overflow: hidden; }

h1, h2, h3, h4, h5 { font-family: var(--font-head); color: var(--ink); margin: 0 0 .5em; }
p { margin: 0 0 1.1rem; }
a { color: var(--primary-blue); text-decoration: none; transition: color .3s var(--ease); }
img { max-width: 100%; display: block; }

::selection { background: var(--secondary-blue); color: #fff; }

.h1 { font-family: var(--font-head); font-weight: 900; font-size: clamp(2.6rem, 7vw, 5.3rem); letter-spacing: -0.03em; line-height: 1.04; }
.h2 { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.1rem, 5vw, 3.6rem); letter-spacing: -0.02em; line-height: 1.12; }
.h3 { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.35rem, 3vw, 1.9rem); line-height: 1.25; }

.eyebrow {
  font-family: var(--font-body); font-weight: 600; letter-spacing: .28em;
  text-transform: uppercase; font-size: .74rem; color: var(--secondary-blue);
  display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--grad-brand); display: inline-block; }
.eyebrow.center::after { content: ""; width: 34px; height: 2px; background: var(--grad-brand); display: inline-block; }

.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.container { max-width: 1240px; padding-inline: 1.4rem; }
.text-grad { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--muted); }
.muted { color: var(--muted); }

/* -------------------- Buttons -------------------- */
.btn-pill {
  --bg: var(--primary-blue); --fg: #fff;
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: var(--font-body); font-weight: 600; font-size: .98rem; letter-spacing: .02em;
  padding: .95rem 1.9rem; border-radius: var(--radius-pill);
  background: var(--bg); color: var(--fg); border: 2px solid transparent;
  cursor: pointer; position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background-color .4s var(--ease), color .4s var(--ease);
  box-shadow: 0 10px 26px -10px rgba(0,87,184,.5);
}
.btn-pill i { font-size: 1.05em; }
.btn-pill:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); background: var(--secondary-blue); color: #fff; }
.btn-grad { background: var(--grad-brand); color: #fff; }
.btn-grad:hover { color: #fff; filter: brightness(1.06); }
.btn-whatsapp { background: #25D366; box-shadow: 0 10px 26px -10px rgba(37,211,102,.6); }
.btn-whatsapp:hover { background: #1ebe5b; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.65); box-shadow: none; }
.btn-outline-light:hover { background: #fff; color: var(--primary-blue); border-color: #fff; }
.btn-ghost { background: transparent; color: var(--primary-blue); border-color: rgba(0,87,184,.25); box-shadow: none; }
.btn-ghost:hover { background: var(--primary-blue); color: #fff; }
.btn-lg { padding: 1.1rem 2.3rem; font-size: 1.05rem; }

/* -------------------- Header -------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: .9rem 0;
}
.site-header.scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 6px 30px -12px rgba(16,24,40,.18);
  border-bottom: 1px solid rgba(255,255,255,.6);
  padding: .55rem 0;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand img { height: 52px; width: auto; transition: height .4s var(--ease); }
.site-header.scrolled .brand img { height: 44px; }
.brand-txt { display: flex; flex-direction: column; line-height: 1; }
.brand-txt b { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: var(--ink); letter-spacing: -.01em; }
.brand-txt span { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--secondary-blue); font-weight: 600; margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--font-body); font-weight: 500; color: var(--dark-gray); font-size: .98rem;
  position: relative; padding: .3rem 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--grad-brand); transition: width .35s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--primary-blue); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: .8rem; }

.nav-toggle { display: none; background: none; border: 0; font-size: 1.5rem; color: var(--ink); cursor: pointer; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px); z-index: 1200;
  background: var(--grad-deep); color: #fff; transform: translateX(100%);
  transition: transform .5s var(--ease); padding: 6rem 2rem 2rem; display: flex; flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 1.4rem; padding: .8rem 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.mobile-menu .btn-pill { margin-top: 1.4rem; justify-content: center; }
.menu-close { position: absolute; top: 1.4rem; right: 1.6rem; background: none; border: 0; color: #fff; font-size: 1.8rem; cursor: pointer; }
.menu-backdrop { position: fixed; inset: 0; background: rgba(4,15,35,.55); z-index: 1100; opacity: 0; pointer-events: none; transition: opacity .4s ease; backdrop-filter: blur(3px); }
.menu-backdrop.open { opacity: 1; pointer-events: auto; }

/* -------------------- Hero -------------------- */
.hero {
  min-height: 100vh; position: relative; display: flex; align-items: center;
  background: var(--grad-deep); overflow: hidden; color: #fff;
  padding: 8rem 0 4rem;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .22; mix-blend-mode: luminosity; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 90% at 15% 20%, rgba(0,163,224,.35), transparent 55%), linear-gradient(180deg, rgba(0,20,50,.35), rgba(0,20,50,.85)); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; z-index: 1; }
.orb-1 { width: 420px; height: 420px; background: #00A3E0; top: -120px; right: -80px; }
.orb-2 { width: 340px; height: 340px; background: #0057B8; bottom: -140px; left: -60px; opacity: .45; }
.hero-inner { position: relative; z-index: 3; }
.hero h1 { color: #fff; }
.line-mask { display: block; overflow: hidden; }
.line-mask > span { display: block; will-change: transform; }
.hero .lead { color: rgba(255,255,255,.82); max-width: 620px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero-tagline { font-family: var(--font-head); font-weight: 600; letter-spacing: .3em; text-transform: uppercase; font-size: .78rem; color: var(--secondary-blue); }

/* floating trust card */
.hero-card {
  position: relative; z-index: 3; background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22); border-radius: var(--radius-lg);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); padding: 2rem;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.6);
}
.hero-card .hc-row { display: flex; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.hero-card .hc-row:last-child { border-bottom: 0; }
.hc-ico { width: 52px; height: 52px; min-width: 52px; border-radius: 14px; background: var(--grad-brand); display: grid; place-items: center; color: #fff; font-size: 1.2rem; }
.hc-txt b { display: block; font-family: var(--font-head); color: #fff; font-size: 1.15rem; }
.hc-txt span { color: rgba(255,255,255,.7); font-size: .9rem; }

.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 4; color: rgba(255,255,255,.7); font-size: .72rem; letter-spacing: .25em; text-transform: uppercase; text-align: center; }
.scroll-cue .mouse { width: 24px; height: 40px; border: 2px solid rgba(255,255,255,.5); border-radius: 14px; margin: 0 auto 8px; position: relative; }
.scroll-cue .mouse::after { content: ""; position: absolute; top: 7px; left: 50%; width: 4px; height: 8px; border-radius: 4px; background: #fff; transform: translateX(-50%); animation: wheel 1.6s infinite; }
@keyframes wheel { 0%{opacity:1;top:7px} 100%{opacity:0;top:18px} }

/* -------------------- Marquee -------------------- */
.marquee { background: var(--grad-brand); padding: 1.6rem 0; overflow: hidden; white-space: nowrap; }
.marquee.dark { background: var(--ink); }
.marquee-track { display: inline-flex; gap: 3rem; will-change: transform; animation: marquee 26s linear infinite; }
.marquee.reverse .marquee-track { animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-track span { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.6rem, 3.4vw, 2.6rem); letter-spacing: .02em; color: transparent; -webkit-text-stroke: 1.4px rgba(255,255,255,.55); text-transform: uppercase; display: inline-flex; align-items: center; gap: 3rem; }
.marquee-track span i { color: rgba(255,255,255,.85); -webkit-text-stroke: 0; font-size: .5em; }
.marquee-track span.solid { color: rgba(255,255,255,.95); -webkit-text-stroke: 0; }

/* -------------------- About bento -------------------- */
.bento { display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 1fr); gap: 1rem; }
.bento figure { margin: 0; border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card); position: relative; }
.bento figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.bento figure:hover img { transform: scale(1.06); }
.bento .b-tall { grid-row: span 2; }
.bento .b-badge { position: absolute; left: 16px; bottom: 16px; background: rgba(255,255,255,.9); backdrop-filter: blur(8px); border-radius: 14px; padding: .5rem .9rem; font-family: var(--font-head); font-weight: 700; font-size: .82rem; color: var(--primary-blue); display: flex; align-items: center; gap: .45rem; }
.float-stat { position: absolute; right: -12px; bottom: 30px; background: #fff; border-radius: 20px; padding: 1.1rem 1.4rem; box-shadow: var(--shadow-hover); z-index: 5; }
.float-stat b { font-family: var(--font-head); font-size: 2rem; color: var(--primary-blue); display: block; line-height: 1; }
.float-stat span { font-size: .8rem; color: var(--muted); }

/* -------------------- Cards / services -------------------- */
.card-soft {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-card);
  padding: 2rem 1.7rem; height: 100%; box-shadow: var(--shadow-soft);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  position: relative; overflow: hidden;
}
.card-soft::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad-brand); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.card-soft:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: transparent; }
.card-soft:hover::before { transform: scaleX(1); }
.svc-ico { width: 62px; height: 62px; border-radius: 18px; background: linear-gradient(135deg, rgba(0,87,184,.12), rgba(0,163,224,.14)); color: var(--primary-blue); display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 1.3rem; transition: all .5s var(--ease); }
.card-soft:hover .svc-ico { background: var(--grad-brand); color: #fff; transform: rotate(-6deg) scale(1.05); }
.svc-title { font-family: var(--font-head); font-weight: 700; font-size: 1.22rem; margin-bottom: .5rem; color: var(--ink); }
.svc-desc { color: var(--muted); font-size: .96rem; margin: 0; }
.svc-link { margin-top: 1.1rem; display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .9rem; color: var(--primary-blue); }
.svc-link i { transition: transform .3s var(--ease); }
.card-soft:hover .svc-link i { transform: translateX(5px); }

/* -------------------- Manifesto (why choose us) -------------------- */
.manifesto-item { position: relative; padding: 2.2rem 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 120px 1fr auto; gap: 1.5rem; align-items: center; transition: background .4s var(--ease); }
.manifesto-item:last-child { border-bottom: 1px solid var(--line); }
.manifesto-num { font-family: var(--font-head); font-weight: 900; font-size: clamp(2.5rem,5vw,3.6rem); color: transparent; -webkit-text-stroke: 1.5px rgba(0,87,184,.25); line-height: 1; }
.manifesto-item:hover .manifesto-num { -webkit-text-stroke: 0; color: transparent; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; }
.manifesto-body h3 { margin-bottom: .3rem; }
.manifesto-body p { margin: 0; color: var(--muted); }
.manifesto-ico { width: 58px; height: 58px; border-radius: 50%; background: var(--bg-mist); color: var(--primary-blue); display: grid; place-items: center; font-size: 1.4rem; transition: all .4s var(--ease); }
.manifesto-item:hover .manifesto-ico { background: var(--grad-brand); color: #fff; }

/* -------------------- Stats -------------------- */
.stats { background: var(--grad-deep); color: #fff; position: relative; overflow: hidden; }
.stats::before { content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: var(--secondary-blue); filter: blur(120px); opacity: .3; top: -200px; right: -100px; }
.stat-box { text-align: center; padding: 1rem; }
.stat-num { font-family: var(--font-head); font-weight: 900; font-size: clamp(3rem, 7vw, 5rem); line-height: 1; letter-spacing: -.03em; background: linear-gradient(180deg,#fff, #bfe3f7); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { text-transform: uppercase; letter-spacing: .18em; font-size: .82rem; color: rgba(255,255,255,.78); margin-top: .6rem; }

/* -------------------- Partners -------------------- */
.partner-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 1.6rem 1.2rem; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: .8rem; transition: all .5s var(--ease); box-shadow: var(--shadow-soft); }
.partner-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.partner-logo { width: 70px; height: 70px; border-radius: 16px; background: var(--bg-mist); display: grid; place-items: center; font-size: 1.8rem; color: var(--primary-blue); transition: all .5s var(--ease); }
.partner-card:hover .partner-logo { background: var(--grad-brand); color: #fff; }
.partner-name { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 1rem; }
.partner-cat { font-size: .78rem; color: var(--muted); letter-spacing: .04em; }
.partner-logo-img { height: 62px; max-width: 88%; object-fit: contain; margin: 0 auto .3rem; transition: transform .5s var(--ease); }
.partner-card:hover .partner-logo-img { transform: scale(1.06); }
.partner-card { min-height: 168px; }

/* -------------------- CTA band -------------------- */
.cta-band { background: var(--grad-brand); border-radius: var(--radius-lg); padding: clamp(2.5rem,5vw,4.5rem); color: #fff; position: relative; overflow: hidden; box-shadow: var(--shadow-hover); }
.cta-band::after { content: "\f3fa"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; right: -20px; bottom: -40px; font-size: 16rem; opacity: .1; }
.cta-band h2 { color: #fff; }

/* -------------------- Contact -------------------- */
.contact-info-card { background: var(--grad-deep); color: #fff; border-radius: var(--radius-lg); padding: 2.5rem; height: 100%; }
.contact-info-card .ci-row { display: flex; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid rgba(255,255,255,.12); align-items: flex-start; }
.contact-info-card .ci-row:last-child { border-bottom: 0; }
.ci-ico { width: 48px; height: 48px; min-width: 48px; border-radius: 14px; background: rgba(255,255,255,.12); display: grid; place-items: center; color: #fff; font-size: 1.1rem; }
.ci-row b { color: #fff; font-family: var(--font-head); display: block; font-size: 1.02rem; }
.ci-row a, .ci-row span { color: rgba(255,255,255,.82); }
.ci-row a:hover { color: #fff; }

.form-field { margin-bottom: 1.15rem; }
.form-field label { font-weight: 500; font-size: .9rem; color: var(--dark-gray); margin-bottom: .4rem; display: block; }
.form-control-x { width: 100%; padding: .95rem 1.15rem; border: 1.5px solid var(--line); border-radius: 14px; font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: var(--bg-light); transition: all .3s var(--ease); }
.form-control-x:focus { outline: none; border-color: var(--secondary-blue); background: #fff; box-shadow: 0 0 0 4px rgba(0,163,224,.14); }
textarea.form-control-x { resize: vertical; min-height: 120px; }
.map-embed { border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card); border: 0; }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }

/* -------------------- Page hero (inner pages) -------------------- */
.page-hero { background: var(--grad-deep); color: #fff; padding: 10rem 0 5rem; position: relative; overflow: hidden; text-align: center; }
.page-hero::before { content: ""; position: absolute; width: 480px; height: 480px; border-radius: 50%; background: var(--secondary-blue); filter: blur(120px); opacity: .3; top: -180px; left: -80px; }
.page-hero h1 { color: #fff; position: relative; }
.page-hero p { color: rgba(255,255,255,.82); position: relative; max-width: 640px; margin-inline: auto; }
.breadcrumb-x { position: relative; display: inline-flex; gap: .5rem; align-items: center; color: rgba(255,255,255,.7); font-size: .85rem; margin-top: 1rem; }
.breadcrumb-x a { color: rgba(255,255,255,.7); }
.breadcrumb-x a:hover { color: #fff; }

/* -------------------- Footer -------------------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding: 4.5rem 0 0; }
.site-footer h5 { color: #fff; font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 1.3rem; }
.site-footer a { color: rgba(255,255,255,.72); font-size: .95rem; display: inline-block; padding: .3rem 0; }
.site-footer a:hover { color: var(--secondary-blue); }
.footer-brand img { height: 60px; margin-bottom: 1rem; background: #fff; padding: 8px 12px; border-radius: 12px; }
.footer-social { display: flex; gap: .7rem; margin-top: 1.2rem; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: all .4s var(--ease); }
.footer-social a:hover { background: var(--grad-brand); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 3.5rem; padding: 1.6rem 0; font-size: .88rem; }
.footer-bottom a { padding: 0 .5rem; }

/* -------------------- Floating action (mobile) -------------------- */
.float-actions { position: fixed; right: 18px; bottom: 18px; z-index: 900; display: flex; flex-direction: column; gap: .7rem; }
.fab { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 1.4rem; box-shadow: 0 12px 30px -8px rgba(0,0,0,.4); transition: transform .3s var(--ease); }
.fab:hover { transform: scale(1.08); color: #fff; }
.fab-call { background: var(--primary-blue); }
.fab-wa { background: #25D366; animation: pulse 2.2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(37,211,102,.5)} 70%{box-shadow:0 0 0 16px rgba(37,211,102,0)} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0)} }

.to-top { position: fixed; left: 18px; bottom: 18px; z-index: 900; width: 46px; height: 46px; border-radius: 50%; background: var(--ink); color: #fff; border: 0; display: grid; place-items: center; cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(10px); transition: all .4s var(--ease); }
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* -------------------- Reveal animation -------------------- */
.reveal-up { opacity: 0; transform: translateY(42px); }
.reveal-ready .reveal-up { will-change: transform, opacity; }
/* fallback if JS/gsap fails: show content */
.no-gsap .reveal-up, .no-gsap .line-mask > span { opacity: 1 !important; transform: none !important; }

/* -------------------- Toast -------------------- */
.toast-x { position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 120%); background: var(--ink); color: #fff; padding: 1rem 1.4rem; border-radius: 14px; z-index: 2000; box-shadow: var(--shadow-hover); display: flex; align-items: center; gap: .7rem; transition: transform .5s var(--ease); font-size: .95rem; }
.toast-x.show { transform: translate(-50%, 0); }
.toast-x i { color: #25D366; font-size: 1.2rem; }

/* -------------------- Accordion (FAQ / service detail) -------------------- */
.acc-item { border: 1px solid var(--line); border-radius: 16px; margin-bottom: 1rem; overflow: hidden; background: #fff; }
.acc-head { width: 100%; text-align: left; background: none; border: 0; padding: 1.3rem 1.5rem; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.acc-head i { transition: transform .4s var(--ease); color: var(--primary-blue); }
.acc-item.open .acc-head i { transform: rotate(45deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.acc-body p { padding: 0 1.5rem 1.3rem; margin: 0; color: var(--muted); }

/* -------------------- Legal pages -------------------- */
.legal-body h2 { margin-top: 2.2rem; }
.legal-body ul { color: var(--muted); }

/* -------------------- Sticky Get-Quote bar -------------------- */
.quote-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 950;
  background: rgba(16,24,40,.94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,.1);
  transform: translateY(130%); transition: transform .5s var(--ease);
  box-shadow: 0 -14px 40px -18px rgba(0,0,0,.6);
}
.quote-bar.show { transform: translateY(0); }
.quote-bar .qb-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .8rem 0; }
.quote-bar .qb-text { color: #fff; display: flex; align-items: center; gap: .8rem; }
.quote-bar .qb-text .qb-ico { width: 46px; height: 46px; min-width: 46px; border-radius: 12px; background: var(--grad-brand); display: grid; place-items: center; font-size: 1.2rem; }
.quote-bar .qb-text b { font-family: var(--font-head); font-size: 1.05rem; display: block; line-height: 1.2; }
.quote-bar .qb-text span { color: rgba(255,255,255,.7); font-size: .85rem; }
.quote-bar .qb-actions { display: flex; gap: .6rem; }
.quote-bar .btn-pill { padding: .7rem 1.3rem; font-size: .9rem; }

/* -------------------- Testimonials (WhatsApp style) -------------------- */
.wa-viewport { overflow: hidden; position: relative; padding: 1rem 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.wa-track { display: flex; gap: 1.4rem; width: max-content; animation: wa-scroll 46s linear infinite; }
.wa-viewport:hover .wa-track { animation-play-state: paused; }
@keyframes wa-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.wa-card {
  width: 340px; min-width: 340px; background: #fff; border: 1px solid var(--line);
  border-radius: 20px 20px 20px 6px; padding: 1.2rem 1.3rem; box-shadow: var(--shadow-soft);
  position: relative;
}
.wa-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: #25D366; border-radius: 20px 20px 0 0; opacity: .9; }
.wa-head { display: flex; align-items: center; gap: .7rem; margin-bottom: .8rem; }
.wa-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1rem; }
.wa-name { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: .98rem; line-height: 1.1; }
.wa-name .wa-verify { color: #25D366; font-size: .8rem; margin-left: .25rem; }
.wa-meta { font-size: .76rem; color: var(--muted); }
.wa-stars { color: #f5a623; font-size: .82rem; margin-bottom: .5rem; letter-spacing: 1px; }
.wa-msg { color: var(--dark-gray); font-size: .95rem; margin: 0; line-height: 1.6; }
.wa-time { text-align: right; font-size: .72rem; color: var(--muted); margin-top: .7rem; }
.wa-time i { color: #34b7f1; margin-left: 3px; }


/* -------------------- Awards gallery + lightbox -------------------- */
.gallery-item { position: relative; border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card); cursor: pointer; aspect-ratio: 4/5; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(4,15,35,.82)); opacity: .85; transition: opacity .4s var(--ease); }
.gallery-cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.2rem; color: #fff; transform: translateY(8px); opacity: .95; transition: transform .4s var(--ease); }
.gallery-item:hover .gallery-cap { transform: translateY(0); }
.gallery-cap b { font-family: var(--font-head); font-size: .98rem; display: block; }
.gallery-cap span { font-size: .8rem; color: rgba(255,255,255,.75); }
.gallery-zoom { position: absolute; top: 14px; right: 14px; z-index: 3; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.2); backdrop-filter: blur(6px); display: grid; place-items: center; color: #fff; opacity: 0; transform: scale(.8); transition: all .4s var(--ease); }
.gallery-item:hover .gallery-zoom { opacity: 1; transform: scale(1); }

.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(4,10,25,.94); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .4s var(--ease); padding: 2rem; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 92vw; max-height: 82vh; border-radius: 16px; box-shadow: 0 40px 90px -30px rgba(0,0,0,.8); transform: scale(.94); transition: transform .4s var(--ease); }
.lightbox.open img { transform: scale(1); }
.lightbox-cap { position: absolute; bottom: 24px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.85); font-family: var(--font-head); font-size: 1rem; }
.lightbox-close, .lightbox-nav { position: absolute; background: rgba(255,255,255,.12); border: 0; color: #fff; width: 52px; height: 52px; border-radius: 50%; cursor: pointer; font-size: 1.3rem; display: grid; place-items: center; transition: background .3s var(--ease); }
.lightbox-close:hover, .lightbox-nav:hover { background: var(--primary-blue); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-nav.prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 24px; top: 50%; transform: translateY(-50%); }
@media (max-width: 767px) { .lightbox-nav { width: 44px; height: 44px; } .lightbox-nav.prev { left: 10px; } .lightbox-nav.next { right: 10px; } }

@media (max-width: 991px) {
  .nav-links, .nav-cta .btn-pill:not(.nav-call) { display: none; }
  .nav-toggle { display: inline-flex; }
  .manifesto-item { grid-template-columns: 80px 1fr; }
  .manifesto-ico { display: none; }
}
@media (max-width: 767px) {
  .bento { grid-template-rows: repeat(2, 200px); }
  .float-stat { position: static; margin-top: 1rem; display: inline-block; }
  .cta-band { text-align: center; }
  .nav-cta { display: none; }
  .manifesto-item { grid-template-columns: 60px 1fr; gap: 1rem; padding: 1.6rem 0; }
  .quote-bar .qb-text { display: none; }
  .quote-bar .qb-actions { width: 100%; }
  .quote-bar .btn-pill { flex: 1; justify-content: center; padding: .8rem .6rem; }
  .wa-card { width: 280px; min-width: 280px; }
}
@media (min-width: 992px) {
  .float-actions { display: none; }
}
/* Sticky bar handles mobile CTAs — avoid overlap with round FABs */
.quote-bar.show ~ .float-actions { display: none; }
.quote-bar.show ~ .to-top { bottom: 84px; }
