*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy:       #0d2856;
  --navy2:      #163370;
  --blue:       #1a65b0;
  --blue2:      #2e80cc;
  --cyan:       #4bc8e8;
  --cyan2:      #7ddcf2;
  --white:      #ffffff;
  --off:        #f5f9fe;
  --light:      #eef4fb;
  --dark-txt:   #0a1a35;
  --mid-txt:    #2d4068;
  --soft-txt:   #637899;
  --ease:       cubic-bezier(.25,.46,.45,.94);
  --sh-sm:      0 2px 14px rgba(13,40,86,.08);
  --sh-md:      0 8px 36px rgba(13,40,86,.14);
  --sh-lg:      0 24px 64px rgba(13,40,86,.2);
  --r:          16px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--white); color: var(--dark-txt); overflow-x: hidden; line-height: 1.6; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 22px 5%;
  display: flex; align-items: center; justify-content: space-between;
  transition: all .4s var(--ease);
}
.nav.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 5%;
  box-shadow: var(--sh-sm);
}
.nav-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav-logo img { width: 38px; height: 38px; object-fit: contain; }
.nav-brand { line-height: 1.2; }
.nav-brand .name { font-size: 14px; font-weight: 700; color: #fff; transition: color .3s; letter-spacing: -.2px; }
.nav-brand .sub { font-size: 10px; font-weight: 400; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .6px; transition: color .3s; }
.nav.scrolled .nav-brand .name { color: var(--navy); }
.nav.scrolled .nav-brand .sub { color: var(--soft-txt); }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { text-decoration: none; font-size: 14px; font-weight: 500; color: rgba(255,255,255,.82); position: relative; transition: color .3s; }
.nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; right:0; height:2px; background:var(--cyan); border-radius:2px; transform:scaleX(0); transform-origin:left; transition:transform .3s var(--ease); }
.nav-links a:hover::after { transform:scaleX(1); }
.nav.scrolled .nav-links a { color: var(--mid-txt); }
.nav.scrolled .nav-links a:hover { color: var(--blue); }
.nav-cta {
  background: var(--cyan) !important; color: var(--navy) !important;
  padding: 9px 20px; border-radius: 50px; font-weight: 600 !important; font-size: 13px !important;
  transition: all .3s var(--ease) !important; white-space: nowrap;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--cyan2) !important; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(75,200,232,.35); }
.nav.scrolled .nav-cta { color: var(--navy) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s var(--ease); }
.nav.scrolled .hamburger span { background: var(--navy); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── MOBILE NAV ── */
.mob-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--navy);
  flex-direction: column; justify-content: center;
  padding: 5%;
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease);
}
.mob-nav.open { opacity: 1; pointer-events: all; }
.mob-nav a {
  display: block; text-decoration: none;
  font-size: 20px; font-weight: 700; color: #fff;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08);
  opacity: 0; transform: translateX(-24px);
  transition: all .4s var(--ease);
}
.mob-nav.open a { opacity: 1; transform: translateX(0); }
.mob-nav.open a:nth-child(1){transition-delay:.08s}
.mob-nav.open a:nth-child(2){transition-delay:.14s}
.mob-nav.open a:nth-child(3){transition-delay:.20s}
.mob-nav.open a:nth-child(4){transition-delay:.26s}
.mob-nav.open a:nth-child(5){transition-delay:.32s}
.mob-nav a:hover { color: var(--cyan); }
.mob-nav .mob-wsp {
  margin-top: 28px; display: inline-flex; align-items: center; gap: 9px;
  background: #25d366; color: #fff; padding: 13px 22px; border-radius: 50px;
  font-size: 14px; font-weight: 700; width: fit-content; text-decoration: none;
}
.mob-nav .mob-wsp svg { width: 18px; height: 18px; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy2) 55%, #1a4a90 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 130px 5% 90px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .22; }
.orb-1 { width: 560px; height: 560px; background: var(--cyan); top: -160px; right: -120px; animation: ob1 14s ease-in-out infinite; }
.orb-2 { width: 320px; height: 320px; background: var(--blue2); bottom: -60px; left: 25%; animation: ob2 18s ease-in-out infinite; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(75,200,232,.04) 1px,transparent 1px), linear-gradient(90deg,rgba(75,200,232,.04) 1px,transparent 1px);
  background-size: 64px 64px;
  animation: gridmove 35s linear infinite;
}
@keyframes ob1 { 0%,100%{transform:translate(0,0) scale(1)} 40%{transform:translate(-28px,22px) scale(1.06)} 70%{transform:translate(18px,-12px) scale(.96)} }
@keyframes ob2 { 0%,100%{transform:translate(0,0) scale(1)} 35%{transform:translate(22px,-28px) scale(1.09)} 70%{transform:translate(-14px,16px) scale(.94)} }
@keyframes gridmove { from{background-position:0 0} to{background-position:64px 64px} }

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 380px;
  align-items: center; gap: 80px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 20px;
  opacity: 0; transform: translateY(18px); animation: fup .7s var(--ease) .15s forwards;
}
.hero-dot { width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; animation: pdot 2s ease-in-out infinite; }
.hero-txt h1 {
  font-size: clamp(36px,5.5vw,68px);
  font-weight: 900; color: #fff; line-height: 1.06; letter-spacing: -2.5px;
  margin-bottom: 22px;
  opacity: 0; transform: translateY(30px); animation: fup .75s var(--ease) .3s forwards;
}
.hero-txt h1 span { color: var(--cyan); }
.hero-txt p {
  font-size: 17px; color: rgba(255,255,255,.68); line-height: 1.72; max-width: 500px;
  margin-bottom: 40px;
  opacity: 0; transform: translateY(20px); animation: fup .7s var(--ease) .48s forwards;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; transform: translateY(18px); animation: fup .7s var(--ease) .64s forwards;
}
.btn-p {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--cyan); color: var(--navy); text-decoration: none;
  padding: 15px 30px; border-radius: 50px;
  font-size: 15px; font-weight: 700; letter-spacing: -.2px;
  transition: all .35s var(--ease); white-space: nowrap;
}
.btn-p:hover { background: var(--cyan2); transform: translateY(-3px); box-shadow: 0 14px 40px rgba(75,200,232,.42); }
.btn-s {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.1); color: #fff; text-decoration: none;
  padding: 15px 26px; border-radius: 50px;
  font-size: 15px; font-weight: 500;
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  transition: all .35s var(--ease); white-space: nowrap;
}
.btn-s:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.38); transform: translateY(-2px); }

.hero-visual {
  display: flex; align-items: center; justify-content: center;
  opacity: 0; animation: fin 1s var(--ease) .8s forwards;
  position: relative;
}
.hero-visual::before {
  content: '';
  position: absolute;
  width: 440px; height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.09) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.logo-float { z-index: 1; }
.logo-float {
  position: relative;
  animation: float 7s ease-in-out infinite;
  background: rgba(255,255,255,.06);
  border-radius: 20px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.logo-float img { width: 320px; height: 320px; object-fit: contain; display: block; border-radius: 18px; }
.logo-shadow {
  position: absolute; bottom: -24px; left: 50%; transform: translateX(-50%);
  width: 150px; height: 24px;
  background: radial-gradient(ellipse, rgba(0,0,0,.28) 0%, transparent 70%);
  border-radius: 50%; animation: shd 7s ease-in-out infinite;
}
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.35); font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  animation: fin 1s var(--ease) 1.8s both;
}
.scroll-bar { width: 1px; height: 44px; background: linear-gradient(to bottom,rgba(255,255,255,.3),transparent); animation: scbar 2.2s ease-in-out infinite; }

@keyframes fup  { to { opacity:1; transform:translateY(0); } }
@keyframes fin  { to { opacity:1; } }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-18px)} }
@keyframes shd   { 0%,100%{transform:translateX(-50%) scale(1);opacity:.45} 50%{transform:translateX(-50%) scale(.82);opacity:.25} }
@keyframes pdot  { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.75)} }
@keyframes scbar { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ── STATS ── */
.stats { background: var(--white); }
.stats-row {
  max-width: 1200px; margin: 0 auto; padding: 0 5%;
  display: grid; grid-template-columns: repeat(3,1fr);
}
.stat {
  padding: 52px 36px; text-align: center;
  position: relative; border-bottom: 2px solid var(--light);
}
.stat:not(:last-child)::after {
  content:''; position:absolute; top:28%; right:0; bottom:28%;
  width:1px; background:var(--light);
}
.stat-n {
  font-size: clamp(44px,6vw,66px); font-weight: 900;
  color: var(--navy); letter-spacing: -4px; line-height: 1;
  display: flex; align-items: baseline; justify-content: center; gap: 0;
  margin-bottom: 8px;
}
.stat-n .suf { font-size: .5em; color: var(--cyan); font-weight: 700; letter-spacing: 0; margin-left: 2px; }
.stat-lbl { font-size: 14px; color: var(--soft-txt); font-weight: 500; }

/* ── SECTION BASE ── */
.sec { padding: 100px 5%; }
.sec-inner { max-width: 1200px; margin: 0 auto; }
.sec-label { display:inline-block; font-size:11px; font-weight:600; letter-spacing:2.5px; text-transform:uppercase; color:var(--blue); margin-bottom:14px; }
.sec-title { font-size:clamp(28px,4vw,46px); font-weight:900; color:var(--navy); line-height:1.1; letter-spacing:-1.5px; }
.sec-title em { font-style:normal; color:var(--blue); }
.sec-desc { font-size:17px; color:var(--soft-txt); line-height:1.7; margin-top:14px; max-width:560px; }

/* ── REVEAL ── */
.reveal { opacity:0; transform:translateY(32px); transition:opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.on { opacity:1; transform:translateY(0); }

/* ── SERVICES ── */
.services { background: var(--off); padding: 100px 5%; }
.svc-head { max-width:1200px; margin:0 auto 56px; }
.svc-grid {
  max-width:1200px; margin:0 auto;
  display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:18px;
}
.svc-card {
  background: var(--white); border-radius: var(--r);
  padding: 34px 30px; position: relative; overflow: hidden;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.svc-card::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--blue),var(--cyan));
  transform:scaleX(0); transform-origin:left; transition:transform .4s var(--ease);
}
.svc-card:hover { transform:translateY(-5px); box-shadow:var(--sh-md); border-color:rgba(26,101,176,.1); }
.svc-card:hover::after { transform:scaleX(1); }
.svc-ico {
  width:50px; height:50px; border-radius:12px;
  background:linear-gradient(135deg,rgba(75,200,232,.16),rgba(26,101,176,.1));
  display:flex; align-items:center; justify-content:center;
  margin-bottom:22px; transition:transform .3s var(--ease);
}
.svc-card:hover .svc-ico { transform:scale(1.1); }
.svc-ico svg { width:24px; height:24px; color:var(--blue); }
.svc-card h3 { font-size:17px; font-weight:700; color:var(--navy); margin-bottom:8px; letter-spacing:-.3px; }
.svc-card p { font-size:13.5px; color:var(--soft-txt); line-height:1.65; }

/* ── WHY ── */
.why-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center;
}
.why-card-wrap { position:relative; }
.why-main {
  background:linear-gradient(135deg,var(--navy) 0%,var(--navy2) 100%);
  border-radius:24px; padding:50px 44px; color:#fff; overflow:hidden;
  position:relative;
}
.why-main::after {
  content:'35'; position:absolute; right:-8px; bottom:-24px;
  font-size:160px; font-weight:900; color:rgba(255,255,255,.04);
  letter-spacing:-10px; line-height:1; pointer-events:none; user-select:none;
}
.why-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(75,200,232,.16); border:1px solid rgba(75,200,232,.3);
  border-radius:50px; padding:6px 14px;
  font-size:12px; font-weight:600; color:var(--cyan); letter-spacing:.4px;
  margin-bottom:22px;
}
.why-main h3 { font-size:30px; font-weight:800; line-height:1.1; letter-spacing:-1px; margin-bottom:14px; }
.why-main p { font-size:15px; color:rgba(255,255,255,.62); line-height:1.72; }
.why-float {
  position:absolute; bottom:-22px; right:-22px;
  background:#fff; border-radius:var(--r); padding:18px 22px;
  box-shadow:var(--sh-lg); display:flex; align-items:center; gap:14px; min-width:210px;
}
.wf-ico {
  width:42px; height:42px; flex-shrink:0;
  background:linear-gradient(135deg,var(--cyan),var(--blue));
  border-radius:11px; display:flex; align-items:center; justify-content:center;
}
.wf-ico svg { width:20px; height:20px; color:#fff; }
.wf-txt strong { display:block; font-size:14px; font-weight:700; color:var(--navy); margin-bottom:2px; }
.wf-txt span { font-size:12px; color:var(--soft-txt); }

.why-pts { display:flex; flex-direction:column; gap:0; }
.why-pts .sec-title { margin-bottom:8px; }
.why-pt {
  display:flex; gap:16px; padding:20px 0;
  border-bottom:1px solid var(--light);
  transition:opacity .5s var(--ease), transform .5s var(--ease);
}
.why-pt.reveal { transform:translateX(24px); }
.why-pt.on   { opacity:1; transform:translateX(0); }
.why-pt:nth-child(2){transition-delay:.08s}
.why-pt:nth-child(3){transition-delay:.16s}
.why-pt:nth-child(4){transition-delay:.24s}
.why-pt:nth-child(5){transition-delay:.32s}
.why-pt:nth-child(6){transition-delay:.40s}
.wpt-ico {
  width:40px; height:40px; flex-shrink:0; border-radius:10px;
  background:var(--light); display:flex; align-items:center; justify-content:center;
  margin-top:2px; transition:background .3s;
}
.why-pt:hover .wpt-ico { background:linear-gradient(135deg,rgba(75,200,232,.2),rgba(26,101,176,.15)); }
.wpt-ico svg { width:18px; height:18px; color:var(--blue); }
.wpt-txt strong { display:block; font-size:15px; font-weight:700; color:var(--navy); margin-bottom:3px; }
.wpt-txt p { font-size:13.5px; color:var(--soft-txt); line-height:1.55; }

/* ── PORTAL ── */
.portal-sec { background: var(--off); padding: 100px 5%; }
.portal-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.portal-features {
  list-style: none; margin: 28px 0 36px;
  display: flex; flex-direction: column; gap: 14px;
}
.portal-features li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 500; color: var(--mid-txt);
}
.pf-ico {
  width: 34px; height: 34px; flex-shrink: 0; border-radius: 9px;
  background: linear-gradient(135deg, rgba(75,200,232,.18), rgba(26,101,176,.12));
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.pf-ico svg { width: 16px; height: 16px; }
.btn-portal {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--navy); color: #fff; text-decoration: none;
  padding: 16px 30px; border-radius: 50px;
  font-size: 15px; font-weight: 700; letter-spacing: -.2px;
  transition: all .35s var(--ease);
}
.btn-portal svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.btn-portal:hover { background: var(--blue); transform: translateY(-3px); box-shadow: var(--sh-md); }
.btn-portal:hover svg { transform: translateX(4px); }

/* Portal card */
.portal-card {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy2) 100%);
  border-radius: 24px; padding: 36px 32px;
  position: relative; overflow: hidden;
}
.portal-card::before {
  content:''; position:absolute; top:-100px; right:-80px;
  width:340px; height:340px; border-radius:50%;
  background: radial-gradient(circle, rgba(75,200,232,.18) 0%, transparent 65%);
  pointer-events:none;
}
.portal-card-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
  padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.1); position: relative;
}
.portal-card-logo {
  width: 38px; height: 38px; background: var(--cyan); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.portal-card-logo svg { width: 20px; height: 20px; color: var(--navy); }
.portal-card-header-txt strong { display: block; font-size: 13px; font-weight: 700; color: #fff; }
.portal-card-header-txt span { font-size: 11px; color: rgba(255,255,255,.4); }
.portal-items { display: flex; flex-direction: column; gap: 10px; position: relative; }
.portal-item {
  background: rgba(255,255,255,.06); border-radius: 12px; padding: 15px 16px;
  display: flex; align-items: center; gap: 13px;
  border: 1px solid rgba(255,255,255,.07);
  transition: background .3s var(--ease), transform .3s var(--ease);
  cursor: default;
}
.portal-item:hover { background: rgba(255,255,255,.1); transform: translateX(4px); }
.pi-ico {
  width: 36px; height: 36px; flex-shrink: 0; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.pi-ico svg { width: 17px; height: 17px; }
.pi-ico.cyan { background: rgba(75,200,232,.2); color: var(--cyan); }
.pi-ico.blue { background: rgba(46,128,204,.25); color: var(--blue2); }
.pi-ico.white { background: rgba(255,255,255,.12); color: rgba(255,255,255,.75); }
.pi-txt strong { display: block; font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.pi-txt span { font-size: 11px; color: rgba(255,255,255,.42); }
.portal-card-cta {
  margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: space-between; position: relative;
}
.portal-card-cta span { font-size: 12px; color: rgba(255,255,255,.35); }
.portal-card-cta a {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--cyan); color: var(--navy); text-decoration: none;
  padding: 8px 18px; border-radius: 50px; font-size: 12px; font-weight: 700;
  transition: all .3s var(--ease);
}
.portal-card-cta a:hover { background: var(--cyan2); transform: scale(1.04); }

/* ── CTA ── */
.cta-sec {
  background:linear-gradient(145deg,var(--navy) 0%,var(--navy2) 60%,#1a4a90 100%);
  padding:110px 5%; position:relative; overflow:hidden; text-align:center;
}
.cta-sec::before {
  content:''; position:absolute; top:-220px; left:50%; transform:translateX(-50%);
  width:900px; height:900px;
  background:radial-gradient(circle,rgba(75,200,232,.11) 0%,transparent 65%);
  pointer-events:none;
}
.cta-inner { position:relative; z-index:2; max-width:680px; margin:0 auto; }
.cta-inner h2 {
  font-size:clamp(30px,4.5vw,54px); font-weight:900; color:#fff;
  letter-spacing:-2px; line-height:1.08; margin-bottom:18px;
}
.cta-inner h2 em { font-style:normal; color:var(--cyan); }
.cta-inner p { font-size:17px; color:rgba(255,255,255,.62); line-height:1.72; margin-bottom:44px; }
.cta-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.btn-wsp {
  display:inline-flex; align-items:center; gap:12px;
  background:#25d366; color:#fff; text-decoration:none;
  padding:18px 36px; border-radius:50px; font-size:16px; font-weight:700;
  box-shadow:0 8px 30px rgba(37,211,102,.3);
  transition:all .35s var(--ease);
}
.btn-wsp:hover { background:#1db954; transform:translateY(-3px); box-shadow:0 18px 44px rgba(37,211,102,.46); }
.btn-wsp svg { width:22px; height:22px; }

/* ── FOOTER ── */
footer { background:var(--navy); padding:64px 5% 40px; }
.ft-top {
  max-width:1200px; margin:0 auto;
  display:grid; grid-template-columns:2fr 1fr 1fr; gap:60px;
  padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,.08);
}
.ft-brand p { font-size:14px; color:rgba(255,255,255,.5); line-height:1.7; margin-top:14px; max-width:280px; }
.ft-logo { display:flex; align-items:center; gap:11px; }
.ft-logo img { width:52px; height:52px; object-fit:contain; border-radius:10px; }
.ft-logo-txt .name { font-size:13px; font-weight:700; color:#fff; }
.ft-logo-txt .sub { font-size:10px; color:rgba(255,255,255,.35); text-transform:uppercase; letter-spacing:.5px; }
.ft-col h4 { font-size:11px; font-weight:600; color:#fff; letter-spacing:1.5px; text-transform:uppercase; margin-bottom:18px; }
.ft-col ul { list-style:none; display:flex; flex-direction:column; gap:11px; }
.ft-col ul li a { text-decoration:none; font-size:14px; color:rgba(255,255,255,.48); transition:color .3s; }
.ft-col ul li a:hover { color:var(--cyan); }
.ft-bottom {
  max-width:1200px; margin:0 auto; padding-top:30px;
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:10px;
}
.ft-bottom p { font-size:13px; color:rgba(255,255,255,.25); }

/* ── FLOAT WSP ── */
.wsp-fab {
  position:fixed; bottom:28px; right:28px; z-index:900;
  width:60px; height:60px; border-radius:50%;
  background:#25d366; text-decoration:none;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 24px rgba(37,211,102,.45);
  transition:all .35s var(--ease);
  animation:fabpulse 3.2s ease-in-out infinite;
}
.wsp-fab:hover { transform:scale(1.12); box-shadow:0 12px 38px rgba(37,211,102,.6); }
.wsp-fab svg { width:30px; height:30px; color:#fff; }
@keyframes fabpulse {
  0%,100%{box-shadow:0 6px 24px rgba(37,211,102,.45)}
  50%{box-shadow:0 6px 24px rgba(37,211,102,.45),0 0 0 14px rgba(37,211,102,.1)}
}

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .hero-inner { grid-template-columns:1fr; text-align:center; gap:56px; }
  .hero-txt p { margin:0 auto 40px; }
  .hero-actions { justify-content:center; }
  .why-grid { grid-template-columns:1fr; gap:56px; }
  .why-float { position:relative; bottom:auto; right:auto; margin-top:18px; }
  .why-card-wrap { display:flex; flex-direction:column; }
  .portal-inner { grid-template-columns:1fr; gap:48px; }
  .ft-top { grid-template-columns:1fr 1fr; }
  .ft-brand { grid-column:1/-1; }
}
@media(max-width:768px){
  .sec,.services,.why,.cta-sec { padding:70px 5%; }
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .mob-nav { display:flex; }
  .stats-row { grid-template-columns:1fr; }
  .stat:not(:last-child)::after { display:none; }
  .stat { padding:38px 24px; border-bottom:1px solid var(--light); }
  .svc-grid { grid-template-columns:1fr; }
  .ft-top { grid-template-columns:1fr; gap:36px; }
  .ft-bottom { flex-direction:column; text-align:center; }
  .why-float { min-width:auto; width:100%; }
}
@media(max-width:480px){
  .hero-actions,.cta-btns { flex-direction:column; align-items:center; }
  .logo-float img { width:180px; height:180px; }
}
