/* ═══════════════════════════════════════
   ROOT & RESET — YELLOW & BLUE SYSTEM
═══════════════════════════════════════ */
:root {
  /* Yellow & Blue base */
  --bg-base:      #fffb00;
  --bg-deep:      #ffe900;
  --bg-surface:   #fff176;
  --bg-card:      #fffde7;
  --bg-elevated:  #ffffff;
 
  /* Blue accent palette */
  --gold-ultra:   #0033cc;
  --gold-bright:  #0044ff;
  --gold-mid:     #1a5fff;
  --gold-deep:    #0055ff;
  --gold-dark:    #002299;
  --gold-glow:    rgba(0,68,255,.45);
  --gold-glow2:   rgba(0,85,255,.2);
 
  /* Blue metallic accents */
  --silver-hi:    #001a80;
  --silver-mid:   #0033bb;
  --silver-low:   #0044cc;
 
  /* Vivid accents */
  --neon-gold:    #0044ff;
  --neon-amber:   #0033dd;
  --neon-copper:  #001199;
 
  /* Text — dark navy for max contrast on yellow */
  --text-primary:   #001133;
  --text-secondary: #002266;
  --text-muted:     #003399;
  --text-accent:    var(--gold-ultra);
 
  /* Glass — blue-tinted */
  --glass-bg:        rgba(255,251,0,.75);
  --glass-border:    rgba(0,68,255,.25);
  --glass-border-hi: rgba(0,85,255,.6);
  --glass-shine:     rgba(255,255,255,.5);
 
  /* Geometry */
  --r: 16px;
  --r-lg: 24px;
  --max: 1280px;
 
  /* Fonts */
  --font-display: 'Cinzel', serif;
  --font-tech:    'Orbitron', monospace;
  --font-body:    'Rajdhani', sans-serif;
  --font-ui:      'Space Grotesk', sans-serif;
}
 
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
 
body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  overflow-x: hidden;
  cursor: none;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse 80% 50% at 20% 10%, rgba(0,68,255,.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 90%, rgba(0,34,204,.1) 0%, transparent 50%),
    radial-gradient(ellipse 40% 60% at 50% 50%, rgba(255,255,100,.4) 0%, transparent 70%);
}
 
a { text-decoration: none; color: inherit; }
img { width: 100%; display: block; }
 
/* ═══════════════════════════════════════
   PARTICLE CANVAS
═══════════════════════════════════════ */
#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .35;
}
 
/* ═══════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════ */
#cursor {
  width: 8px; height: 8px;
  background: var(--gold-ultra);
  border-radius: 50%;
  position: fixed; z-index: 9999;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: transform .15s, width .3s, height .3s;
  box-shadow: 0 0 12px var(--gold-bright), 0 0 24px rgba(0,68,255,.5);
}
#cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid rgba(0,68,255,.7);
  border-radius: 50%;
  position: fixed; z-index: 9998;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: transform .2s ease, width .3s, height .3s;
}
 
/* ═══════════════════════════════════════
   NOISE + SCANLINE OVERLAY
═══════════════════════════════════════ */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  background-size: 256px;
  pointer-events: none;
  z-index: 9990;
  opacity: .2;
  mix-blend-mode: multiply;
}
 
/* ═══════════════════════════════════════
   TECH CORNER MARKS
═══════════════════════════════════════ */
.hv-corner {
  position: absolute;
  width: 18px; height: 18px;
  pointer-events: none;
  z-index: 2;
}
.hv-corner-tl { top: 8px; left: 8px; border-top: 2px solid var(--gold-bright); border-left: 2px solid var(--gold-bright); }
.hv-corner-tr { top: 8px; right: 8px; border-top: 2px solid var(--gold-bright); border-right: 2px solid var(--gold-bright); }
.hv-corner-bl { bottom: 8px; left: 8px; border-bottom: 2px solid var(--gold-bright); border-left: 2px solid var(--gold-bright); }
.hv-corner-br { bottom: 8px; right: 8px; border-bottom: 2px solid var(--gold-bright); border-right: 2px solid var(--gold-bright); }
 
/* ═══════════════════════════════════════
   TOPBAR TICKER — BRIGHT BLUE
═══════════════════════════════════════ */
.topbar {
  position: relative;
  z-index: 901;
  background: linear-gradient(90deg,
    #0033cc 0%, #0044ff 20%, #1a5fff 40%, #0044ff 60%, #0033cc 80%, #0044ff 100%);
  background-size: 300% 100%;
  animation: topbarSlide 8s linear infinite;
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0,34,204,.4);
}
.topbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #fffb00, transparent);
  animation: topbarShine 3s ease infinite;
}
@keyframes topbarSlide {
  0%   { background-position: 0% 0%; }
  100% { background-position: 300% 0%; }
}
@keyframes topbarShine {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.ticker-wrap {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  padding: 0 44px;
  font-family: var(--font-tech);
  font-size: 10px;
  font-weight: 500;
  color: #fffde7;
  letter-spacing: .16em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ticker-item::before {
  content: '◈';
  font-size: 7px;
  color: #fffb00;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-phone {
  color: #fffb00 !important;
  animation: tickerPhonePulse 2s ease-in-out infinite;
  font-weight: 700 !important;
}
@keyframes tickerPhonePulse {
  0%,100% { text-shadow: none; }
  50%      { text-shadow: 0 0 16px #fffb00, 0 0 32px rgba(255,251,0,.9); }
}
 
/* ═══════════════════════════════════════
   NAVBAR — YELLOW BASE
═══════════════════════════════════════ */
.navbar {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255,251,0,.92);
  backdrop-filter: blur(32px) saturate(1.5);
  -webkit-backdrop-filter: blur(32px) saturate(1.5);
  border-bottom: 2px solid rgba(0,68,255,.3);
  transition: all .4s;
}
.navbar.scrolled {
  background: rgba(255,251,0,.99);
  border-bottom-color: var(--glass-border-hi);
  box-shadow: 0 8px 48px rgba(0,34,204,.2), 0 1px 0 var(--glass-border-hi);
}
.nav-inner {
  max-width: var(--max);
  margin: auto;
  padding: 0 32px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-mark {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #0033cc, #0055ff);
  border: 1px solid rgba(0,68,255,.7);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fffb00;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.logo-mark span { position: relative; z-index: 1; }
.logo-mark-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,251,0,.3), transparent 70%);
  animation: logoGlow 3s ease-in-out infinite alternate;
}
@keyframes logoGlow {
  from { opacity: .6; }
  to   { opacity: 1; }
}
.logo-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 5px;
  text-transform: uppercase;
  position: relative;
 
  /* Brilliant multi-stop chrome gradient — deep blue → electric blue → white-hot → cyan → deep blue */
  background: linear-gradient(
    90deg,
    #001166 0%,
    #0033cc 12%,
    #3388ff 24%,
    #99ccff 32%,
    #ffffff 38%,
    #cceeff 43%,
    #0055ff 52%,
    #001a99 60%,
    #0044ff 70%,
    #66aaff 78%,
    #ffffff 84%,
    #3377ff 90%,
    #001166 100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
 
  animation: logoNameShimmer 2.4s linear infinite, logoNamePulse 3s ease-in-out infinite alternate;
}
 
@keyframes logoNameShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 300% center; }
}
 
@keyframes logoNamePulse {
  0%   { letter-spacing: 5px; }
  50%  { letter-spacing: 6px; }
  100% { letter-spacing: 5px; }
}
 
/* "SS" prefix — reverse shimmer direction */
.logo-name span {
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 4px;
 
  background: linear-gradient(
    90deg,
    #aaccff 0%,
    #ffffff 18%,
    #66aaff 30%,
    #0044ff 42%,
    #ffffff 54%,
    #99ccff 66%,
    #0033cc 78%,
    #ffffff 88%,
    #aaccff 100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
 
  animation: logoNameShimmer 2.4s linear infinite reverse;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-family: var(--font-tech);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  padding: 10px 16px;
  border-radius: 8px;
  color: #002266;
  transition: .25s;
  text-transform: uppercase;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 1px;
  background: var(--gold-bright);
  transition: .3s;
  opacity: 0;
}
.nav-links a:hover {
  color: #0033cc;
  background: rgba(0,68,255,.1);
}
.nav-links a:hover::after {
  left: 16%; right: 16%;
  opacity: 1;
}
.nav-call {
  background: linear-gradient(135deg, #0033cc, #0055ff) !important;
  color: #fffb00 !important;
  font-weight: 700 !important;
  padding: 11px 22px !important;
  border-radius: 10px !important;
  border: 1px solid rgba(0,68,255,.8) !important;
  box-shadow: 0 0 20px rgba(0,68,255,.3), inset 0 1px 0 rgba(255,255,255,.15) !important;
}
.nav-call:hover {
  background: linear-gradient(135deg, #0044ff, #1a5fff) !important;
  box-shadow: 0 0 40px rgba(0,68,255,.55) !important;
  transform: translateY(-2px);
}
.nav-call::after { display: none !important; }
 
/* ═══════════════════════════════════════
   PHONE BLINK
═══════════════════════════════════════ */
.phone-blink {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  animation: phonePop 2.8s ease-in-out infinite;
}
.phone-blink::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1px solid var(--gold-bright);
  opacity: 0;
  animation: phoneRing 2.8s ease-out infinite;
  pointer-events: none;
}
.phone-blink::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1px solid var(--gold-mid);
  opacity: 0;
  animation: phoneRing 2.8s ease-out .4s infinite;
  pointer-events: none;
}
@keyframes phonePop {
  0%   { transform: scale(1); }
  10%  { transform: scale(1.05); box-shadow: 0 0 30px rgba(0,68,255,.6); }
  18%  { transform: scale(.98); }
  26%  { transform: scale(1.03); }
  38%  { transform: scale(1); }
  100% { transform: scale(1); }
}
@keyframes phoneRing {
  0%   { inset: -2px; opacity: .8; }
  80%  { inset: -16px; opacity: 0; }
  100% { inset: -16px; opacity: 0; }
}
.phone-blink .ph-icon {
  display: inline-flex;
  animation: phoneWiggle 2.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes phoneWiggle {
  0%   { transform: rotate(0deg); }
  8%   { transform: rotate(-18deg) scale(1.2); }
  16%  { transform: rotate(14deg) scale(1.1); }
  24%  { transform: rotate(-8deg); }
  32%  { transform: rotate(6deg); }
  40%  { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}
.phone-blink .ph-num { letter-spacing: .06em; font-weight: 700; }
 
.hamburger {
  display: none;
  background: none; border: 1px solid rgba(0,68,255,.4);
  color: #0033cc;
  font-size: 20px;
  cursor: pointer;
  width: 44px; height: 44px;
  border-radius: 10px;
  align-items: center; justify-content: center;
  backdrop-filter: blur(12px);
}
@media(max-width:860px) {
  .hamburger { display: flex; }
  .nav-links {
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: rgba(255,251,0,.99);
    backdrop-filter: blur(32px);
    flex-direction: column;
    padding: 20px 28px 28px;
    border-bottom: 2px solid rgba(0,68,255,.3);
    display: none;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 14px 16px; }
}
 
/* ═══════════════════════════════════════
   HERO — YELLOW BACKGROUND
═══════════════════════════════════════ */
.hero {
  min-height: 94vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  max-width: var(--max);
  margin: auto;
  padding: 80px 32px 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
 
.hero-bg-grid {
  position: absolute;
  inset: -100px;
  background-image:
    linear-gradient(rgba(0,68,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,68,255,.08) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
  pointer-events: none;
  animation: gridDrift 20s ease-in-out infinite alternate;
}
@keyframes gridDrift {
  from { transform: perspective(600px) rotateX(2deg) translateY(0); }
  to   { transform: perspective(600px) rotateX(4deg) translateY(-20px); }
}
 
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite alternate;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  right: -100px; top: -100px;
  background: radial-gradient(circle, rgba(0,68,255,.18), transparent 70%);
  animation-duration: 10s;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  left: -50px; bottom: 50px;
  background: radial-gradient(circle, rgba(0,34,204,.12), transparent 70%);
  animation-duration: 7s;
  animation-delay: -3s;
}
.hero-orb-3 {
  width: 200px; height: 200px;
  right: 40%; top: 60%;
  background: radial-gradient(circle, rgba(0,85,255,.08), transparent 70%);
  animation-duration: 12s;
  animation-delay: -6s;
}
@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, -40px) scale(1.1); }
}
 
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-tech);
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #0033cc;
  font-weight: 500;
  margin-bottom: 28px;
  padding: 10px 22px;
  border: 1px solid rgba(0,68,255,.3);
  border-radius: 100px;
  background: rgba(0,68,255,.08);
  backdrop-filter: blur(12px);
  animation: fadeUp .8s ease both;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #0033cc;
  box-shadow: 0 0 8px #0044ff;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,68,255,.7); }
  50%      { box-shadow: 0 0 0 8px rgba(0,68,255,0); }
}
 
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(50px, 5.5vw, 88px);
  font-weight: 600;
  line-height: 1.0;
  margin-bottom: 32px;
  background: linear-gradient(
    160deg,
    #001166 0%,
    #0033cc 30%,
    #0055ff 55%,
    #001a80 80%,
    #0033cc 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeUp .9s ease .1s both, metalShimmer 6s linear infinite;
}
@keyframes metalShimmer {
  to { background-position: 200% center; }
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #001a99 0%, #0033cc 60%, #0055ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(0,68,255,.3));
}
.hero-left { margin-top: 0; }
 
.hero-desc {
  color: #002266;
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.85;
  max-width: 100%;
  margin-bottom: 16px;
  animation: fadeUp 1s ease .2s both;
}
.hero-desc + .hero-desc { animation-delay: .28s; }
 
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
  animation: fadeUp 1s ease .35s both;
}
 
.btn {
  padding: 16px 30px;
  border-radius: 12px;
  font-family: var(--font-tech);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .12em;
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transition: .5s;
}
.btn:hover::before { left: 100%; }
 
/* Blue button with yellow text */
.btn-gold {
  background: linear-gradient(135deg, #0033cc 0%, #0055ff 50%, #0033cc 100%);
  background-size: 200% auto;
  color: #fffb00;
  border: 1px solid rgba(0,68,255,.8);
  box-shadow: 0 4px 24px rgba(0,68,255,.35), inset 0 1px 0 rgba(255,255,255,.15);
}
.btn-gold:hover {
  background-position: right center;
  box-shadow: 0 8px 48px rgba(0,68,255,.6), 0 0 80px rgba(0,68,255,.25), inset 0 1px 0 rgba(255,255,255,.2);
  transform: translateY(-3px);
}
/* Yellow button with blue text */
.btn-outline {
  border: 2px solid rgba(0,68,255,.5);
  color: #0033cc;
  background: rgba(0,68,255,.08);
  backdrop-filter: blur(12px);
}
.btn-outline:hover {
  border-color: rgba(0,68,255,.8);
  background: rgba(0,68,255,.15);
  box-shadow: 0 0 32px rgba(0,68,255,.3);
  transform: translateY(-3px);
}
.btn svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
 
/* HERO VISUALS */
.hero-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 340px 200px;
  gap: 20px;
  animation: fadeUp 1s ease .15s both;
  position: relative;
}
.hv-main {
  grid-column: 1 / -1;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0,68,255,.3);
  position: relative;
  box-shadow: 0 0 60px rgba(0,68,255,.15), inset 0 1px 0 rgba(255,255,255,.05);
  width: 100%;
  height: 340px;
  margin-top: 0;
}
.hv-scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fffb00, transparent);
  opacity: .6;
  top: -2px;
  animation: scanDown 4s linear infinite;
}
@keyframes scanDown {
  from { top: -2px; opacity: .6; }
  to   { top: calc(100% + 2px); opacity: .1; }
}
.hv-sub {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,68,255,.25);
  position: relative;
  box-shadow: 0 0 30px rgba(0,68,255,.1);
}
.hv-sub-2 {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,68,255,.25);
  background: linear-gradient(135deg, #fffb00, #fff176);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.hv-sub-2::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0,68,255,.15), transparent 70%);
  animation: logoGlow 3s ease-in-out infinite alternate;
}
.hv-year-inner { position: relative; z-index: 1; text-align: center; }
.hv-year-num {
  font-family: var(--font-tech);
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, #0033cc, #0055ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.hv-year-label {
  font-family: var(--font-tech);
  font-size: 9px;
  letter-spacing: .25em;
  color: #002266;
  text-transform: uppercase;
  margin-top: 4px;
}
.hv-year-line {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, #0044ff, transparent);
  margin: 8px auto 0;
}
.hv-main img, .hv-sub img {
  height: 100%;
  object-fit: container;
  transition: transform .8s ease;
  filter: brightness(.75) contrast(1.1) saturate(.85);
  width: 100%;
}
.hv-main:hover img, .hv-sub:hover img { transform: scale(1.04); }
 
.hv-badge, .hv-badge-2 {
  position: absolute;
  background: rgba(255,251,0,.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0,68,255,.5);
  padding: 8px 20px;
  border-radius: 100px;
  font-family: var(--font-tech);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
  color: #0033cc;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  white-space: nowrap;
}
.hv-badge  { top: 10px; left: 12px; }
.hv-badge-2 { bottom: 10px; right: 12px; }
 
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
/* ═══════════════════════════════════════
   STATS STRIP — BRIGHT BLUE
═══════════════════════════════════════ */
.stats-strip {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #0033cc, #0055ff);
  border-top: 1px solid rgba(0,34,204,.4);
  border-bottom: 1px solid rgba(0,34,204,.4);
}
.stats-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,251,0,.08), transparent 70%);
  pointer-events: none;
}
.stats-inner {
  max-width: var(--max);
  margin: auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 40px 20px;
  border-right: 1px solid rgba(255,255,255,.15);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: .3s;
}
.stat:last-child { border-right: none; }
.stat:hover { background: rgba(255,251,0,.08); }
.stat-bar {
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #fffb00, transparent);
  transition: width .5s ease;
}
.stat:hover .stat-bar { width: 80%; }
.stat-num {
  font-family: var(--font-tech);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  color: #fffb00;
}
.stat-label {
  font-family: var(--font-tech);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}
 
/* ═══════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════ */
.section {
  max-width: var(--max);
  margin: auto;
  padding: 100px 32px;
  position: relative;
  z-index: 1;
}
.section-label {
  font-family: var(--font-tech);
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #0033cc;
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::before {
  content: '';
  width: 32px; height: 1px;
  background: linear-gradient(90deg, transparent, #0044ff);
}
.section-label::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: linear-gradient(90deg, #0044ff, transparent);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 24px;
  background: linear-gradient(160deg, #001166 0%, #002299 40%, #001a80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, #0033cc 0%, #0055ff 60%, #1a5fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-body {
  font-family: var(--font-ui);
  color: #002266;
  font-size: 15px;
  line-height: 1.85;
  max-width: 680px;
}
 
/* ═══════════════════════════════════════
   ABOUT — YELLOW CARDS
═══════════════════════════════════════ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}
.body-img-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px 80px;
  position: relative; z-index: 1;
  margin-top: -80px;
}
.about-card {
  background: rgba(255,251,0,.6);
  border: 1px solid rgba(0,68,255,.25);
  border-radius: var(--r-lg);
  padding: 44px;
  position: relative;
  overflow: hidden;
  transition: .4s;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 32px rgba(0,34,204,.1);
}
.about-card-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 100% 0%, rgba(0,68,255,.1), transparent 60%);
  pointer-events: none;
  transition: .4s;
}
.about-card:hover {
  border-color: var(--glass-border-hi);
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(0,34,204,.18), 0 0 40px rgba(0,68,255,.12);
}
.about-card:hover .about-card-glow {
  background: radial-gradient(ellipse at 100% 0%, rgba(0,68,255,.18), transparent 60%);
}
.about-card-num {
  font-family: var(--font-tech);
  font-size: 72px;
  font-weight: 900;
  color: rgba(0,68,255,.07);
  line-height: 1;
  position: absolute;
  top: 16px; right: 24px;
}
.about-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #0033cc;
  margin-bottom: 20px;
  line-height: 1.4;
}
.about-card p {
  font-family: var(--font-ui);
  color: #002266;
  line-height: 1.85;
  font-size: 14px;
  margin-bottom: 12px;
}
.image-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0,68,255,.25);
  position: relative;
  transition: .4s;
  background-color: #001133;
}
.image-card:hover {
  border-color: var(--glass-border-hi);
  box-shadow: 0 24px 60px rgba(0,0,0,.4), 0 0 30px rgba(0,68,255,.1);
}
.image-card-inner {
  position: relative;
  overflow: hidden;
}
.image-card-inner img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.image-card img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(.8) saturate(.8) contrast(1.1);
  transition: .6s;
}
.image-card:hover img { filter: brightness(.9) saturate(.9) contrast(1.05); }
.image-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,17,51,.4), transparent 50%);
  pointer-events: none;
}
.image-card-corner {
  position: absolute;
  width: 16px; height: 16px;
  z-index: 2;
}
.image-card-corner-tl { top: 8px; left: 8px; border-top: 2px solid #0044ff; border-left: 2px solid #0044ff; }
.image-card-corner-br { bottom: 8px; right: 8px; border-bottom: 2px solid #0044ff; border-right: 2px solid #0044ff; }
 
/* ═══════════════════════════════════════
   PROCESS — BLUE SECTION
═══════════════════════════════════════ */
.process-section {
  background: linear-gradient(135deg, #0033cc, #0044ff);
  border-top: 1px solid rgba(0,34,204,.3);
  border-bottom: 1px solid rgba(0,34,204,.3);
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.process-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(255,251,0,.08), transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(255,251,0,.06), transparent 50%);
  pointer-events: none;
}
.process-inner {
  max-width: var(--max);
  margin: auto;
  padding: 0 32px;
}
 
/* Override section-label and section-title for blue background */
.process-section .section-label {
  color: #fffb00;
}
.process-section .section-label::before,
.process-section .section-label::after {
  background: linear-gradient(90deg, transparent, #fffb00);
}
.process-section .section-label::after {
  background: linear-gradient(90deg, #fffb00, transparent);
}
.process-section .section-title {
  background: linear-gradient(160deg, #fffde7 0%, #fffb00 50%, #fffde7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.process-section .section-title em {
  background: linear-gradient(135deg, #fffb00 0%, #fff176 60%, #fffb00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
 
.process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}
.process-img {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,251,0,.3);
  height: 790px;
  position: relative;
  box-shadow: 0 0 60px rgba(0,17,102,.4);
}
.process-img img {
  width: 100%; height: 100%;
  object-fit: fill;
  filter: brightness(.5) saturate(.7);
}
.process-img-scan {
  position: absolute; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,251,0,.5), transparent);
  animation: scanDown 6s linear infinite;
  pointer-events: none;
}
.process-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,10,51,.85) 0%, rgba(0,10,51,.2) 60%, transparent 100%);
}
.process-img-text {
  position: absolute;
  bottom: 30px; left: 30px; right: 30px;
}
.process-img-text h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: #fffb00;
  margin-bottom: 8px;
}
.process-img-text p {
  font-family: var(--font-ui);
  color: rgba(255,251,0,.7);
  font-size: 13px;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: flex;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: .3s;
  cursor: default;
  position: relative;
}
.process-step:last-child { border-bottom: none; }
.process-step::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #fffb00, transparent);
  opacity: 0;
  transform: scaleY(0);
  transition: .3s;
}
.process-step:hover { padding-left: 16px; background: rgba(255,251,0,.08); border-radius: 10px; }
.process-step:hover::before { opacity: .7; transform: scaleY(1); }
.step-num {
  font-family: var(--font-tech);
  font-size: 11px;
  font-weight: 700;
  color: #fffb00;
  width: 36px;
  flex-shrink: 0;
  padding-top: 2px;
  letter-spacing: .08em;
}
.step-content h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: #fffde7;
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.step-content p { font-family: var(--font-ui); color: rgba(255,253,231,.75); font-size: 13px; line-height: 1.75; }
 
/* ═══════════════════════════════════════
   BUY GRID — YELLOW CARDS
═══════════════════════════════════════ */
.buy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.buy-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255,251,0,.3);
  background: rgba(255,251,0,.15);
  backdrop-filter: blur(20px);
  transition: .4s;
  position: relative;
  box-shadow: 0 4px 24px rgba(0,17,102,.2);
}
.buy-card:hover {
  border-color: rgba(255,251,0,.6);
  transform: translateY(-8px);
  box-shadow: 0 48px 100px rgba(0,17,102,.3), 0 0 40px rgba(255,251,0,.15);
}
.buy-card-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.buy-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.55) saturate(.7) contrast(1.1);
  transition: transform .8s ease, filter .4s;
}
.buy-card:hover .buy-card-img img {
  transform: scale(1.08);
  filter: brightness(.65) saturate(.8) contrast(1.1);
}
.buy-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, #001a66);
}
.buy-card-body {
  padding: 28px 32px 36px;
}
.buy-card-body h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: #fffb00;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.buy-card-body h3::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,251,0,.5), transparent);
}
.buy-card-body p {
  font-family: var(--font-ui);
  color: rgba(255,253,231,.8);
  font-size: 13px;
  line-height: 1.85;
  margin-bottom: 12px;
}
 
/* ═══════════════════════════════════════
   FEATURES — YELLOW SECTION
═══════════════════════════════════════ */
.features-section {
  background: rgba(255,251,0,.5);
  border-top: 2px solid rgba(0,68,255,.2);
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.features-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,68,255,.08), transparent 60%);
  pointer-events: none;
}
.features-inner {
  max-width: var(--max);
  margin: auto;
  padding: 0 32px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.feature-card {
  padding: 36px 30px;
  border-radius: 20px;
  border: 1px solid rgba(0,68,255,.2);
  background: rgba(255,253,200,.85);
  backdrop-filter: blur(20px);
  transition: .4s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,34,204,.08);
}
.feature-card-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(0,68,255,.1), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: .4s;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, #0044ff, transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .4s ease;
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-card:hover {
  border-color: var(--glass-border-hi);
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(0,34,204,.15), 0 0 40px rgba(0,68,255,.12);
}
.feature-card:hover .feature-card-glow { opacity: 1; }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(0,68,255,.1);
  border: 1px solid rgba(0,68,255,.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  transition: .3s;
}
.feature-card:hover .feature-icon {
  background: rgba(0,68,255,.18);
  border-color: rgba(0,68,255,.5);
  box-shadow: 0 0 20px rgba(0,68,255,.25);
}
.feature-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: #002266;
  margin-bottom: 12px;
}
.feature-card p {
  font-family: var(--font-ui);
  color: #003399;
  font-size: 13px;
  line-height: 1.85;
}
 
/* ═══════════════════════════════════════
   EMI SECTION
═══════════════════════════════════════ */
.emi-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.emi-img {
  border-radius: 20px;
  overflow: hidden;
  height: auto;
  border: 1px solid rgba(0,68,255,.3);
  position: relative;
  box-shadow: 0 0 60px rgba(0,34,204,.2);
  object-fit: fill;
}
.emi-img img {
  width: 100%; height: auto;
  object-fit: contain;
  filter: brightness(.55) saturate(.7);
}
.emi-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,51,204,.2), transparent);
  pointer-events: none;
}
.emi-content p {
  font-family: var(--font-ui);
  color: #002266;
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 18px;
}
 
/* ═══════════════════════════════════════
   GALLERY
═══════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 240px;
  gap: 16px;
  margin-top: 56px;
}
.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,68,255,.2);
  position: relative;
  cursor: pointer;
}
.gallery-item:first-child { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: fill;
  filter: brightness(.55) saturate(.65) contrast(1.1);
  transition: all .7s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(.7) saturate(.85) contrast(1.05);
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,51,204,.25), transparent 50%);
  opacity: 0;
  transition: .4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid transparent;
  border-radius: 18px;
  transition: .4s;
}
.gallery-item:hover::after { border-color: var(--glass-border-hi); }
 
/* ═══════════════════════════════════════
   CONTACT — YELLOW SECTION
═══════════════════════════════════════ */
.contact-section {
  background: rgba(255,251,0,.55);
  border-top: 2px solid rgba(0,68,255,.2);
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.contact-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(0,68,255,.08), transparent 60%);
  pointer-events: none;
}
.contact-inner {
  max-width: var(--max);
  margin: auto;
  padding: 0 32px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.contact-card {
  background: rgba(255,253,200,.9);
  border: 1px solid rgba(0,68,255,.2);
  border-radius: var(--r-lg);
  padding: 48px;
  transition: .4s;
  backdrop-filter: blur(24px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,34,204,.1);
}
.contact-card-glow {
  position: absolute; inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 0% 0%, rgba(0,68,255,.1), transparent 60%);
  opacity: 0;
  transition: .4s;
}
.contact-card:hover { border-color: var(--glass-border-hi); }
.contact-card:hover .contact-card-glow { opacity: 1; }
.notice-glow { background: radial-gradient(ellipse at 100% 100%, rgba(0,34,204,.08), transparent 60%); }
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: #0033cc;
  margin-bottom: 28px;
}
.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0,68,255,.12);
}
.contact-info-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.ci-icon {
  width: 40px; height: 40px;
  background: rgba(0,68,255,.1);
  border: 1px solid rgba(0,68,255,.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.warn-icon {
  background: rgba(0,34,204,.08);
  border-color: rgba(0,34,204,.25);
}
.ci-text {
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1.7;
  color: #002266;
}
.ci-text strong {
  display: block;
  font-family: var(--font-tech);
  color: #0033bb;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.notice-card { border-color: rgba(0,34,204,.3); }
.notice-card h3 { color: #0033cc; }
.notice-text {
  font-family: var(--font-ui);
  color: #002266;
  font-size: 13px;
  line-height: 2;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-top: 1px solid rgba(0,68,255,.15);
  padding-top: 20px;
}
 
/* ═══════════════════════════════════════
   FOOTER — BLUE
═══════════════════════════════════════ */
footer {
  background: linear-gradient(135deg, #0033cc, #0044ff);
  border-top: 1px solid rgba(0,34,204,.4);
  position: relative;
  overflow: hidden;
}
.footer-scan {
  position: absolute;
  top: 0; left: -100%; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #fffb00, transparent);
  animation: footerScan 4s ease-in-out infinite;
}
@keyframes footerScan {
  from { left: -100%; }
  to   { left: 100%; }
}
.footer-inner {
  max-width: var(--max);
  margin: auto;
  padding: 40px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copy {
  font-family: var(--font-ui);
  color: rgba(255,253,231,.8);
  font-size: 13px;
  max-width: 600px;
  line-height: 1.7;
}
/* Footer logo-mark on blue bg */
footer .logo-mark {
  background: linear-gradient(135deg, #fffb00, #fff176);
  border-color: rgba(255,251,0,.7);
  color: #001a80;
}
 
/* ═══════════════════════════════════════
   REVEAL ANIMATION
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
 
/* ═══════════════════════════════════════
   BLUE SHIMMER UTILITY (stats)
═══════════════════════════════════════ */
.shimmer {
  background: linear-gradient(
    90deg,
    #fffb00 0%,
    #fffde7 30%,
    #fffb00 50%,
    #fffde7 70%,
    #fffb00 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  to { background-position: 200% center; }
}
 
/* ═══════════════════════════════════════
   STICKY FLOATING PHONE WIDGET — BLUE
═══════════════════════════════════════ */
#sticky-phone {
  position: fixed;
  right: 28px;
  bottom: 36px;
  z-index: 9500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  pointer-events: none;
}
.sp-pill {
  pointer-events: all;
  display: flex;
  align-items: center;
  gap: 0;
  background: linear-gradient(135deg, #0033cc, #0055ff, #0033cc);
  background-size: 200% 200%;
  animation: spGradient 3s ease infinite, spEntrance .6s cubic-bezier(.34,1.56,.64,1) both;
  border-radius: 100px;
  border: 1px solid rgba(255,251,0,.5);
  box-shadow:
    0 8px 40px rgba(0,17,102,.4),
    0 0 40px rgba(0,68,255,.3),
    inset 0 1px 0 rgba(255,255,255,.15);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: #fffb00;
  backdrop-filter: blur(20px);
}
@keyframes spGradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes spEntrance {
  from { opacity: 0; transform: scale(.5) translateY(40px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.sp-pill::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,251,0,.15), transparent);
  animation: spSheen 2.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes spSheen {
  0%   { left: -100%; }
  40%  { left: 130%; }
  100% { left: 130%; }
}
.sp-icon-wrap {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.sp-icon {
  font-size: 20px;
  animation: spRing 2.2s ease-in-out infinite;
  display: block;
  transform-origin: top right;
}
@keyframes spRing {
  0%,100% { transform: rotate(0deg) scale(1); }
  10%      { transform: rotate(-20deg) scale(1.2); }
  20%      { transform: rotate(16deg) scale(1.15); }
  30%      { transform: rotate(-10deg) scale(1.1); }
  40%      { transform: rotate(8deg) scale(1.05); }
  50%      { transform: rotate(0deg) scale(1); }
}
.sp-divider {
  width: 1px; height: 28px;
  background: rgba(255,251,0,.25);
  flex-shrink: 0;
}
.sp-number-wrap {
  padding: 0 20px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.sp-label {
  font-family: var(--font-tech);
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,253,200,.8);
  font-weight: 600;
  line-height: 1;
}
.sp-num {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}
.sp-code {
  font-family: var(--font-tech);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,253,180,.8);
  letter-spacing: .04em;
}
.sp-sep { font-size: 12px; color: rgba(255,251,0,.5); margin: 0 2px; }
.sp-main {
  font-family: var(--font-tech);
  font-size: 20px;
  font-weight: 700;
  color: #fffb00;
  letter-spacing: .08em;
  animation: spNumBlink 2.2s ease-in-out infinite;
}
@keyframes spNumBlink {
  0%,100% { text-shadow: none; }
  35%      { text-shadow: 0 0 16px #fffb00, 0 0 32px rgba(255,251,0,.7); }
  50%      { text-shadow: 0 0 6px rgba(255,251,0,.4); }
}
.sp-rings {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  pointer-events: none;
}
.sp-rings::before, .sp-rings::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  border: 1px solid rgba(255,251,0,.5);
  animation: spRingPulse 2.2s ease-out infinite;
}
.sp-rings::after {
  animation-delay: .55s;
  border-color: rgba(0,68,255,.5);
}
@keyframes spRingPulse {
  0%   { inset: 0px; opacity: .7; }
  100% { inset: -14px; opacity: 0; }
}
.sp-tag {
  background: rgba(255,251,0,.95);
  border: 1px solid rgba(0,68,255,.4);
  color: #0033cc;
  font-family: var(--font-tech);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 10px;
  box-shadow: 0 4px 20px rgba(0,17,102,.2), 0 0 16px rgba(0,68,255,.2);
  animation: spTagBob 2s ease-in-out infinite;
  pointer-events: none;
  backdrop-filter: blur(12px);
}
@keyframes spTagBob {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}
 /* ═══════════════════════════════════════
   SEO SECTION — GOLD RESALE IN CHENNAI
═══════════════════════════════════════ */
.seo-section {
  background: linear-gradient(135deg, #0033cc 0%, #0044ff 50%, #0033cc 100%);
  border-top: 2px solid rgba(255,251,0,.2);
  border-bottom: 2px solid rgba(255,251,0,.2);
  position: relative;
  overflow: hidden;
}
.seo-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(255,251,0,.07), transparent 50%),
    radial-gradient(ellipse at 90% 50%, rgba(255,251,0,.05), transparent 50%);
  pointer-events: none;
}

.seo-section .section-label { color: #fffb00; }
.seo-section .section-label::before { background: linear-gradient(90deg, transparent, #fffb00); }
.seo-section .section-label::after  { background: linear-gradient(90deg, #fffb00, transparent); }

.seo-section .section-title {
  background: linear-gradient(160deg, #fffde7 0%, #fffb00 50%, #fffde7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.seo-section .section-title em {
  background: linear-gradient(135deg, #fffb00 0%, #fff176 60%, #fffb00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.seo-inner {
  max-width: 860px;
}

.seo-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}

.seo-body p {
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.95;
  color: rgba(255,253,231,.88);
  border-left: 3px solid rgba(255,251,0,.35);
  padding-left: 20px;
  transition: border-color .3s;
}
.seo-body p:hover {
  border-left-color: #fffb00;
  color: #fffde7;
}

.seo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}
.seo-tag {
  font-family: var(--font-tech);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #0033cc;
  background: rgba(255,251,0,.92);
  border: 1px solid rgba(255,251,0,.6);
  padding: 8px 18px;
  border-radius: 100px;
  transition: .3s;
  cursor: default;
}
.seo-tag:hover {
  background: #fffb00;
  box-shadow: 0 0 16px rgba(255,251,0,.4);
  transform: translateY(-2px);
}

@media(max-width:700px) {
  .seo-tags { gap: 8px; }
  .seo-tag  { font-size: 8px; padding: 7px 14px; }
  .seo-body p { font-size: 14px; }
}
/* ═══════════════════════════════════════
   RESPONSIVE — FULL CONSOLIDATED
═══════════════════════════════════════ */

/* Disable custom cursor on touch devices */
@media (hover: none) {
  #cursor, #cursor-ring { display: none; }
  body { cursor: auto; }
}

/* ── 1100px — Tablet landscape ── */
@media(max-width:1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 60px 28px 50px; width: 100%; }
  .hero-visuals { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 190px; gap: 16px; margin-top: 40px; }
  .hv-main { height: 260px; }
  .about-layout { grid-template-columns: 1fr; }
  .process-layout { grid-template-columns: 1fr; gap: 48px; }
  .emi-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .buy-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .gallery-item:first-child { grid-row: span 1; }
  .body-img-layout { grid-template-columns: 1fr; }
  .gjb-intro { grid-template-columns: 1fr; gap: 32px; }
  .gjb-cards { grid-template-columns: repeat(3, 1fr); }
  .osb-layout { grid-template-columns: 1fr; gap: 40px; }
  .wcg-grid { grid-template-columns: repeat(3, 1fr); }
  .process-img { height: 400px; }
  .process-inner { padding: 0 28px; }
  .section { padding: 80px 28px; }
}

/* ── 860px — Tablet portrait ── */
@media(max-width:860px) {
  .hero { padding: 48px 20px 40px; width: 100%; }
  .hero-left { text-align: center; margin-top: 0; }
  .hero-eyebrow { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero h1 { font-size: clamp(24px, 6vw, 44px); line-height: 1.2; -webkit-text-fill-color: transparent; background-clip: text; -webkit-background-clip: text; }
  .hero-visuals { grid-template-columns: 1fr 1fr; grid-template-rows: 210px 160px; gap: 12px; margin-top: 28px; }
  .hv-main { height: 210px; }
  .hv-year-num { font-size: 36px; }
  .section { padding: 64px 20px; }
  .process-section { padding: 64px 0; }
  .features-section { padding: 64px 0; }
  .contact-section { padding: 64px 0; }
  .contact-card { padding: 28px 22px; }
  .contact-inner { padding: 0 20px; }
  .features-inner { padding: 0 20px; }
  .about-card { padding: 28px 22px; }
  .body-img-layout { padding: 0 20px 60px; margin-top: -40px; }
  .gjb-cards { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .gjb-intro { gap: 28px; }
  .osb-cards { grid-template-columns: 1fr 1fr; }
  .wcg-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

/* ── 700px — Large mobile ── */
@media(max-width:700px) {
  .hero { padding: 36px 16px 32px; width: 100%; }
  .section { padding: 56px 16px; }
  .process-section { padding: 56px 0; }
  .features-section { padding: 56px 0; }
  .contact-section { padding: 56px 0; }
  .hero-visuals { grid-template-columns: 1fr 1fr; grid-template-rows: 175px 135px; gap: 10px; margin-top: 24px; }
  .hv-main { height: 175px; }
  .hv-year-num { font-size: 28px; }
  .buy-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .about-card { padding: 24px 18px; }
  /* GJB */
  .gjb-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gjb-card { padding: 20px 16px; }
  .gjb-accepts { flex-direction: column; align-items: flex-start; gap: 14px; margin-top: 32px; padding: 18px 20px; }
  .gjb-accepts-label { border-right: none; border-bottom: 1px solid rgba(255,251,0,.3); padding-right: 0; padding-bottom: 10px; width: 100%; }
  /* OSB */
  .osb-layout { gap: 28px; }
  .osb-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .osb-card { padding: 18px 14px; }
  .osb-accepts { flex-direction: column; align-items: flex-start; gap: 14px; margin-top: 32px; padding: 18px 20px; }
  .osb-accepts-label { border-right: none; border-bottom: 1px solid rgba(255,251,0,.3); padding-right: 0; padding-bottom: 10px; width: 100%; }
  /* WCG */
  .wcg-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .wcg-card { padding: 16px 14px 14px; }
  .wcg-card p { padding-left: 0; }
  .wcg-cta-bar { flex-direction: column; align-items: flex-start; padding: 18px 20px; gap: 16px; }
  /* Phone */
  #sticky-phone { right: 12px; bottom: 20px; }
  .sp-main { font-size: 16px; }
  .sp-icon-wrap { width: 46px; height: 46px; }
  .sp-number-wrap { padding: 0 14px 0 12px; }
  .sp-tag { display: none; }
  /* SEO */
  .seo-tags { gap: 8px; }
  .seo-tag { font-size: 8px; padding: 7px 14px; }
  .seo-body p { font-size: 14px; }
  /* Process */
  .process-img { height: 280px; }
  .process-inner { padding: 0 16px; }
  .stat-num { font-size: 34px; }
  .stat { padding: 24px 10px; }
  .section-title { font-size: clamp(24px, 6vw, 38px); }
}

/* ── 480px — Small mobile ── */
@media(max-width:480px) {
  .hero { padding: 28px 14px 28px; width: 100%; }
  .section { padding: 48px 14px; }
  .hero h1 { font-size: clamp(20px, 7.5vw, 32px); line-height: 1.2; -webkit-text-fill-color: transparent; background-clip: text; -webkit-background-clip: text; }
  .hero-visuals { grid-template-columns: 1fr; grid-template-rows: 200px 140px 120px; gap: 10px; margin-top: 20px; }
  .hv-main { height: 200px; grid-column: auto; }
  .hv-sub { height: 140px; }
  .hv-sub-2 { height: 120px; }
  .hv-year-num { font-size: 28px; }
  .logo-name { font-size: 17px; letter-spacing: 2px; }
  .logo-mark { width: 38px; height: 38px; font-size: 13px; border-radius: 10px; }
  .nav-inner { padding: 0 14px; height: 60px; }
  .nav-links { top: 60px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 190px; }
  .gallery-item:first-child { grid-row: span 1; }
  /* GJB single column */
  .gjb-cards { grid-template-columns: 1fr; }
  .gjb-card { padding: 20px 16px; }
  .gjb-card h4 { font-size: 14px; }
  .gjb-card p { font-size: 12px; }
  .gjb-lead { font-size: 14px; }
  /* OSB single column */
  .osb-cards { grid-template-columns: 1fr; }
  .osb-card { padding: 18px 14px; }
  .osb-lead { font-size: 14px; }
  .osb-content p { font-size: 13px; }
  /* WCG */
  .wcg-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .wcg-card { padding: 14px 12px 12px; }
  .wcg-card h4 { font-size: 12px; }
  .wcg-card p { font-size: 11px; padding-left: 0; }
  /* Buttons */
  .btn { padding: 12px 18px; font-size: 10px; gap: 8px; }
  .hero-btns { gap: 10px; flex-direction: column; align-items: center; }
  .btn-gold, .btn-outline { width: 100%; justify-content: center; max-width: 320px; }
  /* Phone widget */
  .sp-label { display: none; }
  .sp-main { font-size: 14px; }
  .sp-code { font-size: 10px; }
  .sp-icon-wrap { width: 42px; height: 42px; }
  /* Stats */
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 28px; }
  .stat { padding: 20px 8px; }
  .stat-label { font-size: 8px; letter-spacing: .1em; }
  /* Cards */
  .about-card { padding: 20px 16px; }
  .about-card h3 { font-size: 17px; }
  .contact-card { padding: 20px 14px; }
  .contact-card h3 { font-size: 22px; }
  .contact-inner { padding: 0 14px; }
  /* Footer */
  .footer-inner { padding: 24px 14px; }
  .footer-copy { font-size: 11px; }
  /* Process */
  .process-img { height: 220px; }
  .process-inner { padding: 0 14px; }
  .process-img-text h3 { font-size: 22px; }
  .section-title { font-size: clamp(20px, 7vw, 34px); }
  .buy-card-body { padding: 20px 20px 24px; }
  .buy-card-body h3 { font-size: 22px; }
}

/* ═══════════════════════════════════════
   GOLD JEWELLERY BUYER SECTION — REDESIGNED
═══════════════════════════════════════ */
.gjb-section {
  background: rgba(255,251,0,.45);
  border-top: 2px solid rgba(0,68,255,.15);
  border-bottom: 2px solid rgba(0,68,255,.15);
}
.gjb-intro {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}
.gjb-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gjb-lead {
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.9;
  color: #001a66;
  font-weight: 500;
  border-left: 4px solid #0044ff;
  padding-left: 18px;
}
.gjb-content p {
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1.95;
  color: #002266;
}
.gjb-cta { margin-top: 8px; align-self: flex-start; }
.gjb-facts {
  background: linear-gradient(135deg, #0033cc, #0055ff);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gjb-fact {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,251,0,.15);
}
.gjb-fact:last-child { border-bottom: none; padding-bottom: 0; }
.gjb-fact-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.gjb-fact-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: #fffb00;
  margin-bottom: 3px;
}
.gjb-fact-text span {
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(255,253,231,.8);
  line-height: 1.6;
}
.gjb-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.gjb-card {
  background: rgba(255,253,200,.9);
  border: 1px solid rgba(0,68,255,.18);
  border-radius: 16px;
  padding: 28px 24px;
  transition: .35s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gjb-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0033cc, #0055ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.gjb-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, #0044ff, transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .35s ease;
}
.gjb-card:hover { border-color: rgba(0,68,255,.4); transform: translateY(-5px); box-shadow: 0 20px 48px rgba(0,34,204,.14); background: #fffde7; }
.gjb-card:hover::before { transform: scaleX(1); }
.gjb-card:hover::after { transform: scaleX(1); }
.gjb-card-icon { font-size: 32px; display: block; line-height: 1; }
.gjb-card h4 { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: #0033cc; line-height: 1.3; }
.gjb-card p { font-family: var(--font-ui); font-size: 13px; line-height: 1.75; color: #002266; flex: 1; }
.gjb-accepts {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding: 22px 28px;
  background: linear-gradient(135deg, #0033cc, #0055ff);
  border-radius: 16px;
  flex-wrap: wrap;
}
.gjb-accepts-label {
  font-family: var(--font-tech);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #fffb00;
  white-space: nowrap;
  padding-right: 20px;
  border-right: 1px solid rgba(255,251,0,.3);
}
.gjb-accepts-items { display: flex; flex-wrap: wrap; gap: 10px; }
.gjb-accepts-items span {
  font-family: var(--font-tech);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fffde7;
  background: rgba(255,251,0,.12);
  border: 1px solid rgba(255,251,0,.25);
  padding: 6px 14px;
  border-radius: 100px;
  transition: .25s;
  cursor: default;
}
.gjb-accepts-items span:hover { background: rgba(255,251,0,.22); border-color: rgba(255,251,0,.55); color: #fffb00; }

/* ═══════════════════════════════════════
   OLD SILVER BUYER SECTION
═══════════════════════════════════════ */
.osb-section {
  background: linear-gradient(135deg, #0033cc 0%, #0044ff 50%, #0033cc 100%);
  border-top: 2px solid rgba(255,251,0,.15);
  border-bottom: 2px solid rgba(255,251,0,.15);
  position: relative;
  overflow: hidden;
}
.osb-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(255,251,0,.06), transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(255,251,0,.04), transparent 50%);
  pointer-events: none;
}
.osb-section .section-label { color: #fffb00; }
.osb-section .section-label::before { background: linear-gradient(90deg, transparent, #fffb00); }
.osb-section .section-label::after { background: linear-gradient(90deg, #fffb00, transparent); }
.osb-section .section-title {
  background: linear-gradient(160deg, #fffde7 0%, #fffb00 50%, #fffde7 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.osb-section .section-title em {
  font-style: italic;
  background: linear-gradient(135deg, #fffb00 0%, #fff176 60%, #fffb00 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.osb-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}
.osb-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.osb-card {
  background: rgba(255,251,0,.12);
  border: 1px solid rgba(255,251,0,.25);
  border-radius: 16px;
  padding: 24px 20px;
  transition: .35s;
  position: relative;
  overflow: hidden;
}
.osb-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, #fffb00, transparent);
  transform: scaleX(0); transform-origin: center;
  transition: transform .35s ease;
}
.osb-card:hover { background: rgba(255,251,0,.18); border-color: rgba(255,251,0,.5); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,51,.25); }
.osb-card:hover::after { transform: scaleX(1); }
.osb-card-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.osb-card h4 { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: #fffb00; margin-bottom: 8px; line-height: 1.3; }
.osb-card p { font-family: var(--font-ui); font-size: 12px; line-height: 1.75; color: rgba(255,253,231,.82); }
.osb-content { display: flex; flex-direction: column; gap: 18px; }
.osb-lead {
  font-family: var(--font-ui); font-size: 16px; line-height: 1.9; color: #fffde7;
  font-weight: 500; border-left: 4px solid #fffb00; padding-left: 18px;
}
.osb-content p { font-family: var(--font-ui); font-size: 14px; line-height: 1.95; color: rgba(255,253,231,.85); }
.osb-content p:hover { color: #fffde7; }
.osb-cta { margin-top: 12px; align-self: flex-start; }
.osb-accepts {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 52px;
  padding: 22px 28px;
  background: rgba(255,251,0,.1);
  border: 1px solid rgba(255,251,0,.25);
  border-radius: 16px;
  flex-wrap: wrap;
}
.osb-accepts-label {
  font-family: var(--font-tech); font-size: 9px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: #fffb00; white-space: nowrap;
  padding-right: 20px; border-right: 1px solid rgba(255,251,0,.3);
}
.osb-accepts-items { display: flex; flex-wrap: wrap; gap: 10px; }
.osb-accepts-items span {
  font-family: var(--font-tech); font-size: 9px; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: #fffde7; background: rgba(255,251,0,.1);
  border: 1px solid rgba(255,251,0,.25); padding: 6px 14px; border-radius: 100px;
  transition: .25s; cursor: default;
}
.osb-accepts-items span:hover { background: rgba(255,251,0,.2); border-color: rgba(255,251,0,.6); color: #fffb00; }

/* ═══════════════════════════════════════
   WHY CHOOSE SS GOLD BUYER SECTION
═══════════════════════════════════════ */
.wcg-section {
  background: rgba(255,251,0,.42);
  border-top: 2px solid rgba(0,68,255,.15);
  border-bottom: 2px solid rgba(0,68,255,.15);
  position: relative;
  overflow: hidden;
}
.wcg-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(0,68,255,.07), transparent 45%),
    radial-gradient(ellipse at 100% 100%, rgba(0,68,255,.05), transparent 45%);
  pointer-events: none;
}
.wcg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.wcg-card {
  background: rgba(255,253,200,.88);
  border: 1px solid rgba(0,68,255,.16);
  border-radius: 16px;
  padding: 22px 18px 20px;
  transition: .3s;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.wcg-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: linear-gradient(to bottom, #0044ff, #0055ff);
  transition: height .35s ease;
  border-radius: 0 0 3px 3px;
}
.wcg-card:hover { border-color: rgba(0,68,255,.4); transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,34,204,.12); background: rgba(255,253,180,.95); }
.wcg-card:hover::before { height: 100%; }
.wcg-card-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.wcg-icon { font-size: 22px; flex-shrink: 0; line-height: 1; }
.wcg-card h4 { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: #0033cc; line-height: 1.25; letter-spacing: .02em; }
.wcg-card p { font-family: var(--font-ui); font-size: 12.5px; line-height: 1.75; color: #002266; padding-left: 32px; }
.wcg-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  padding: 24px 32px;
  background: linear-gradient(135deg, #0033cc, #0055ff);
  border-radius: 16px;
  flex-wrap: wrap;
}
.wcg-cta-text { font-family: var(--font-ui); font-size: 15px; color: rgba(255,253,231,.9); line-height: 1.6; }
.wcg-cta-text strong { display: block; font-family: var(--font-display); font-size: 18px; color: #fffb00; margin-bottom: 4px; letter-spacing: .02em; }
