/* Variables & Reset */
:root {
  --bg:        #030712;
  --bg-mid:    #070f22;
  --bg-card:   #091733;
  --accent:    #007aff;
  --accent2:   #00f0ff;
  --purple:    #8b5cf6;
  --white:     #ffffff;
  --muted:     #94a3b8;
  --border:    rgba(0, 240, 255, 0.22);
  --glow:      rgba(0, 240, 255, 0.45);
  --success:   #10b981;
  --error:     #ef4444;

  --f-display: 'Orbitron',  monospace;
  --f-body:    'Exo 2',     sans-serif;
  --f-ui:      'Rajdhani',  sans-serif;

  --ease:      cubic-bezier(.4,0,.2,1);
  --dur:       .3s;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { background: var(--bg); color: var(--white); font-family: var(--f-body); overflow-x: hidden; cursor: none; }
img   { display: block; max-width: 100%; }
a     { color: inherit; }
ul    { list-style: none; }
button{ font-family: inherit; }


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   2. SCROLLBAR
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
::-webkit-scrollbar        { width: 4px; }
::-webkit-scrollbar-track  { background: var(--bg); }
::-webkit-scrollbar-thumb  { background: var(--accent); border-radius: 2px; }


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   3. CANVAS + CURSOR
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#bgCanvas {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none; opacity: .55;
}

.cursor, .cursor-trail {
  position: fixed; top: 0; left: 0;
  border-radius: 50%; pointer-events: none;
  transform: translate(-50%,-50%);
}
.cursor {
  width: 12px; height: 12px;
  background: var(--accent2);
  mix-blend-mode: screen;
  z-index: 9999;
  transition: width .15s, height .15s;
}
.cursor-trail {
  width: 32px; height: 32px;
  border: 1.5px solid var(--accent);
  opacity: .6; z-index: 9998;
  transition: left .25s var(--ease), top .25s var(--ease), width .2s, height .2s;
}


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   4. UTILITIES + BUTTONS
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.accent     { color: var(--accent2); }
.accent-glow{
  color: #00f0ff;
  background: linear-gradient(135deg, #ffffff 0%, #00f0ff 45%, #007aff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 16px rgba(0,240,255,.7),
    0 0 35px rgba(0,122,255,.4);
}

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Primary button */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #0066ff 0%, #00f0ff 100%); color: #fff; text-decoration: none;
  padding: 13px 30px; border-radius: 8px;
  font-family: var(--f-ui); font-size: 1rem; font-weight: 700; letter-spacing: 1px;
  border: none; cursor: pointer;
  transition: transform var(--dur), box-shadow var(--dur), filter var(--dur);
  box-shadow: 0 0 24px rgba(0,240,255,.4);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transition: left .5s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  filter: brightness(1.15); transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(0,240,255,.65);
}
.btn-primary:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* Outline button */
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,240,255,.04); color: var(--accent2); text-decoration: none;
  padding: 12px 28px; border-radius: 8px;
  font-family: var(--f-ui); font-size: 1rem; font-weight: 700; letter-spacing: 1px;
  border: 1.5px solid var(--accent2); cursor: pointer;
  transition: transform var(--dur), background var(--dur), box-shadow var(--dur);
}
.btn-outline:hover {
  background: rgba(0,240,255,.12); transform: translateY(-3px);
  box-shadow: 0 0 24px rgba(0,240,255,.4);
}
.btn-full { width: 100%; justify-content: center; }

/* Loader inside submit */
.btn-loader { font-size: .88rem; opacity: .85; }


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   5. SECTION SCAFFOLD
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section { padding: 70px 0; position: relative; z-index: 55; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-tag {
  display: inline-block;
  font-family: var(--f-ui); font-size: .78rem; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent2); background: rgba(29,140,248,.08);
  border: 1px solid var(--border); padding: 5px 16px;
  border-radius: 100px; margin-bottom: 12px;
}
.section-title {
  font-family: var(--f-display);
  font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 700; letter-spacing: 2px;
}


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   6. NAVBAR
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 16px 0;
  transition: background .4s, backdrop-filter .4s, box-shadow .4s;
}
.navbar.scrolled {
  background: rgba(5,10,20,.94); backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,.5);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-img {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--accent); box-shadow: 0 0 16px var(--glow);
  transition: transform .6s var(--ease);
}
.logo-img:hover { transform: rotate(360deg) scale(1.1); }
.logo-text { font-family: var(--f-display); font-size: 1rem; font-weight: 700; letter-spacing: 2px; }

.nav-links { display: flex; gap: 4px; }
.nav-link {
  font-family: var(--f-ui); color: var(--muted); text-decoration: none;
  font-size: .95rem; font-weight: 500; padding: 8px 14px; border-radius: 6px;
  letter-spacing: 1px; position: relative; transition: color var(--dur);
}
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px; height: 1px;
  background: var(--accent); transform: scaleX(0); transition: transform var(--dur) var(--ease);
}
.nav-link:hover, .nav-link.active           { color: var(--accent2); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.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: var(--white); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   7. HERO
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 24px 110px;
  position: relative; overflow: hidden; z-index: 1;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(29,140,248,.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(124,58,237,.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content { max-width: 660px; position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(29,140,248,.1); border: 1px solid var(--border);
  padding: 6px 18px; border-radius: 100px;
  font-family: var(--f-ui); font-size: .76rem; font-weight: 600;
  letter-spacing: 2px; color: var(--accent2); margin-bottom: 28px;
  animation: fadeDown .8s .2s both;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent2); box-shadow: 0 0 8px var(--accent2);
  animation: pulse 1.5s infinite; flex-shrink: 0;
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(3rem,8vw,6rem); font-weight: 900;
  line-height: 1.05; letter-spacing: 4px; margin-bottom: 20px;
}
.title-line { display: block; }
.title-line:nth-child(1){ animation: slideLeft .8s .3s both; }
.title-line:nth-child(2){ animation: slideLeft .8s .5s both; }
.title-line:nth-child(3){ animation: slideLeft .8s .7s both; }

.hero-tagline {
  font-family: var(--f-ui); font-size: 1.2rem;
  color: var(--muted); line-height: 1.6;
  margin-bottom: 28px; animation: fadeDown .8s .9s both;
}

.hero-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 36px; animation: fadeDown .8s 1.1s both;
}
.pill {
  background: rgba(29,140,248,.08); border: 1px solid rgba(29,140,248,.25);
  padding: 6px 14px; border-radius: 100px;
  font-family: var(--f-ui); font-size: .84rem; font-weight: 600; color: var(--accent2);
  transition: background var(--dur), transform .2s;
}
.pill:hover { background: rgba(29,140,248,.2); transform: translateY(-2px); }

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; animation: fadeDown .8s 1.3s both; }

/* Code window */
.hero-code { animation: fadeDown .8s 1.5s both; }
.code-window {
  background: rgba(10,22,40,.9); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; max-width: 420px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 40px rgba(29,140,248,.1);
}
.code-dots { display: flex; gap: 7px; padding: 10px 14px; background: rgba(255,255,255,.04); border-bottom: 1px solid var(--border); }
.code-dots span { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.dot-red    { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green  { background: #27c93f; }
.code-body {
  padding: 18px 20px; font-family: 'Courier New', monospace;
  font-size: .82rem; line-height: 1.7; color: #7dd3fc; min-height: 80px;
}
.cursor-blink { animation: blink .9s step-end infinite; }


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   8. SCROLL HINT
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   Uses position:fixed so it sits at the BOTTOM-CENTRE of the
   viewport at all times. JavaScript hides it after scroll 80px.
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-scroll-hint {
  position: fixed;
  bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 50;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeDown .8s 2.2s both;
  pointer-events: none;
  transition: opacity .5s var(--ease), transform .5s var(--ease), visibility .5s;
}
.hero-scroll-hint.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(14px);
}
.scroll-hint-label {
  font-family: var(--f-ui); font-size: .7rem;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
}
/* Mouse outline */
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(142,168,195,.55);
  border-radius: 12px;
  display: flex; justify-content: center; padding-top: 5px;
  position: relative;
}
.scroll-mouse::after {
  content: ''; position: absolute; inset: -1px;
  border-radius: 13px; border: 1px solid rgba(29,140,248,.2);
}
/* Animated wheel dot */
.scroll-wheel {
  width: 4px; height: 7px;
  background: var(--accent2); border-radius: 2px;
  animation: wheelScroll 1.6s ease-in-out infinite;
  box-shadow: 0 0 6px var(--accent2);
}


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   9. ABOUT
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.about-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-mid) 50%, var(--bg) 100%);
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-lead { font-size: 1.1rem; line-height: 1.7; margin-bottom: 16px; }
.about-text p { color: var(--muted); line-height: 1.8; margin-bottom: 14px; }

.about-stats { display: flex; gap: 20px; margin-top: 32px; flex-wrap: wrap; }

.founder-intro {
  display: flex; align-items: center; gap: 24px;
  margin: 0 0 32px;
  background: linear-gradient(135deg, rgba(29,140,248,.1), rgba(0,212,255,.06));
  border: 1px solid rgba(29,140,248,.3);
  border-radius: 20px; padding: 22px 28px;
  width: 100%;
  transition: box-shadow var(--dur), border-color var(--dur);
  position: relative; overflow: hidden;
}
.founder-intro::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,.5), transparent);
  z-index: 0; pointer-events: none;
}
.founder-intro:hover {
  border-color: rgba(0,212,255,.55);
  box-shadow: 0 12px 48px rgba(29,140,248,.2);
}
.founder-photo-wrap {
  position: relative; flex-shrink: 0; z-index: 1;
}
.founder-photo {
  width: 200px; height: 200px;
  border-radius: 16px; object-fit: cover; object-position: 50% 15%;
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(29,140,248,.18), 0 0 36px rgba(29,140,248,.5);
  display: block;
  filter: brightness(1.08) contrast(1.06) saturate(1.05);
}
.founder-glow-ring {
  position: absolute; inset: -7px;
  border-radius: 20px;
  border: 1px solid rgba(0,212,255,.35);
  animation: founderGlowRing 2.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes founderGlowRing {
  0%,100% { opacity: .85; border-color: rgba(0,212,255,.35); }
  50%     { opacity: .2;  border-color: rgba(0,212,255,.65); }
}
.founder-details { display: flex; flex-direction: column; gap: 6px; min-width: 0; position: relative; z-index: 1; }
.founder-badge {
  display: inline-block;
  font-family: var(--f-ui); font-size: .7rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent2);
  background: rgba(0,212,255,.12);
  border: 1px solid rgba(0,212,255,.3);
  border-radius: 100px; padding: 3px 12px;
  width: fit-content;
}
.founder-full-name {
  font-family: var(--f-ui); font-size: 1.2rem; font-weight: 700;
  color: var(--white); letter-spacing: .5px; margin: 0;
}
.founder-company {
  font-family: var(--f-ui); font-size: .82rem;
  color: var(--muted); margin: 0;
}
.stat-card {
  flex: 1; min-width: 90px;
  background: rgba(29,140,248,.08); border: 1px solid var(--border);
  border-radius: 12px; padding: 18px 20px; text-align: center;
  font-size: 1.1rem; font-weight: 700; color: var(--accent);
  transition: transform var(--dur), box-shadow var(--dur);
}
.stat-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(29,140,248,.2); }
.stat-num { display: block; font-family: var(--f-display); font-size: 2.2rem; font-weight: 900; line-height: 1; }
.stat-label { display: block; font-family: var(--f-ui); font-size: .85rem; color: var(--muted); letter-spacing: 1px; margin-top: 4px; }


.about-visual { display: flex; justify-content: center; align-items: center; }
.orbit-ring   { width: 420px; height: 420px; position: relative; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.orbit-center { width: 130px; height: 130px; border-radius: 50%; overflow: hidden; border: 3px solid var(--accent); box-shadow: 0 0 40px var(--glow), 0 0 80px rgba(29,140,248,.3); z-index: 10; flex-shrink: 0; }
.orbit-logo   { width: 100%; height: 100%; object-fit: cover; }
.orbit-path   { position: absolute; border-radius: 50%; border: 1px solid rgba(29,140,248,.2); display: flex; align-items: flex-start; justify-content: center; }
.orbit-1      { width: 210px; height: 210px; animation: orbitSpin 6s  linear infinite; }
.orbit-2      { width: 300px; height: 300px; animation: orbitSpin 10s linear infinite reverse; }
.orbit-3      { width: 388px; height: 388px; animation: orbitSpin 14s linear infinite; }
.orbit-dot    { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--f-ui); font-size: .62rem; font-weight: 700; letter-spacing: 1px; transform: translateY(-16px); flex-shrink: 0; }
.dot-ai  { background: rgba(124,58,237,.8);  color: #e9d5ff; box-shadow: 0 0 12px #7c3aed; }
.dot-web { background: rgba(14,165,233,.8);  color: #bae6fd; box-shadow: 0 0 12px #0ea5e9; }
.dot-app { background: rgba(16,185,129,.8);  color: #a7f3d0; box-shadow: 0 0 12px #10b981; }


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   10. SERVICES
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.services-section { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 24px; }

.service-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 30px 26px;
  position: relative; overflow: hidden;
  transition: box-shadow .4s var(--ease), border-color .4s, transform .4s;
  transform-style: preserve-3d; cursor: default;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--ic, var(--accent)), transparent);
  opacity: 0; transition: opacity .4s;
}
.service-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 40px rgba(29,140,248,.12); border-color: rgba(29,140,248,.4); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 50px; height: 50px; border-radius: 12px; padding: 11px; margin-bottom: 16px;
  background: rgba(from var(--ic,#1d8cf8) r g b / .12);
  border: 1px solid rgba(from var(--ic,#1d8cf8) r g b / .3);
  color: var(--ic, var(--accent));
  transition: transform .4s;
}
.service-icon {
  background: color-mix(in srgb, var(--ic, var(--accent)) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--ic, var(--accent)) 35%, transparent);
  color: var(--ic, var(--accent));
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(5deg); }
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 { font-family: var(--f-ui); font-size: 1.04rem; font-weight: 700; margin-bottom: 9px; line-height: 1.35; letter-spacing: .4px; }
.service-card p  { color: var(--muted); font-size: .87rem; line-height: 1.6; margin-bottom: 16px; }

.service-tags { display: flex; gap: 7px; flex-wrap: wrap; }
.service-tags span {
  font-family: var(--f-ui); font-size: .7rem; font-weight: 600; letter-spacing: .5px;
  background: rgba(29,140,248,.08); border: 1px solid rgba(29,140,248,.2);
  color: var(--accent2); padding: 3px 10px; border-radius: 6px;
}
.service-hover-glow {
  position: absolute; bottom: -60px; right: -60px;
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(29,140,248,.14) 0%, transparent 70%);
  opacity: 0; pointer-events: none; transition: opacity .5s, transform .5s;
}
.service-card:hover .service-hover-glow { opacity: 1; transform: scale(1.3); }


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   11. VISION & MISSION
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.vm-section { background: linear-gradient(180deg, var(--bg), var(--bg-mid), var(--bg)); }
.vm-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

.vm-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 48px 40px;
  position: relative; overflow: hidden;
  transition: transform var(--dur), box-shadow var(--dur);
}
.vm-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.vm-icon { display: block; font-size: 2.5rem; margin-bottom: 20px; filter: drop-shadow(0 0 12px rgba(29,140,248,.6)); }
.vm-card h2 { font-family: var(--f-display); font-size: 1.6rem; margin-bottom: 20px; letter-spacing: 2px; }
.vm-card > p { color: var(--muted); line-height: 1.8; font-size: .95rem; }

.mission-list { display: flex; flex-direction: column; gap: 12px; }
.mission-list li { color: var(--muted); font-size: .9rem; line-height: 1.5; padding-left: 22px; position: relative; }
.mission-list li::before { content: '\2713'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.vm-decoration { position: absolute; bottom: -40px; right: -40px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(29,140,248,.07) 0%, transparent 70%); pointer-events: none; }


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   12. WHY US
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.why-section { background: var(--bg); }
.why-grid    { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 24px; }
.why-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px 22px; text-align: center;
  transition: transform var(--dur), box-shadow var(--dur), border-color var(--dur);
}
.why-card:hover { transform: translateY(-8px); box-shadow: 0 16px 50px rgba(0,0,0,.4), 0 0 28px rgba(29,140,248,.1); border-color: rgba(29,140,248,.4); }
.why-icon { display: block; font-size: 2.2rem; margin-bottom: 16px; filter: drop-shadow(0 0 8px rgba(29,140,248,.5)); }
.why-card h3 { font-family: var(--f-ui); font-size: .95rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.why-card p  { color: var(--muted); font-size: .83rem; line-height: 1.6; }


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   13. CONTACT
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-section { background: linear-gradient(180deg, var(--bg), var(--bg-mid)); }
.contact-center  { display: flex; justify-content: center; }
.contact-center .contact-form-wrap { max-width: 640px; width: 100%; }

.contact-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px;
  display: flex; flex-direction: column; gap: 22px; margin-bottom: 20px;
}
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon {
  width: 44px; height: 44px; background: rgba(29,140,248,.1);
  border: 1px solid var(--border); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.contact-label { display: block; font-family: var(--f-ui); font-size: .74rem; font-weight: 700; letter-spacing: 1px; color: var(--accent2); margin-bottom: 2px; }
.contact-value { font-family: var(--f-ui); font-size: .94rem; color: var(--white); text-decoration: none; transition: color var(--dur); }
.contact-value:hover { color: var(--accent2); }

.quote-box {
  background: linear-gradient(135deg, rgba(29,140,248,.08), rgba(124,58,237,.08));
  border: 1px solid var(--border); border-radius: 14px;
  padding: 26px 26px 26px 46px; position: relative; margin-bottom: 12px;
}
.quote-mark { position: absolute; top: 6px; left: 18px; font-size: 4rem; line-height: 1; color: var(--accent); font-family: serif; opacity: .55; }
.quote-box p { font-family: var(--f-ui); font-size: 1.08rem; font-weight: 600; line-height: 1.5; }

.msg-counter { font-family: var(--f-ui); font-size: .8rem; color: var(--muted); text-align: center; padding: 4px 0; }


.contact-form-wrap { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 34px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group   { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-family: var(--f-ui); font-size: .82rem; font-weight: 700; letter-spacing: 1px; color: var(--accent2); }
.req { color: var(--error); }

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 15px; color: var(--white);
  font-family: var(--f-body); font-size: .9rem;
  outline: none; transition: border-color var(--dur), box-shadow var(--dur);
  resize: vertical;
}
.form-group select option { background: var(--bg-mid); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(29,140,248,.15); }
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid { border-color: var(--error); }

.field-error { font-family: var(--f-ui); font-size: .77rem; color: var(--error); min-height: 14px; }

.form-success {
  background: rgba(16,185,129,.14); border: 1px solid rgba(16,185,129,.4);
  border-radius: 10px; padding: 12px 16px;
  font-family: var(--f-ui); font-size: .9rem; color: #6ee7b7; text-align: center;
}
.form-error {
  background: rgba(239,68,68,.14); border: 1px solid rgba(239,68,68,.4);
  border-radius: 10px; padding: 12px 16px;
  font-family: var(--f-ui); font-size: .9rem; color: #fca5a5; text-align: center;
}


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   14. FOOTER
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer { background: #030810; border-top: 1px solid var(--border); padding: 40px 0 20px; position: relative; z-index: 1; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px; margin-bottom: 32px; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-logo  { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent); box-shadow: 0 0 24px var(--glow); }
.footer-brand h3 { font-family: var(--f-display); font-size: 1.15rem; font-weight: 700; letter-spacing: 3px; margin-bottom: 4px; }
.footer-tagline  { font-family: var(--f-ui); font-size: .78rem; letter-spacing: 3px; color: var(--muted); }

.footer-links h4 {
  font-family: var(--f-display); font-size: .78rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent2); margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links li { list-style: none; }
.footer-links a {
  font-family: var(--f-ui); font-size: .88rem; color: var(--muted);
  text-decoration: none; transition: color var(--dur);
}
.footer-links a:hover { color: var(--accent2); }

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}
.footer-socials a {
  color: var(--muted);
  transition: color var(--dur), transform var(--dur);
}
.footer-socials a:hover {
  color: var(--accent2);
  transform: translateY(-3px);
}

/* Founder Gallery Styles */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border);
  aspect-ratio: 1 / 1;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: grayscale(40%);
}
.gallery-item:hover .gallery-img {
  transform: scale(1.1);
  filter: grayscale(0%);
}

.footer-pillars { display: flex; gap: 18px; flex-wrap: wrap; }
.pillar {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 18px 22px; background: rgba(29,140,248,.06);
  border: 1px solid var(--border); border-radius: 12px;
  transition: transform var(--dur), box-shadow var(--dur);
}
.pillar:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(29,140,248,.15); }
.pillar-icon { font-size: 1.45rem; color: var(--accent2); filter: drop-shadow(0 0 8px var(--accent2)); }
.pillar strong { font-family: var(--f-display); font-size: .82rem; font-weight: 700; letter-spacing: 2px; }
.pillar small  { font-size: .7rem; color: var(--muted); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 22px; text-align: center; font-family: var(--f-ui); font-size: .8rem; color: var(--muted); }


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   15. ANIMATIONS / KEYFRAMES
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .6; transform: scale(1.4); }
}
@keyframes orbitSpin { to { transform: rotate(360deg); } }
@keyframes wheelScroll {
  0%   { opacity: 0; transform: translateY(0); }
  25%  { opacity: 1; }
  75%  { opacity: 0; transform: translateY(14px); }
  100% { opacity: 0; }
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%     { opacity: 0; }
}
@keyframes spinLoader { to { transform: rotate(360deg); } }


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   16. RESPONSIVE
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* Tablet â‰¤ 900px */
@media (max-width: 900px) {
  .about-grid   { grid-template-columns: 1fr; }
  .vm-grid      { grid-template-columns: 1fr; }
  .about-visual { margin-top: 20px; }

  .orbit-ring   { width: 310px; height: 310px; }
  .orbit-center { width: 100px; height: 100px; }
  .orbit-1      { width: 160px; height: 160px; }
  .orbit-2      { width: 222px; height: 222px; }
  .orbit-3      { width: 284px; height: 284px; }
  .orbit-dot    { width: 26px; height: 26px; transform: translateY(-13px); font-size: .58rem; }
}

/* Mobile â‰¤ 768px */
@media (max-width: 768px) {
  body                   { cursor: auto; }
  .cursor, .cursor-trail { display: none; }

  .hamburger { display: flex; }
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(5,10,20,.97); backdrop-filter: blur(20px);
    padding: 20px 24px; gap: 6px;
    border-bottom: 1px solid var(--border); z-index: 999;
  }
  .nav-links.open { display: flex; }

  .hero        { padding-top: 100px; padding-bottom: 100px; }
  .hero-title  { font-size: 3rem; }

  .hero-scroll-hint { bottom: 20px; }
  .scroll-hint-label{ font-size: .65rem; }
  .scroll-mouse     { width: 18px; height: 28px; }

  .why-grid        { grid-template-columns: repeat(2,1fr); }
  .services-grid   { grid-template-columns: 1fr; }
  .footer-top      { flex-direction: column; }
  .footer-pillars  { justify-content: center; }
  .footer-links    { width: 100%; }

  .founder-full-name { font-size: 1.1rem; }
  .founder-intro     { padding: 18px 20px; }

  .orbit-ring   { width: 270px; height: 270px; }
  .orbit-center { width: 84px;  height: 84px; }
  .orbit-1      { width: 130px; height: 130px; }
  .orbit-2      { width: 188px; height: 188px; }
  .orbit-3      { width: 246px; height: 246px; }
  .orbit-dot    { width: 24px; height: 24px; transform: translateY(-12px); font-size: .55rem; }
}

/* Founder card stacks below 560px */
@media (max-width: 560px) {
  .founder-intro {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 18px;
    gap: 14px;
  }
  .founder-details   { align-items: center; }
  .founder-photo     { width: 150px; height: 150px; }
  .founder-glow-ring { inset: -5px; }
}

/* Small mobile â‰¤ 480px */
@media (max-width: 480px) {
  .hero-title    { font-size: 2.4rem; }
  .hero-cta      { flex-direction: column; }
  .about-stats   { flex-direction: column; }
  .why-grid      { grid-template-columns: 1fr; }
  .vm-card       { padding: 28px 20px; }
  .footer-pillars{ flex-direction: column; align-items: center; }
  .scroll-hint-label { display: none; }

  .founder-intro     { padding: 16px 14px; gap: 12px; }
  .founder-photo     { width: 120px; height: 120px; }
  .founder-full-name { font-size: 1rem; }
  .founder-company   { font-size: .78rem; }
  .logo-text         { font-size: .84rem; letter-spacing: 1px; }

  .orbit-ring   { width: 240px; height: 240px; }
  .orbit-center { width: 76px;  height: 76px; }
  .orbit-1      { width: 110px; height: 110px; }
  .orbit-2      { width: 164px; height: 164px; }
  .orbit-3      { width: 218px; height: 218px; }
  .orbit-dot    { width: 22px; height: 22px; transform: translateY(-11px); font-size: .52rem; }
}

/* Very small mobile â‰¤ 360px */
@media (max-width: 360px) {
  .orbit-ring   { width: 200px; height: 200px; }
  .orbit-center { width: 64px;  height: 64px; }
  .orbit-1      { width: 80px;  height: 80px; }
  .orbit-2      { width: 130px; height: 130px; }
  .orbit-3      { width: 180px; height: 180px; }
  .orbit-dot    { width: 20px; height: 20px; transform: translateY(-10px); font-size: .5rem; }
  .logo-text    { font-size: .78rem; letter-spacing: .5px; }
}


/* Success Popup */
#successPopup {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: rgba(5,10,20,.75); backdrop-filter: blur(8px);
  opacity: 0; transition: opacity .4s var(--ease);
  padding: 20px;
}
#successPopup.show { opacity: 1; }

.popup-card {
  background: var(--bg-card);
  border: 1px solid rgba(16,185,129,.4);
  border-radius: 20px; padding: 48px 40px;
  max-width: 460px; width: 100%; text-align: center;
  box-shadow: 0 0 60px rgba(16,185,129,.15), 0 30px 80px rgba(0,0,0,.5);
  position: relative; overflow: hidden;
  transform: translateY(30px);
  transition: transform .4s var(--ease);
}
#successPopup.show .popup-card { transform: translateY(0); }

.popup-check {
  width: 72px; height: 72px; margin: 0 auto 24px;
}
.popup-check svg { width: 100%; height: 100%; }

.popup-title {
  font-family: var(--f-display);
  font-size: 1.4rem; font-weight: 700;
  color: #6ee7b7; letter-spacing: 1px; margin-bottom: 14px;
}

.popup-body {
  color: var(--muted); font-size: .95rem; line-height: 1.7;
  margin-bottom: 28px;
}
.popup-body strong { color: var(--white); }

.popup-btn {
  background: #10b981; color: #fff; border: none;
  padding: 12px 32px; border-radius: 8px;
  font-family: var(--f-ui); font-size: .95rem; font-weight: 700;
  letter-spacing: .5px; cursor: pointer;
  transition: background var(--dur), transform var(--dur);
}
.popup-btn:hover { background: #059669; transform: translateY(-2px); }

.popup-progress {
  position: absolute; bottom: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, #10b981, #00d4ff);
  animation: popupTimer 5s linear forwards;
  border-radius: 0 0 0 20px;
}
@keyframes popupTimer {
  from { width: 100%; }
  to   { width: 0; }
}

/* ── WhatsApp Float Button ── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  display: flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff;
  border-radius: 50px; padding: 13px 20px 13px 16px;
  text-decoration: none; z-index: 9999;
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
  font-family: var(--f-ui); font-weight: 700; font-size: .95rem;
  letter-spacing: .5px;
  animation: waPulse 2.5s ease-in-out infinite;
  transition: transform .25s, box-shadow .25s;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 40px rgba(37,211,102,.75);
}
.whatsapp-float svg { flex-shrink: 0; }
.wa-label { white-space: nowrap; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 28px rgba(37,211,102,.55); }
  50%      { box-shadow: 0 6px 48px rgba(37,211,102,.9); }
}
@media (max-width: 480px) {
  .whatsapp-float { bottom: 18px; right: 18px; padding: 12px 16px 12px 14px; font-size: .85rem; }
}
