/* ================================================================
   SCIRX COMMUNICATIONS — MASTER STYLESHEET (CLEAN & RESTORED)
   ================================================================ */

:root{
  --cyan:#FCE2B5; --sky:#F5B54A; --blue:#E8941B; --indigo:#CD5300; --navy:#2B1B0E; --navy-deep:#1B120A;
  --teal:#C9A227; --coral:#E7382F; --pink:#A83246; --skyb:#F5B54A; --amber:#E8941B; --amberlight:#F19A29; --rust:#CD5300; --violet:#8B7EF2;
  --ink:#181B3A; --muted:#63698A; --paper:#F4F8FC; --card:#FFFFFF; --line:rgba(24,27,58,.08);
  --spring:cubic-bezier(.16,1,.3,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{ margin:0; font-family:'Inter',sans-serif; color:var(--ink); background:var(--paper); -webkit-font-smoothing:antialiased; overflow-x:hidden; }
h1,h2,h3,h4,h5{ font-family:'Poppins',sans-serif; font-weight:700; margin:0; line-height:1.15; }
p{ margin:0; }
a{ color:inherit; text-decoration:none; }
img,svg{ display:block; max-width:100%; }
button{ font-family:inherit; }

/* Upper Side Glowing Scroll Progress Bar */
#scrollProgressBar{
  position:fixed;
  top:0;
  left:0;
  height:4.5px;
  width:0%;
  background:linear-gradient(90deg, #FF7A00 0%, #E7382F 50%, #F5B54A 100%);
  z-index:1000000;
  box-shadow:0 0 16px rgba(255,122,0,0.95);
  transition:width .05s linear;
}





/* Base Spacings */
.wrap{ max-width:1300px; margin:0 auto; padding:0 16px; }
@media (max-width:768px){ .wrap{ padding:0 8px; } }
@media (max-width:480px){ .wrap{ padding:0 6px; } }

.eyebrow{ font-size:12.5px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--coral); }
.reveal{ opacity:0; transform:translateY(24px); transition:opacity .7s var(--spring), transform .7s var(--spring); }
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal.stagger-1.in{ transition-delay:.1s; }
.reveal.stagger-2.in{ transition-delay:.2s; }
.reveal.stagger-3.in{ transition-delay:.3s; }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1 !important; transform:none !important; } }

.section-gap{ margin-top:54px; margin-bottom:54px; }
@media (max-width:700px){ .section-gap{ margin-top:36px; margin-bottom:36px; } }

/* Gradient page background (Seamless to top) */
.gradient-bg{ background:linear-gradient(135deg,#FFF6E8 0%,#FDECC8 35%,#FBDDA0 68%,#F5C877 100%); padding:0 0 24px; }

/* Sticky Header (Always Fixed & Frosted at Top) */
header, .sticky-nav-header{ 
  position:sticky; 
  top:0; 
  z-index:99999; 
  padding:6px 0; 
  background:rgba(255,255,255,0.92); 
  backdrop-filter:blur(14px); 
  -webkit-backdrop-filter:blur(14px); 
  border-bottom:1px solid rgba(24,27,58,0.06);
  transition:all .3s var(--spring);
}
.nav-row{ 
  display:flex; 
  align-items:center; 
  justify-content:space-between; 
  gap:14px; 
  background:#fff; 
  border:1px solid rgba(24,27,58,.08); 
  border-radius:100px; 
  padding:6px 12px 6px 18px; 
  box-shadow:0 10px 30px -14px rgba(80,50,10,.25); 
  transition:box-shadow .3s var(--spring); 
}
.nav-row:hover{ box-shadow:0 14px 38px -14px rgba(80,50,10,.32); }

/* Brand Logo Typography (Auto-scaling on mobile) */
.brand-link{ display:inline-flex; align-items:center; gap:10px; text-decoration:none; flex:none; }
.brand-link img{ height:40px; width:auto; }
.brand-scirx{ font-family:'Caveat', cursive; font-weight:700; font-size:36px; line-height:0.9; letter-spacing:0.5px; }
.brand-comm{ font-family:'Plus Jakarta Sans','Inter',sans-serif; font-weight:500; font-size:17px; color:#181B3A; letter-spacing:0.01em; white-space:nowrap; }

@media (max-width:768px){
  .brand-scirx{ font-size:28px; }
  .brand-comm{ font-size:14px; }
  .brand-link img{ height:36px !important; }
}
@media (max-width:480px){
  .brand-scirx{ font-size:24px; }
  .brand-comm{ font-size:12px; }
  .brand-link img{ height:30px !important; }
  .brand-link{ gap:4px; }
  .nav-row{ padding:5px 6px 5px 10px; }
}

nav.main-nav{ display:flex; align-items:center; gap:4px; position:relative; }
nav.main-nav a{ 
  font-family:'Plus Jakarta Sans','Inter',sans-serif; 
  font-size:13.5px; 
  font-weight:500; 
  padding:8px 14px; 
  border-radius:100px; 
  color:var(--muted); 
  transition:all .2s var(--spring); 
  cursor:pointer; 
  display:inline-flex; 
  align-items:center; 
  gap:5px; 
  white-space:nowrap; 
}
nav.main-nav a:hover{ color:var(--ink); background:#F1F5F9; }
nav.main-nav a.active{ color:#0F172A; background:#E2E8F0; font-weight:600; box-shadow:0 2px 8px rgba(0,0,0,.04); }

/* Dropdown */
.nav-drop{ position:relative; }
.nav-drop::after{ content:''; position:absolute; top:100%; left:0; width:100%; height:18px; }
.nav-drop-menu{ 
  position:absolute; 
  top:calc(100% + 12px); 
  left:50%; 
  transform:translateX(-50%) translateY(-6px); 
  opacity:0; 
  pointer-events:none; 
  background:#fff; 
  border-radius:20px; 
  padding:10px; 
  min-width:250px; 
  display:flex; 
  flex-direction:column; 
  gap:4px; 
  box-shadow:0 30px 60px -28px rgba(20,30,90,.4); 
  border:1px solid rgba(24,27,58,.08); 
  transition:.25s var(--spring); 
  z-index:1001; 
}
.nav-drop:hover .nav-drop-menu{ opacity:1; pointer-events:auto; transform:translateX(-50%) translateY(0); }
.nav-drop-menu a{ 
  display:flex; 
  align-items:center; 
  gap:12px; 
  padding:10px 14px; 
  border-radius:12px; 
  font-size:13.5px; 
  font-weight:500; 
  color:var(--ink); 
  transition:all .2s ease; 
}
.nav-drop-menu a:hover{ background:#F8FAFC; color:var(--coral); transform:translateX(4px); }
.nav-drop-menu .sw{ width:8px; height:8px; border-radius:50%; flex:none; }

.nav-cta{ 
  background:linear-gradient(120deg,var(--coral),var(--amberlight)); 
  color:#fff !important; 
  padding:10px 20px; 
  border-radius:100px; 
  font-family:'Plus Jakarta Sans',sans-serif; 
  font-size:13.5px; 
  font-weight:600; 
  white-space:nowrap; 
  box-shadow:0 12px 26px -12px rgba(231,56,47,.6); 
  transition:.25s var(--spring); 
  text-decoration:none; 
}
.nav-cta:hover{ transform:translateY(-2px); box-shadow:0 14px 28px -6px rgba(231,56,47,.65); }

.burger{ 
  display:none; 
  flex-direction:column; 
  gap:5px; 
  background:#F1F5F9; 
  border:1px solid var(--line); 
  border-radius:12px; 
  cursor:pointer; 
  padding:10px 11px; 
  flex:none; 
}
.burger span{ width:22px; height:2px; background:var(--ink); border-radius:2px; }

@media (max-width:1040px){ nav.main-nav a{ padding:8px 10px; font-size:13px; } }
@media (max-width:940px){ nav.main-nav{ display:none; } .burger{ display:flex; } .nav-cta{ padding:9px 18px; font-size:13px; } }
@media (max-width:480px){ .nav-row{ padding:6px 8px 6px 12px; } .nav-cta{ display:none; } }

/* ---------- Glassmorphic Mobile Drawer ---------- */
.mobile-menu{ 
  position:fixed; 
  inset:0; 
  background:rgba(15,23,42,0.98); 
  backdrop-filter:blur(28px); 
  -webkit-backdrop-filter:blur(28px); 
  z-index:999999; 
  display:flex; 
  flex-direction:column; 
  justify-content:space-between; 
  padding:24px 20px; 
  transform:translateY(-100%); 
  transition:transform .45s cubic-bezier(.16,1,.3,1); 
  overflow-y:auto; 
}
.mobile-menu.open{ transform:translateY(0); }
.mobile-menu-header{ 
  display:flex; 
  justify-content:space-between; 
  align-items:center; 
  padding-bottom:16px; 
  border-bottom:1px solid rgba(255,255,255,.1); 
}
.mobile-close-btn{ 
  background:rgba(255,255,255,.12); 
  border:1px solid rgba(255,255,255,.18); 
  color:#fff; 
  width:42px; 
  height:42px; 
  border-radius:50%; 
  font-size:24px; 
  cursor:pointer; 
  display:flex; 
  align-items:center; 
  justify-content:center; 
  transition:.2s; 
}
.mobile-close-btn:hover{ background:rgba(231,56,47,.8); }
.mobile-links-col{ 
  display:flex; 
  flex-direction:column; 
  gap:10px; 
  margin:18px 0; 
}
.mobile-nav-item{ 
  display:flex; 
  align-items:center; 
  justify-content:space-between; 
  padding:14px 18px; 
  border-radius:16px; 
  color:rgba(255,255,255,.9); 
  font-family:'Plus Jakarta Sans',sans-serif; 
  font-size:15.5px; 
  font-weight:500; 
  text-decoration:none; 
  background:rgba(255,255,255,.05); 
  border:1px solid rgba(255,255,255,.08); 
  transition:all .25s var(--spring); 
}
.mobile-nav-item:hover, .mobile-nav-item.active{ 
  background:linear-gradient(135deg, rgba(231,56,47,.28), rgba(255,122,0,.18)); 
  border-color:var(--coral); 
  color:#fff; 
  font-weight:600; 
  transform:translateX(4px); 
}
.brand-title-wrap{ display:flex; align-items:baseline; gap:6px; line-height:1; }
.nav-pill-left{ display:flex; align-items:center; gap:10px; }
.nav-pill-icon{ font-size:16px; width:22px; text-align:center; display:inline-block; }
.mobile-sub-grid{ 
  display:grid; 
  grid-template-columns:1fr 1fr; 
  gap:8px; 
  padding:8px 0 0 10px; 
}
.mobile-sub-pill{ 
  background:rgba(255,255,255,.06); 
  border:1px solid rgba(255,255,255,.08); 
  border-radius:12px; 
  padding:10px 8px; 
  font-size:12px; 
  color:rgba(255,255,255,.8); 
  text-decoration:none; 
  display:block; 
  text-align:center; 
  font-family:'Plus Jakarta Sans',sans-serif; 
  transition:.2s; 
}
.mobile-sub-pill:hover{ 
  background:rgba(231,56,47,.4); 
  color:#fff; 
  border-color:var(--coral); 
}
.mobile-contact-bar{ 
  display:grid; 
  grid-template-columns:repeat(3, 1fr); 
  gap:10px; 
  margin-top:14px; 
}
.mobile-contact-btn{ 
  background:rgba(255,255,255,.08); 
  border:1px solid rgba(255,255,255,.14); 
  border-radius:14px; 
  padding:12px 6px; 
  text-align:center; 
  color:#fff; 
  text-decoration:none; 
  font-size:12px; 
  font-weight:600; 
  display:flex; 
  flex-direction:column; 
  align-items:center; 
  gap:5px; 
  transition:.2s; 
}
.mobile-contact-btn:hover{ background:rgba(255,255,255,.2); border-color:#fff; }

/* ---------- Hero Swiper ---------- */
.hero{ padding:16px 0 0; }
.hero-card{ 
  position:relative; 
  border-radius:32px; 
  box-shadow:0 40px 80px -40px rgba(15,25,80,.4); 
  overflow:hidden; 
  height:82vh; 
  min-height:560px; 
  max-height:720px; 
}
.swiper-track{ display:flex; height:100%; width:100%; transition:transform .75s cubic-bezier(.65,0,.35,1); }
.slide{ min-width:100%; height:100%; position:relative; display:flex; align-items:center; overflow:hidden; }
.slide-bg{ position:absolute; inset:0; z-index:0; }
.slide-bg img, .slide-bg video{ width:100%; height:100%; object-fit:cover; object-position:center; transform:scale(1.12); transition:transform 7s linear; }
.slide.is-active .slide-bg img, .slide.is-active .slide-bg video{ transform:scale(1); }
.slide-bg .overlay{ position:absolute; inset:0; }

.slide-content{ position:relative; z-index:2; padding:0 56px; max-width:1200px; width:100%; margin:0 auto; display:grid; grid-template-columns:1.2fr 1fr; gap:40px; align-items:center; }
.slide-inner{ max-width:620px; color:#fff; }
.slide-count{ font-family:'IBM Plex Mono',monospace; font-size:13px; font-weight:600; letter-spacing:.1em; color:var(--sky); margin-bottom:12px; }
.slide-badge{ display:inline-flex; align-items:center; gap:6px; background:rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.25); color:#fff; padding:6px 14px; border-radius:100px; font-size:12.5px; font-weight:600; margin-bottom:14px; backdrop-filter:blur(8px); }
.slide h1{ font-size:clamp(28px,3.8vw,48px); font-family:'Poppins',sans-serif; font-weight:800; color:#fff; letter-spacing:-.02em; line-height:1.12; }
.slide h1 em{ font-style:normal; font-weight:800; color:var(--sky); }
.slide p.sub{ margin-top:14px; font-size:15.5px; line-height:1.6; color:rgba(255,255,255,.88); max-width:520px; }
.slide-btn-row{ display:flex; gap:12px; flex-wrap:wrap; margin-top:24px; }

.btn-pill{ display:inline-flex; align-items:center; gap:8px; padding:11px 22px; border-radius:100px; font-size:13px; font-weight:700; transition:.25s var(--spring); cursor:pointer; }
.btn-pill:hover{ transform:translateY(-2px); }
.btn-coral{ background:var(--coral); color:#fff; box-shadow:0 14px 28px -14px rgba(255,107,107,.6); }
.btn-teal{ background:linear-gradient(135deg,var(--teal),#159089); color:#fff; }
.btn-outline{ border:1.5px solid rgba(255,255,255,.55); color:#fff; background:rgba(255,255,255,.08); }
.btn-outline:hover{ background:rgba(255,255,255,.18); }

.swiper-vlabel{ position:absolute; left:22px; top:50%; transform:translateY(-50%) rotate(180deg); writing-mode:vertical-rl; font-family:'Poppins',sans-serif; font-size:11px; letter-spacing:.2em; text-transform:uppercase; color:rgba(255,255,255,.55); z-index:4; }
.slide-controls{ position:absolute; bottom:28px; right:36px; display:flex; gap:10px; align-items:center; z-index:5; }
.slide-dots{ position:absolute; bottom:34px; left:56px; display:flex; gap:10px; z-index:5; }
.slide-dots button{ width:34px; height:4px; border-radius:3px; background:rgba(255,255,255,.3); cursor:pointer; padding:0; border:0; position:relative; overflow:hidden; transition:width .3s; }
.slide-dots button.active{ width:52px; }
.slide-dots button .fill{ position:absolute; top:0; left:0; height:100%; width:0; background:#fff; border-radius:3px; }
.slide-dots button.active .fill{ animation:fillBar 6s linear forwards; }
@keyframes fillBar{ from{ width:0; } to{ width:100%; } }
.slide-arrow{ width:46px; height:46px; border-radius:50%; border:1.5px solid rgba(255,255,255,.5); display:flex; align-items:center; justify-content:center; color:#fff; cursor:pointer; transition:background .2s, transform .2s; background:transparent; z-index:6; }
.slide-arrow:hover{ background:rgba(255,255,255,.15); transform:scale(1.06); }

@media (max-width:900px){ 
  .slide-content{ grid-template-columns:1fr; padding:0 24px; } 
  .slide-illust{ display:none; } 
  .hero-card{ height:560px; min-height:560px; max-height:none; border-radius:24px; } 
}
@media (max-width:560px){ 
  .hero-card{ height:520px; min-height:520px; border-radius:20px; } 
  .slide h1{ font-size:24px; } 
  .swiper-vlabel{ display:none; } 
  .slide-controls{ right:16px; bottom:16px; } 
  .slide-dots{ left:16px; bottom:16px; } 
  .slide-arrow{ width:38px; height:38px; } 
  .wrap{ padding:0 20px; }
}

/* ---------- 4 main services preview grid ---------- */
.main-services-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:32px; }
.ms-card{ border-radius:20px; overflow:hidden; transition:.3s var(--spring); cursor:pointer; background:#fff; box-shadow:0 16px 36px -22px rgba(24,27,58,.25); }
.ms-card:hover{ transform:translateY(-5px); }
.ms-card .ms-bg{ position:relative; width:100%; aspect-ratio:16/11; overflow:hidden; }
.ms-card .ms-bg img{ width:100%; height:100%; object-fit:cover; transition:transform .5s var(--spring); }
.ms-card:hover .ms-bg img{ transform:scale(1.08); }
.ms-card .ms-panel{ padding:18px 18px 20px; color:#fff; }
.ms-card.m1 .ms-panel{ background:linear-gradient(150deg,var(--blue),var(--indigo)); }
.ms-card.m2 .ms-panel{ background:linear-gradient(150deg,var(--coral),#A6281F); }
.ms-card.m3 .ms-panel{ background:linear-gradient(150deg,var(--pink),#6B1F2E); }
.ms-card.m4 .ms-panel{ background:linear-gradient(150deg,var(--teal),#8C6D1F); }
.ms-icon{ width:36px; height:36px; border-radius:10px; background:rgba(255,255,255,.22); display:flex; align-items:center; justify-content:center; margin-top:-36px; position:relative; z-index:2; box-shadow:0 8px 16px -6px rgba(0,0,0,.3); }
.ms-icon svg{ width:18px; height:18px; stroke:#fff; }
.ms-card h4{ margin-top:12px; font-size:14px; color:#fff; line-height:1.3; }
.ms-card .ms-desc{ display:block; margin-top:6px; font-size:11.5px; color:rgba(255,255,255,.78); line-height:1.4; }
.ms-card .go{ margin-top:12px; font-size:11.5px; font-weight:700; display:inline-flex; gap:5px; align-items:center; opacity:.95; color:#fff; }

/* Services wheel */
.wheel-wrap{ display:none; }
@media (min-width:900px){
  .wheel-wrap{ display:grid; grid-template-columns:1fr 90px 1fr; grid-template-rows:auto 90px auto; align-items:center; margin:44px auto 0; max-width:960px; column-gap:0; row-gap:0; }
  .main-services-grid.mobile-fallback{ display:none; }
  .wheel-card{ border-radius:20px; overflow:hidden; cursor:pointer; transition:.3s var(--spring); opacity:0; transform:translateY(18px) scale(.96); background:#fff; box-shadow:0 20px 44px -26px rgba(24,27,58,.3); }
  .wheel-wrap.reveal.in .wheel-card{ opacity:1; transform:translateY(0) scale(1); }
  .wheel-card:nth-of-type(1){ transition-delay:.05s; } .wheel-card:nth-of-type(2){ transition-delay:.15s; }
  .wheel-card:hover{ transform:translateY(-6px) scale(1.02); }
  .wheel-card .ms-bg{ position:relative; width:100%; aspect-ratio:16/9; overflow:hidden; }
  .wheel-card .ms-bg img{ width:100%; height:100%; object-fit:cover; transition:transform .5s var(--spring); }
  .wheel-card:hover .ms-bg img{ transform:scale(1.08); }
  .wheel-card .wheel-panel{ padding:16px 18px 18px; }
  .wheel-card.wc1 .wheel-panel{ background:linear-gradient(150deg,var(--blue),var(--indigo)); }
  .wheel-card.wc2 .wheel-panel{ background:linear-gradient(150deg,var(--coral),#A6281F); }
  .wheel-card.wc3 .wheel-panel{ background:linear-gradient(150deg,var(--pink),#6B1F2E); }
  .wheel-card.wc4 .wheel-panel{ background:linear-gradient(150deg,var(--teal),#8C6D1F); }
  .wheel-card.wc1{ grid-column:1; grid-row:1; } .wheel-card.wc2{ grid-column:3; grid-row:1; }
  .wheel-card.wc3{ grid-column:1; grid-row:3; } .wheel-card.wc4{ grid-column:3; grid-row:3; }
  .wheel-icon{ width:34px; height:34px; border-radius:10px; background:rgba(255,255,255,.22); display:flex; align-items:center; justify-content:center; margin-top:-34px; position:relative; z-index:2; box-shadow:0 8px 16px -6px rgba(0,0,0,.3); }
  .wheel-icon svg{ width:17px; height:17px; stroke:#fff; }
  .wheel-hub{ grid-column:2; grid-row:2; width:110px; height:110px; position:relative; }
  .wheel-ring{ position:absolute; inset:0; border-radius:50%; background:conic-gradient(var(--amber) 0deg 90deg, var(--coral) 90deg 180deg, var(--rust) 180deg 270deg, #8C6D1F 270deg 360deg); animation:wheelSpin 26s linear infinite; }
  @keyframes wheelSpin{ from{ transform:rotate(0); } to{ transform:rotate(360deg); } }
  .wheel-center{ position:absolute; inset:9px; border-radius:50%; background:#fff; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; box-shadow:0 6px 16px rgba(0,0,0,.12); }
  .wheel-center b{ font-family:'Poppins',sans-serif; font-size:18px; color:var(--ink); line-height:1; }
  .wheel-center span{ font-size:8.5px; font-weight:700; color:var(--muted); text-transform:uppercase; letter-spacing:.04em; margin-top:3px; }
  .wheel-connector{ position:relative; }
  .wheel-connector::before{ content:""; position:absolute; background:var(--line); }
  .wheel-connector.top{ grid-column:2; grid-row:1; align-self:end; height:100%; }
  .wheel-connector.top::before{ left:50%; bottom:0; width:2px; height:40%; transform:translateX(-50%); }
  .wheel-connector.bottom{ grid-column:2; grid-row:3; align-self:start; height:100%; }
  .wheel-connector.bottom::before{ left:50%; top:0; width:2px; height:40%; transform:translateX(-50%); }
  .wheel-connector.left{ grid-column:1; grid-row:2; }
  .wheel-connector.left::before{ right:0; top:50%; width:45px; height:2px; transform:translateY(-50%); }
  .wheel-connector.right{ grid-column:3; grid-row:2; }
  .wheel-connector.right::before{ left:0; top:50%; width:45px; height:2px; transform:translateY(-50%); }
}

/* ---------- Client Marquee ---------- */
.marquee-outer{ overflow:hidden; -webkit-mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent); mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent); margin-top:30px; }
.marquee-strip{ display:flex; gap:14px; width:max-content; animation:marqueescroll 42s linear infinite; }
.marquee-strip:hover{ animation-play-state:paused; }
@keyframes marqueescroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
.client-logo-strip{ display:flex; gap:20px; align-items:center; width:max-content; }
.client-logo-card{ background:#fff; border:1px solid var(--line); border-radius:16px; padding:12px 24px; display:flex; align-items:center; justify-content:center; width:160px; height:74px; box-shadow:0 6px 18px -8px rgba(24,27,58,.08); flex:none; transition:.3s var(--spring); }
.client-logo-card:hover{ transform:translateY(-3px); box-shadow:0 12px 24px -10px rgba(231,56,47,.2); border-color:var(--coral); }
.client-logo-card img{ max-width:110px; max-height:48px; width:auto; height:auto; object-fit:contain; filter:none; opacity:1; transition:.3s; }
.client-logo-card:hover img{ transform:scale(1.14); }

/* ---------- White Card Panels on Gradient ---------- */
.floater{ margin-top:52px; }
.card-panel{ background:#fff; border-radius:32px; padding:54px 56px; box-shadow:0 40px 80px -44px rgba(15,25,80,.35); }
.panel-grid{ display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:center; }
.panel-grid.rev{ direction:rtl; } .panel-grid.rev > *{ direction:ltr; }
.panel-grid h2{ font-size:clamp(24px,3vw,32px); margin-top:12px; }
.panel-grid p{ margin-top:16px; font-size:14.5px; color:var(--muted); line-height:1.65; }
.about-more{ max-height:0; overflow:hidden; transition:max-height .5s var(--spring); }
.about-stat-row{ display:flex; gap:28px; margin-top:22px; padding-top:20px; border-top:1px solid var(--line); }
.about-stat-row div{ display:flex; flex-direction:column; }
.about-stat-row b{ font-family:'Poppins',sans-serif; font-size:26px; font-weight:800; background:linear-gradient(120deg,var(--amber),var(--coral)); -webkit-background-clip:text; background-clip:text; color:transparent; line-height:1; }
.about-stat-row span{ font-size:11px; font-weight:600; color:var(--muted); text-transform:uppercase; letter-spacing:.04em; margin-top:6px; }
.about-more.open{ max-height:400px; }
.about-readmore{ margin-top:16px; background:none; border:0; cursor:pointer; padding:0; font-size:13px; font-weight:700; color:var(--coral); display:inline-flex; align-items:center; gap:6px; }
.about-readmore span{ transition:transform .3s var(--spring); display:inline-block; }
.about-readmore.open span{ transform:rotate(180deg); }

@media (max-width:860px){ 
  .panel-grid{ grid-template-columns:1fr; } 
  .panel-grid.rev{ direction:ltr; } 
  .card-panel{ padding:38px 26px; } 
}
@media (max-width:480px){ 
  .card-panel{ padding:30px 18px; border-radius:24px; } 
}

/* ---------- Value props ---------- */
.value-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:34px; }
.value-card{ text-align:center; padding:26px 18px; border-radius:18px; background:var(--paper); }
.value-icon{ width:50px; height:50px; border-radius:14px; margin:0 auto; display:flex; align-items:center; justify-content:center; }
.value-icon svg{ width:24px; height:24px; stroke:#fff; }
.value-card h5{ margin-top:16px; font-size:14.5px; }
.value-card p{ margin-top:8px; font-size:12px; color:var(--muted); line-height:1.55; }
@media (max-width:860px){ .value-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:480px){ .value-grid{ grid-template-columns:1fr; } }

/* ---------- Tabbed Nav Interface ---------- */
.svc-tabbar{ position:relative; display:flex; justify-content:center; align-items:flex-start; gap:0; margin-top:40px; padding:10px 0 0; }
.svc-tabbar::before{ content:""; position:absolute; top:34px; left:12%; right:12%; height:2px; background:repeating-linear-gradient(90deg,var(--line) 0 8px,transparent 8px 14px); z-index:0; }
.svc-tabbtn{ position:relative; z-index:1; flex:1; max-width:180px; display:flex; flex-direction:column; align-items:center; gap:10px; border:0 !important; background:transparent !important; cursor:pointer; padding:0 !important; box-shadow:none !important; outline:none; }
.svc-tabbtn .ico{ width:68px; height:68px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex:none; border:4px solid #fff; box-shadow:0 8px 20px -8px rgba(0,0,0,.15); transition:.3s var(--spring); }
.svc-tabbtn .ico svg{ width:26px; height:26px; stroke:#fff; }
.svc-tabbtn .tab-label{ font-size:12.5px; font-weight:700; color:var(--muted); text-align:center; line-height:1.3; transition:.25s; }
.svc-tabbtn:hover .ico{ transform:translateY(-4px) scale(1.06); }
.svc-tabbtn.active{ background:transparent !important; border:none !important; box-shadow:none !important; }
.svc-tabbtn.active .ico{ transform:scale(1.15) translateY(-4px); border-color:#fff; box-shadow:0 14px 28px -6px rgba(231,56,47,.35), 0 0 0 6px rgba(255,122,0,.14); }
.svc-tabbtn.active .tab-label{ color:var(--ink); font-weight:800; }
@media (max-width:700px){ .svc-tabbar{ overflow-x:auto; justify-content:flex-start; gap:22px; padding-bottom:8px; } .svc-tabbar::before{ left:34px; right:34px; } .svc-tabbtn{ flex:none; width:96px; } .svc-tabbtn .ico{ width:56px; height:56px; } .svc-tabbtn .ico svg{ width:22px; height:22px; } }
.svc-tabpanel{ display:none; margin-top:36px; }
.svc-tabpanel.active{ display:block; animation:tabFadeIn .35s ease-out; }
@keyframes tabFadeIn{ from{ opacity:0; transform:translateY(8px); } to{ opacity:1; transform:translateY(0); } }
.svc-tabpanel-grid{ display:grid; grid-template-columns:1.2fr 1fr; gap:44px; align-items:center; }
@media (max-width:860px){ .svc-tabpanel-grid{ grid-template-columns:1fr; } }
.svc-sub-list{ display:flex; flex-direction:column; gap:14px; margin-top:24px; }
.svc-sub-item{ display:flex; align-items:flex-start; gap:14px; }
.svc-sub-item .dot{ width:30px; height:30px; border-radius:10px; display:flex; align-items:center; justify-content:center; flex:none; margin-top:2px; }
.svc-sub-item .dot svg{ width:15px; height:15px; }
.svc-sub-item div b{ font-size:14.5px; color:var(--ink); display:block; }
.svc-sub-item div span{ font-size:13px; color:var(--muted); }
.svc-media{ border-radius:24px; overflow:hidden; box-shadow:0 20px 44px -20px rgba(24,27,58,.25); aspect-ratio:16/10; }
.svc-media img{ width:100%; height:100%; object-fit:cover; display:block; }

/* ---------- Dark Band ---------- */
.dark-band{ background:linear-gradient(135deg,var(--navy) 0%,var(--navy-deep) 100%); color:#fff; border-radius:32px; padding:54px 48px; margin-top:50px; margin-bottom:70px; }
.dark-grid{ display:grid; grid-template-columns:1.3fr 1fr; gap:44px; align-items:center; }
.dark-grid h2{ font-size:clamp(24px,3vw,34px); margin-top:10px; }
.dark-grid p{ margin-top:14px; font-size:15px; color:rgba(255,255,255,.8); line-height:1.65; }
@media (max-width:860px){ .dark-grid{ grid-template-columns:1fr; } }

/* ---------- Hexagonal Infographic Hub (Image Reference Match) ---------- */
.hex-hub-container {
  margin-top: 36px;
  position: relative;
  background: radial-gradient(circle at center, #F8FAFD 0%, #EEF4FA 100%);
  border-radius: 28px;
  padding: 44px 28px;
  border: 1px solid var(--line);
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.02), 0 20px 50px -25px rgba(24,27,58,0.08);
  overflow: hidden;
}
.hex-grid-layout {
  display: grid;
  grid-template-columns: 1fr 260px 1fr;
  grid-template-rows: auto auto;
  gap: 22px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
}
.hex-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px 22px 20px;
  position: relative;
  box-shadow: 0 14px 34px -12px rgba(24,27,58,0.12), 0 0 0 1px rgba(24,27,58,0.06);
  transition: all .32s var(--spring);
  cursor: default;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hex-card:hover {
  transform: translateY(-7px) scale(1.02);
  box-shadow: 0 22px 48px -14px rgba(24,27,58,0.2);
}
.hex-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  top: 0;
  left: 0;
}
.hex-card.opt-1::before { background: linear-gradient(90deg, #F59E0B, #FF7A00); }
.hex-card.opt-2::before { background: linear-gradient(90deg, #8B5CF6, #EC4899); }
.hex-card.opt-3::before { background: linear-gradient(90deg, #10B981, #059669); }
.hex-card.opt-4::before { background: linear-gradient(90deg, #2563EB, #00D2FF); }

.hex-wedge-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 4px;
  margin-bottom: 12px;
}
.hex-card.opt-1 .hex-wedge-badge { background: #FEF3C7; color: #D97706; }
.hex-card.opt-2 .hex-wedge-badge { background: #F3E8FF; color: #7C3AED; }
.hex-card.opt-3 .hex-wedge-badge { background: #D1FAE5; color: #059669; }
.hex-card.opt-4 .hex-wedge-badge { background: #DBEAFE; color: #1D4ED8; }

.hex-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 10px;
  border: 1.5px solid rgba(24,27,58,0.08);
  background: #F8FAFC;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: transform .3s var(--spring);
}
.hex-card:hover .hex-icon-circle {
  transform: scale(1.14) rotate(6deg);
}
.hex-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.hex-card p {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* Central Globe / Molecular Core */
.hex-center-core {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 230px;
  height: 230px;
  margin: 0 auto;
}
.hex-center-globe {
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #FFFFFF 0%, #F1F5F9 65%, #E2E8F0 100%);
  box-shadow: 0 16px 36px -10px rgba(24,27,58,0.22), inset 0 2px 8px rgba(255,255,255,0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  z-index: 2;
  border: 3px solid #fff;
}
.hex-orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(231,56,47,0.3);
  animation: hexOrbitSpin 32s linear infinite;
}
@keyframes hexOrbitSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

@media (max-width: 920px) {
  .hex-grid-layout {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .hex-center-core {
    display: none;
  }
}
@media (max-width: 560px) {
  .hex-grid-layout {
    grid-template-columns: 1fr;
  }
}

/* ---------- Concentric Orbital Synergy Radar (Image Reference Match) ---------- */
.radar-synergy-wrapper {
  margin-top: 36px;
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(231,56,47,0.03) 0%, rgba(248,250,253,0.95) 70%, #fff 100%);
  border-radius: 28px;
  padding: 44px 24px;
  border: 1px solid var(--line);
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.02), 0 20px 50px -25px rgba(24,27,58,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.radar-stage-container {
  position: relative;
  width: 100%;
  max-width: 960px;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto 26px;
}
/* Concentric Orbit Rings */
.radar-orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(231,56,47,0.22);
  pointer-events: none;
}
.ring-1 { width: 320px; height: 320px; }
.ring-2 { width: 540px; height: 540px; border-style: solid; border-color: rgba(24,27,58,0.06); }
.ring-3 { width: 760px; height: 760px; }

/* Center Hub Core */
.radar-center-hub {
  position: relative;
  z-index: 3;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E7382F 0%, #FF7A00 100%);
  border: 5px solid #fff;
  box-shadow: 0 16px 40px -10px rgba(231,56,47,0.5), 0 0 0 10px rgba(231,56,47,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 12px;
}
.radar-center-icon {
  font-size: 26px;
  margin-bottom: 2px;
}
.radar-center-hub b {
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.2;
}
.radar-center-hub span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: .06em;
  opacity: 0.92;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Floating Orbit Pods */
.radar-pod {
  position: absolute;
  z-index: 4;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 13px 16px;
  box-shadow: 0 12px 30px -12px rgba(24,27,58,0.14);
  display: flex;
  align-items: center;
  gap: 12px;
  width: 250px;
  transition: all .3s var(--spring);
}
.radar-pod:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: var(--coral);
  box-shadow: 0 18px 40px -12px rgba(231,56,47,0.22);
}
.radar-pod-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex: none;
  background: var(--paper);
  border: 1px solid rgba(24,27,58,0.06);
}
.radar-pod-text {
  flex: 1;
}
.radar-pod-text h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.radar-pod-text p {
  font-size: 11px;
  color: var(--muted);
  margin: 2px 0 0;
  line-height: 1.35;
}
.radar-pod-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  margin-top: 3px;
}
.status-active { color: #10B981; }
.status-verified { color: #0284C7; }
.status-synced { color: #8B5CF6; }

/* Desktop Coordinate Positions */
.pod-pos-tl { top: 25px; left: 30px; }
.pod-pos-tr { top: 25px; right: 30px; }
.pod-pos-ml { top: 215px; left: 5px; }
.pod-pos-mr { top: 215px; right: 5px; }
.pod-pos-bl { bottom: 25px; left: 30px; }
.pod-pos-br { bottom: 25px; right: 30px; }

/* Radar Bottom Unified Architecture Pill */
.radar-bottom-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid rgba(231,56,47,0.25);
  padding: 8px 22px;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  box-shadow: 0 8px 24px -10px rgba(231,56,47,0.2);
}

@media (max-width: 900px) {
  .radar-stage-container {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .radar-orbit-ring { display: none; }
  .radar-center-hub {
    grid-column: 1 / span 2;
    margin: 0 auto 12px;
  }
  .radar-pod {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100%;
  }
}
@media (max-width: 580px) {
  .radar-stage-container {
    grid-template-columns: 1fr;
  }
  .radar-center-hub {
    grid-column: 1;
  }
}

/* ---------- Infographic Section 1: Bilateral 8-Node Dendrite Tree ---------- */
.dendrite-tree-wrapper {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 220px 1fr;
  gap: 24px;
  align-items: center;
  position: relative;
}
.dendrite-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dendrite-node {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 6px 18px -6px rgba(24,27,58,0.06);
  transition: all .28s var(--spring);
}
.dendrite-node:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -8px rgba(231,56,47,0.18);
  border-color: var(--coral);
}
.dendrite-col.left .dendrite-node {
  flex-direction: row;
  justify-content: space-between;
}
.dendrite-col.right .dendrite-node {
  flex-direction: row-reverse;
  justify-content: space-between;
}
.dendrite-badge {
  color: #fff;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
}
.dendrite-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}
.dendrite-center-hub {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff 0%, #F8FAFC 70%, #E2E8F0 100%);
  border: 4px solid #fff;
  box-shadow: 0 16px 40px -12px rgba(24,27,58,0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  margin: 0 auto;
  position: relative;
}
.dendrite-center-hub::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px dashed rgba(231,56,47,0.3);
}

.bg-grad-1 { background: linear-gradient(100deg, #0284C7, #00D2FF); }
.bg-grad-2 { background: linear-gradient(100deg, #2563EB, #3B82F6); }
.bg-grad-3 { background: linear-gradient(100deg, #7C3AED, #8B5CF6); }
.bg-grad-4 { background: linear-gradient(100deg, #C026D3, #EC4899); }
.bg-grad-5 { background: linear-gradient(100deg, #059669, #10B981); }
.bg-grad-6 { background: linear-gradient(100deg, #D97706, #F59E0B); }
.bg-grad-7 { background: linear-gradient(100deg, #E7382F, #FF7A00); }
.bg-grad-8 { background: linear-gradient(100deg, #DC2626, #EF4444); }

@media (max-width: 900px) {
  .dendrite-tree-wrapper {
    grid-template-columns: 1fr;
  }
  .dendrite-center-hub {
    order: -1;
    margin-bottom: 20px;
  }
  .dendrite-col.left .dendrite-node,
  .dendrite-col.right .dendrite-node {
    flex-direction: row;
  }
}

/* ---------- Infographic Section 2: 6-Phase Garland Orbit Arc ---------- */
.garland-orbit-wrapper {
  margin-top: 36px;
  position: relative;
  text-align: center;
}
.garland-top-hub {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--line);
  box-shadow: 0 16px 36px -12px rgba(24,27,58,0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  padding: 16px;
  position: relative;
  z-index: 2;
}
.garland-nodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  position: relative;
  z-index: 1;
}
.garland-node-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 12px;
  text-align: center;
  box-shadow: 0 8px 24px -10px rgba(24,27,58,0.08);
  transition: all .28s var(--spring);
}
.garland-node-card:hover {
  transform: translateY(-5px);
  border-color: var(--coral);
  box-shadow: 0 16px 36px -12px rgba(231,56,47,0.2);
}
.garland-circle-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  box-shadow: 0 8px 20px -6px rgba(0,0,0,0.2);
}
.garland-node-card h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px;
}
.garland-node-card p {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
  margin: 0;
}

/* ---------- Modern Rocket CTA Banner (SciRx Brand Palette) ---------- */
.rocket-cta-banner{
  background: linear-gradient(100deg, #E7382F 0%, #FF7A00 52%, #F59E0B 100%);
  border-radius: 22px;
  padding: 30px 42px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 20px 50px -15px rgba(231,56,47,0.45);
  margin-top: 40px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.25);
}
.rocket-cta-banner::before{
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%);
  pointer-events: none;
}
.rocket-cta-left{
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 1;
}
.rocket-cta-icon{
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex: none;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
.rocket-cta-left h3{
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.rocket-cta-left p{
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  margin-top: 5px;
}
.rocket-cta-btns{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.rocket-btn-primary{
  background: #fff;
  color: #E7382F;
  padding: 13px 26px;
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  transition: all .25s var(--spring);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.rocket-btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
  background: #fff;
}
.rocket-btn-glass{
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.45);
  color: #fff;
  padding: 13px 22px;
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all .25s var(--spring);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.rocket-btn-glass:hover{
  background: rgba(255,255,255,0.34);
  border-color: #fff;
}
@media (max-width: 860px){
  .rocket-cta-banner{
    flex-direction: column;
    text-align: center;
    padding: 34px 22px;
    border-radius: 22px;
  }
  .rocket-cta-left{
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
  .rocket-cta-btns{
    justify-content: center;
    width: 100%;
  }
}

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float{ position:fixed; bottom:24px; right:24px; width:56px; height:56px; border-radius:50%; background:#25D366; display:flex; align-items:center; justify-content:center; box-shadow:0 12px 30px rgba(37,211,102,.45); z-index:900; transition:transform .3s var(--spring); }
.whatsapp-float:hover{ transform:scale(1.1); }
.whatsapp-float svg{ width:30px; height:30px; fill:#fff; }
.wa-pulse{ position:absolute; inset:-4px; border-radius:50%; border:2px solid #25D366; animation:waPulse 2s ease-out infinite; }
@keyframes waPulse{ 0%{ transform:scale(.95); opacity:1; } 100%{ transform:scale(1.4); opacity:0; } }
.whatsapp-label{ position:absolute; right:66px; background:#fff; color:var(--ink); padding:7px 14px; border-radius:100px; font-size:12px; font-weight:700; white-space:nowrap; box-shadow:0 8px 20px rgba(0,0,0,.15); opacity:0; pointer-events:none; transition:.25s var(--spring); transform:translateX(8px); }
.whatsapp-float:hover .whatsapp-label{ opacity:1; transform:translateX(0); }

/* ---------- Footer ---------- */
footer{ background:linear-gradient(135deg,var(--navy) 0%,var(--navy-deep) 100%); color:#fff; padding:64px 0 32px; margin-top:80px; position:relative; overflow:hidden; }
.footer-bubble{ position:absolute; border-radius:50%; background:radial-gradient(circle,rgba(255,255,255,.06),transparent 70%); pointer-events:none; }
.footer-bubble.fb-1{ width:300px; height:300px; top:-50px; left:-50px; }
.footer-bubble.fb-2{ width:400px; height:400px; bottom:-100px; right:-100px; }
.footer-bubble.fb-3{ width:200px; height:200px; top:40%; right:20%; }
.foot-grid{ display:grid; grid-template-columns:1.5fr 1fr 1fr 1.2fr; gap:40px; position:relative; z-index:1; }
.foot-desc{ margin-top:16px; font-size:13.5px; color:rgba(255,255,255,.7); line-height:1.6; }
.foot-col h6{ font-size:12px; letter-spacing:.06em; text-transform:uppercase; color:rgba(255,255,255,.45); margin-bottom:16px; font-weight:700; }
.foot-col a{ display:block; font-size:13.5px; margin-bottom:11px; color:rgba(255,255,255,.85); transition:.2s; }
.foot-col a:hover{ color:var(--sky); }
.foot-row{ margin-top:50px; padding-top:24px; border-top:1px solid rgba(255,255,255,.12); display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:12.5px; color:rgba(255,255,255,.5); }
@media (max-width:860px){ .foot-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .foot-grid{ grid-template-columns:1fr; } }