:root {
  --y: #F5BC16;
  --c: #2DCCD3;
  --pk: #FF4D8D;
  --pu: #8B5CF6;
  --or: #FF6B35;
  --gr: #22C55E;
  --bg: #F7F5F0;
  --bg2: #FFFFFF;
  --dk: #0D0D18;
  --txt: #1a1a2e;
  --muted: #6B7280;
  --border: rgba(0,0,0,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--txt);
  overflow-x: hidden;
}


/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 5%;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,10,20,0.85);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s;
}
.logo-wrap { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-svg { width: 44px; height: 44px; }
.logo-txt { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.4rem; color: white; letter-spacing: -0.5px; }
.logo-txt span { font-family: 'Caveat', cursive; color: var(--y); font-size: 1.55rem; }
.nav-ul { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-ul a { font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; position: relative; padding: 4px 0; }
.nav-ul a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--y); transition: width 0.3s; }
.nav-ul a:hover, .nav-ul a.active { color: white; }
.nav-ul a:hover::after, .nav-ul a.active::after { width: 100%; }
.nav-ul a.nav-btn {
  background: linear-gradient(135deg, var(--y), var(--or)); color: var(--dk) !important;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.85rem;
  padding: 12px 28px; border-radius: 50px; text-decoration: none;
  transition: all 0.3s; box-shadow: 0 4px 20px rgba(245,188,22,0.35);
  display: inline-flex; align-items: center; justify-content: center; line-height: 1;
}
.nav-ul a.nav-btn::after { display: none !important; }
.nav-ul a.nav-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,188,22,0.5); }

/* MOBILE MENU BTN */
.menu-btn { display: none; cursor: pointer; flex-direction: column; gap: 6px; z-index: 1001; }
.menu-line { width: 30px; height: 2px; background: white; transition: 0.3s; border-radius: 2px; }
.menu-btn.active .menu-line:nth-child(1) { transform: translateY(8px) rotate(45deg); background: var(--y); }
.menu-btn.active .menu-line:nth-child(2) { opacity: 0; }
.menu-btn.active .menu-line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: var(--y); }

/* HERO COMMON */
.hero-basic {
  min-height: 60vh;
  padding: 160px 5% 80px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: #080810;
}
.hero-basic .hero-h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 5.5vw, 5.4rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -2px;
  margin-bottom: 26px; color: white; max-width: 900px; margin-left: auto; margin-right: auto;
}
.hero-basic .hero-h1 .highlight {
  background: linear-gradient(90deg, var(--c), var(--pu)); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-basic .hero-p { font-size: 1.15rem; color: rgba(255,255,255,0.6); line-height: 1.78; max-width: 600px; margin: 0 auto 38px; }

/* HOME HERO */
#hero {
  min-height: 100vh;
  padding: 130px 5% 80px;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: #080810;
}
.hero-mesh {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 800px 600px at 75% 10%, rgba(245,188,22,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 700px 600px at 5% 90%, rgba(45,204,211,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 500px 400px at 50% 60%, rgba(139,92,246,0.05) 0%, transparent 65%);
}
#hero-cv { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; opacity: 1; }
.global-particles { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; opacity: 0.85; }
.hero-cont {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  align-items: center; gap: 60px; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px; padding: 8px 18px;
  font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.85);
  letter-spacing: 0.5px; margin-bottom: 24px;
}
.bdot { width: 8px; height: 8px; background: var(--gr); border-radius: 50%; animation: pulse 2s infinite; box-shadow: 0 0 8px var(--gr); }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(0.6); } }

.hero-h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 5.5vw, 5.4rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -2.5px;
  margin-bottom: 26px;
}
.h1l1 { display: block; color: white; }
.h1l2 { display: block; background: linear-gradient(90deg, var(--y), var(--or)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.h1l3 { display: block; background: linear-gradient(90deg, var(--c), var(--pu)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-p { font-size: 1.05rem; color: rgba(255,255,255,0.5); line-height: 1.78; max-width: 480px; margin-bottom: 38px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  background: linear-gradient(135deg, var(--y), var(--or));
  color: var(--dk); font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: 0.95rem; padding: 15px 32px; border-radius: 50px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 24px rgba(245,188,22,0.4); transition: all 0.3s;
  position: relative; overflow: hidden;
}
.btn-primary::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.35), transparent 70%); transform: translateX(-100%) rotate(45deg); transition: transform 0.5s; }
.btn-primary:hover::before { transform: translateX(100%) rotate(45deg); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(245,188,22,0.5); color: var(--dk); }

.btn-ghost {
  color: white; font-family: 'Outfit', sans-serif; font-weight: 600;
  font-size: 0.95rem; padding: 14px 28px; border-radius: 50px;
  text-decoration: none; border: 2px solid rgba(255,255,255,0.25);
  display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s;
  background: transparent;
}
.btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.1); transform: translateY(-3px); color: white; }

.hstats { display: flex; gap: 40px; margin-top: 52px; }
.hs { text-align: left; }
.hs-n { font-family: 'Outfit', sans-serif; font-size: 2.4rem; font-weight: 800; letter-spacing: -1.5px; line-height: 1; }
.hs-n.y { background: linear-gradient(135deg, var(--y), var(--or)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hs-n.c { background: linear-gradient(135deg, var(--c), var(--pu)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hs-n.p { background: linear-gradient(135deg, var(--pk), var(--pu)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hs-l { font-size: 0.72rem; color: rgba(255,255,255,0.4); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* HERO RIGHT */
.hero-right { position: relative; height: 520px; }
.hero-img-main {
  position: absolute; top: 0; left: 20px; right: 20px; bottom: 0;
  border-radius: 24px; overflow: hidden;
  background: #0d0d1a;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.flt {
  position: absolute; background: rgba(20,20,35,0.95);
  border-radius: 18px; padding: 14px 20px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  z-index: 10; min-width: 150px;
  backdrop-filter: blur(10px);
}
.flt1 { top: -18px; right: -10px; animation: fa 4s ease-in-out infinite; }
.flt2 { bottom: 30px; left: -20px; animation: fb 5s 1.5s ease-in-out infinite; }
@keyframes fa { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes fb { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
.flt-ico { font-size: 1.4rem; margin-bottom: 4px; }
.flt-v { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px; }
.flt-l { font-size: 0.68rem; color: rgba(255,255,255,0.45); margin-top: 2px; }
.flt-badge { display: inline-block; font-size: 0.62rem; font-weight: 700; padding: 2px 8px; border-radius: 20px; margin-top: 4px; }

/* TICKER */
.ticker { background: linear-gradient(90deg, var(--dk) 0%, #1a1a38 50%, var(--dk) 100%); padding: 16px 0; overflow: hidden; }
.ticker-in { display: flex; animation: tick 22s linear infinite; width: max-content; }
.ti { display: flex; align-items: center; gap: 10px; padding: 0 28px; font-family: 'Outfit', sans-serif; font-size: 0.88rem; font-weight: 700; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }
.ti span { color: var(--y); font-size: 1.1rem; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* COMMON */
section { padding: 110px 5%; }
.mc { max-width: 1200px; margin: 0 auto; }
.sbadge {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 14px;
}
.sbadge.y { background: rgba(245,188,22,0.12); color: #c9900a; border: 1px solid rgba(245,188,22,0.3); }
.sbadge.c { background: rgba(45,204,211,0.1); color: #0f8a8f; border: 1px solid rgba(45,204,211,0.25); }
.sbadge.p { background: rgba(139,92,246,0.1); color: #6d28d9; border: 1px solid rgba(139,92,246,0.2); }
.sbadge.pk { background: rgba(255,77,141,0.1); color: #be185d; border: 1px solid rgba(255,77,141,0.2); }
.sbadge.g { background: rgba(34,197,94,0.1); color: #15803d; border: 1px solid rgba(34,197,94,0.2); }
.sbadge.dk { background: rgba(13,13,24,0.08); color: var(--dk); border: 1px solid rgba(13,13,24,0.12); }

.sh { font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 800; line-height: 1.1; letter-spacing: -2px; color: var(--dk); }
.sh .y { background: linear-gradient(135deg, var(--y), var(--or)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.sh .c { background: linear-gradient(135deg, var(--c), var(--pu)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.sh .p { background: linear-gradient(135deg, var(--pk), var(--pu)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* REUSABLE DARK MESH BACKGROUND */
.dark-mesh-bg { position: relative; overflow: hidden; background: var(--dk); color: white; }
.dark-mesh-bg::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 800px 800px at 20% 20%, rgba(245,188,22,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 800px 800px at 80% 80%, rgba(139,92,246,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 600px 600px at 50% 50%, rgba(45,204,211,0.04) 0%, transparent 60%);
}
.dark-mesh-bg > * { position: relative; z-index: 1; }

/* SERVICES EXPERIENCES & 3D BLOCKS (Light/Dark sections) */
.service-block { padding: 120px 5%; display: flex; align-items: center; overflow: hidden; position: relative; }
.service-block.dark { background: var(--dk); color: white; }
.service-block.dark::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 800px 800px at 15% 50%, rgba(245,188,22,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 800px 800px at 85% 50%, rgba(139,92,246,0.06) 0%, transparent 60%);
}
.service-block.light { background: white; color: var(--dk); }
.service-block-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; width: 100%; position: relative; z-index: 2; }
.service-block.rev .service-block-inner { grid-template-columns: 1fr 1fr; direction: rtl; }
.service-block.rev .sb-text, .service-block.rev .sb-img { direction: ltr; }

.sb-text .sh { margin-bottom: 24px; }
.service-block.dark .sb-text .sh { color: white; }
.sb-text p { font-size: 1.05rem; line-height: 1.7; margin-bottom: 30px; }
.service-block.dark .sb-text p { color: rgba(255,255,255,0.6); }
.service-block.light .sb-text p { color: var(--muted); }

.sb-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; }
.sbf-item { display: flex; align-items: flex-start; gap: 12px; }
.sbf-item .icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.service-block.dark .sbf-item .icon { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.service-block.light .sbf-item .icon { background: var(--bg); border: 1px solid var(--border); }
.sbf-item h4 { font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.sbf-item p { font-size: 0.8rem; line-height: 1.5; margin-bottom: 0; }

.sb-img { position: relative; border-radius: 24px; overflow: hidden; background: var(--dk); box-shadow: 0 40px 100px rgba(0,0,0,0.15); border: 1px solid rgba(255,255,255,0.1); aspect-ratio: 1; }
.sb-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s; }
.sb-img:hover img { transform: scale(1.03); }

/* AGENCY INTRO */
.agency-intro {
  background: linear-gradient(135deg, var(--dk) 0%, #1a1a38 100%);
  border-radius: 28px; padding: 52px 56px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  margin-bottom: 90px; position: relative; overflow: hidden;
}
.agency-intro::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(245,188,22,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.ai-left { position: relative; z-index: 1; }
.ai-left .sh { color: white; }
.ai-left p { color: rgba(255,255,255,0.55); font-size: 1rem; line-height: 1.78; margin-top: 18px; }
.ai-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; position: relative; z-index: 1; }
.ai-stat {
  background: rgba(255,255,255,0.07); border-radius: 18px; padding: 22px 20px;
  border: 1px solid rgba(255,255,255,0.1); transition: background 0.3s;
}
.ai-stat-n { font-family: 'Outfit', sans-serif; font-size: 2.2rem; font-weight: 800; letter-spacing: -1px; line-height: 1; }
.ai-stat:nth-child(1) .ai-stat-n { background: linear-gradient(135deg, var(--y), var(--or)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.ai-stat:nth-child(2) .ai-stat-n { background: linear-gradient(135deg, var(--c), var(--pu)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.ai-stat:nth-child(3) .ai-stat-n { background: linear-gradient(135deg, var(--pk), var(--pu)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.ai-stat:nth-child(4) .ai-stat-n { background: linear-gradient(135deg, var(--gr), var(--c)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.ai-stat-l { font-size: 0.75rem; color: rgba(255,255,255,0.4); font-weight: 500; margin-top: 6px; }

/* ABOUT SECTION & FOUNDERS */
.about-top { text-align: center; margin-bottom: 72px; }
.about-top p { color: var(--muted); font-size: 1.05rem; max-width: 580px; margin: 16px auto 0; line-height: 1.75; }

.founders-title { text-align: center; margin-bottom: 56px; }
.founders-title p { color: var(--muted); font-size: 1rem; margin-top: 14px; }
.founders-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.founder-card {
  background: var(--bg); border-radius: 28px;
  overflow: hidden; position: relative;
  border: 2px solid rgba(0,0,0,0.05);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.founder-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(13,13,24,0.12); border-color: transparent; }
.founder-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; z-index: 2; }
.founder-card:nth-child(1)::before { background: linear-gradient(90deg, var(--y), var(--or)); }
.founder-card:nth-child(2)::before { background: linear-gradient(90deg, var(--c), var(--pu)); }
.founder-card:nth-child(3)::before { background: linear-gradient(90deg, var(--pk), var(--pu)); }

.founder-photo { position: relative; height: 300px; overflow: hidden; background: #f0ece3; }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.5s; }
.founder-card:hover .founder-photo img { transform: scale(1.05); }

.photo-overlay {
  position: absolute; inset: 0;
  background: rgba(13,13,24,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.founder-photo:hover .photo-overlay { opacity: 1; }
.photo-overlay span { background: white; color: var(--dk); font-family: 'Outfit', sans-serif; font-size: 0.75rem; font-weight: 700; padding: 8px 20px; border-radius: 50px; }

.founder-info { padding: 28px 28px 32px; }
.founder-role-tag { display: inline-block; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; padding: 4px 12px; border-radius: 50px; margin-bottom: 12px; }
.founder-card:nth-child(1) .founder-role-tag { background: rgba(245,188,22,0.12); color: #c9900a; }
.founder-card:nth-child(2) .founder-role-tag { background: rgba(45,204,211,0.12); color: #0f8a8f; }
.founder-card:nth-child(3) .founder-role-tag { background: rgba(255,77,141,0.12); color: #be185d; }
.founder-name { font-family: 'Outfit', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--dk); letter-spacing: -0.5px; margin-bottom: 12px; }
.founder-bio { font-size: 0.88rem; color: var(--muted); line-height: 1.72; }

/* TEAM GROUP PHOTO */
#team-photo { background: white; padding: 90px 5%; }
.tp-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 70px; align-items: center; }
.tp-text .sh { margin-bottom: 20px; }
.tp-text p { color: var(--muted); font-size: 1rem; line-height: 1.78; margin-bottom: 32px; }
.tp-feats { display: flex; flex-direction: column; gap: 14px; }
.tp-feat { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-radius: 14px; background: var(--bg); border: 1px solid var(--border); transition: all 0.3s; }
.tp-feat:hover { border-color: var(--y); transform: translateX(6px); }
.tp-ico { font-size: 1.3rem; width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tp-feat h4 { font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--dk); margin-bottom: 2px; }
.tp-feat p { font-size: 0.8rem; color: var(--muted); line-height: 1.4; margin: 0; }

.team-img-box { border-radius: 28px; overflow: hidden; position: relative; height: 480px; border: 3px solid white; box-shadow: 0 20px 60px rgba(13,13,24,0.12); }
.team-img-box img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-corner-badge { position: absolute; bottom: 20px; left: 20px; background: white; border-radius: 14px; padding: 12px 18px; display: flex; align-items: center; gap: 10px; box-shadow: 0 8px 24px rgba(13,13,24,0.12); z-index: 5; }
.team-corner-badge .tc-ico { font-size: 1.5rem; }
.team-corner-badge .tc-v { font-family: 'Outfit', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--dk); }
.team-corner-badge .tc-l { font-size: 0.68rem; color: var(--muted); }


/* CLIENTS */
#clients { background: white; padding: 100px 0; overflow: hidden; }
.cl-head { text-align: center; padding: 0 5%; margin-bottom: 60px; }
.cl-head p { color: var(--muted); font-size: 0.95rem; margin-top: 14px; }
.cl-row { display: flex; gap: 16px; padding: 8px 0; overflow: hidden; margin-bottom: 16px; }
.cl-row-in { display: flex; gap: 16px; animation: slide 25s linear infinite; width: max-content; }
.cl-row.rev .cl-row-in { animation: slideR 30s linear infinite; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes slideR { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.cc { min-width: 200px; border-radius: 18px; padding: 18px 20px; display: flex; align-items: center; gap: 14px; border: 1.5px solid var(--border); background: var(--bg); flex-shrink: 0; transition: all 0.3s; }
.cc:hover { border-color: var(--y); box-shadow: 0 8px 24px rgba(245,188,22,0.12); }
.cc-logo { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 800; color: white; flex-shrink: 0; }
.cc-info h4 { font-family: 'Outfit', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--dk); margin-bottom: 2px; }
.cc-f { font-size: 0.7rem; font-weight: 700; }
.cc-n { font-size: 0.68rem; color: var(--muted); margin-top: 1px; }

/* PORTFOLIO GRID */
#work { background: var(--bg); padding: 110px 5%; }
.work-hdr { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
.port-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 280px 280px; gap: 16px; }
.port-grid .pi:nth-child(1), .port-grid .pi:nth-child(4) { grid-column: span 2; }
.pi { border-radius: 22px; overflow: hidden; position: relative; cursor: pointer; transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); background: white; border: 2px solid var(--border); box-shadow: 0 4px 20px rgba(13,13,24,0.05); }
.pi:hover { transform: scale(0.98); box-shadow: 0 20px 50px rgba(13,13,24,0.12); }
.pi-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pi-ov { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(13,13,24,0.82) 0%, rgba(13,13,24,0.2) 60%, transparent 100%); opacity: 0; transition: opacity 0.4s; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; }
.pi:hover .pi-ov { opacity: 1; }
.pi-ov h4 { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 800; color: white; margin-bottom: 4px; }
.pi-ov p { font-size: 0.75rem; color: rgba(255,255,255,0.65); margin-bottom: 10px; }
.pi-tag { display: inline-block; background: var(--y); color: var(--dk); font-size: 0.65rem; font-weight: 700; padding: 4px 14px; border-radius: 20px; }


/* RESULTS */
#results { background: var(--dk); padding: 100px 5%; position: relative; overflow: hidden; }
#res-cv { position: absolute; inset: 0; width: 100%; height: 100%; }
.res-in { position: relative; z-index: 2; text-align: center; }
.res-in .sh { color: white; }
.res-in .sh .y { background: linear-gradient(135deg, var(--y), var(--or)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.res-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; max-width: 900px; margin: 52px auto 0; }
.rc { border-radius: 22px; padding: 36px 20px; text-align: center; position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); transition: transform 0.3s; }
.rc:hover { transform: translateY(-8px); }
.rc::before { content: ''; position: absolute; inset: 0; opacity: 0.1; }
.rc1 { background: rgba(245,188,22,0.1); } .rc1::before { background: linear-gradient(135deg, var(--y), var(--or)); }
.rc2 { background: rgba(45,204,211,0.1); } .rc2::before { background: linear-gradient(135deg, var(--c), var(--pu)); }
.rc3 { background: rgba(255,77,141,0.1); } .rc3::before { background: linear-gradient(135deg, var(--pk), var(--pu)); }
.rc4 { background: rgba(34,197,94,0.1); } .rc4::before { background: linear-gradient(135deg, var(--gr), var(--c)); }
.rn { font-family: 'Outfit', sans-serif; font-size: 3.2rem; font-weight: 800; line-height: 1; letter-spacing: -2px; position: relative; z-index: 1; }
.rc1 .rn { background: linear-gradient(135deg, var(--y), var(--or)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.rc2 .rn { background: linear-gradient(135deg, var(--c), var(--pu)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.rc3 .rn { background: linear-gradient(135deg, var(--pk), var(--pu)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.rc4 .rn { background: linear-gradient(135deg, var(--gr), var(--c)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.rl { font-size: 0.82rem; color: rgba(255,255,255,0.5); font-weight: 600; margin-top: 8px; position: relative; z-index: 1; }

/* TESTIMONIALS */
#testi { background: var(--bg); }
.testi-hdr { text-align: center; margin-bottom: 56px; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.tc {
  background: white; border-radius: 24px; padding: 32px 28px;
  border: 2px solid transparent; transition: all 0.35s;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 20px rgba(13,13,24,0.06);
}
.tc::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.tc:nth-child(1)::before { background: linear-gradient(90deg, var(--y), var(--or)); }
.tc:nth-child(2)::before { background: linear-gradient(90deg, var(--c), var(--pu)); }
.tc:nth-child(3)::before { background: linear-gradient(90deg, var(--pk), var(--pu)); }
.tc:hover { transform: translateY(-8px); }
.tc:nth-child(1):hover { border-color: rgba(245,188,22,0.2); box-shadow: 0 20px 50px rgba(245,188,22,0.12); }
.tc:nth-child(2):hover { border-color: rgba(45,204,211,0.2); box-shadow: 0 20px 50px rgba(45,204,211,0.12); }
.tc:nth-child(3):hover { border-color: rgba(255,77,141,0.2); box-shadow: 0 20px 50px rgba(255,77,141,0.12); }
.tq { font-family: 'Caveat', cursive; font-size: 4.5rem; line-height: 0.8; margin-bottom: 10px; display: block; }
.tc:nth-child(1) .tq { color: var(--y); }
.tc:nth-child(2) .tq { color: var(--c); }
.tc:nth-child(3) .tq { color: var(--pk); }
.tt { font-size: 0.9rem; color: var(--muted); line-height: 1.72; margin-bottom: 22px; }
.ta { display: flex; align-items: center; gap: 12px; }
.tav { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 0.9rem; color: white; }
.tnm { font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--dk); }
.tbr { font-size: 0.72rem; color: var(--muted); }
.stars { font-size: 0.75rem; color: var(--y); margin-bottom: 4px; }

/* CTA */
#cta { background: var(--dk); padding: 130px 5%; text-align: center; position: relative; overflow: hidden; }
#cta-cv { position: absolute; inset: 0; width: 100%; height: 100%; }
.cta-in { position: relative; z-index: 2; }
.cta-h { font-family: 'Outfit', sans-serif; font-size: clamp(2.8rem, 5.5vw, 5rem); font-weight: 800; line-height: 1.1; letter-spacing: -2.5px; margin-bottom: 22px; color: white; }
.cta-h .y { background: linear-gradient(135deg, var(--y), var(--or)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.cta-h .c { background: linear-gradient(135deg, var(--c), var(--pu)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.cta-sub { font-size: 1.05rem; color: rgba(255,255,255,0.45); max-width: 480px; margin: 0 auto 48px; line-height: 1.7; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-cta-ghost { color: white; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.95rem; padding: 14px 30px; border-radius: 50px; text-decoration: none; border: 1.5px solid rgba(255,255,255,0.2); transition: all 0.3s; }
.btn-cta-ghost:hover { border-color: var(--c); color: var(--c); transform: translateY(-3px); }

/* FOOTER */
footer { background: #050508; padding: 70px 5% 28px; border-top: 1px solid rgba(255,255,255,0.05); }
.foot-g { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 50px; max-width: 1200px; margin: 0 auto; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.foot-p { font-size: 0.85rem; color: rgba(255,255,255,0.35); line-height: 1.7; margin: 16px 0 26px; }
.foot-soc { display: flex; gap: 10px; }
.sb { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: all 0.3s; }
.sb:hover { background: var(--y); color: var(--dk); border-color: var(--y); transform: translateY(-3px); }
.foot-col h5 { font-family: 'Outfit', sans-serif; font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.8); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1.2px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.foot-col ul a { font-size: 0.82rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.foot-col ul a:hover { color: var(--y); }
.foot-bot { max-width: 1200px; margin: 28px auto 0; display: flex; align-items: center; justify-content: space-between; font-size: 0.78rem; color: rgba(255,255,255,0.2); flex-wrap: wrap; gap: 10px; }
.foot-bot span { color: var(--y); }

/* REVEAL */
.rv { opacity: 0; transform: translateY(35px); transition: all 0.7s cubic-bezier(0.16,1,0.3,1); }
.rv.on { opacity: 1; transform: translateY(0); }
.rvl { opacity: 0; transform: translateX(-35px); transition: all 0.7s cubic-bezier(0.16,1,0.3,1); }
.rvl.on { opacity: 1; transform: translateX(0); }

/* RESPONSIVE SPLIT UTILITY */
.responsive-split { display: grid; grid-template-columns: 1fr 1fr; }

/* DENSE SERVICES GRID */
.dense-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 350px; gap: 0; width: 100%; }
.ds-item { position: relative; overflow: hidden; display: block; text-decoration: none; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.ds-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; opacity: 0.5; mix-blend-mode: luminosity; }
.ds-item:hover img { transform: scale(1.05); opacity: 0.8; mix-blend-mode: normal; }
.ds-content { position: absolute; inset: 0; padding: 40px; display: flex; flex-direction: column; justify-content: flex-end; z-index: 2; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 70%); }
.ds-item h3 { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 800; color: white; margin-bottom: 10px; transition: all 0.3s; }
.ds-item p { color: rgba(255,255,255,0.8); font-size: 1rem; line-height: 1.5; transform: translateY(20px); opacity: 0; transition: all 0.4s cubic-bezier(0.16,1,0.3,1); }
.ds-item:hover p { transform: translateY(0); opacity: 1; }
.ds-social { grid-column: span 2; grid-row: span 2; background: #2DCCD3; }
.ds-social h3 { font-size: 3.5rem; }
.ds-ads { background: #F5BC16; }
.ds-brand { background: #FF4D8D; }
.ds-web { background: #8B5CF6; }
.ds-video { background: #FF6B35; }
.ds-seo { background: #3B82F6; }

/* PREMIUM SERVICES GRID */
.premium-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.premium-services-grid.light-mode .psg-card {
    background: white; border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.premium-services-grid.light-mode .psg-card h3 { color: var(--dk); }
.premium-services-grid.light-mode .psg-card p { color: var(--muted); }
.premium-services-grid.light-mode .psg-card:hover { border-color: var(--y); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }

.psg-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 36px 30px;
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    position: relative;
    overflow: hidden;
    display: flex; flex-direction: column;
}
.psg-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.psg-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
}
.psg-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    line-height: 1.35;
}
.psg-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}
.psg-btn {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(34,197,94,0.15);
    color: #15803d;
    border: 1px solid rgba(34,197,94,0.3);
    text-decoration: none;
    align-self: flex-start;
    transition: all 0.2s;
}
.psg-card:hover .psg-btn { background: #15803d; color: white; }


/* LIGHT MESH BG (Subtle colorful blobs for empty spaces) */
.light-mesh-bg { position: relative; overflow: hidden; background: var(--bg); z-index: 1; }
.light-mesh-bg::before, .light-mesh-bg::after { content: ''; position: absolute; border-radius: 50%; filter: blur(140px); z-index: -1; pointer-events: none; }
.light-mesh-bg::before { top: -10%; left: -5%; width: 45%; height: 50%; background: rgba(245,188,22,0.18); }
.light-mesh-bg::after { bottom: -10%; right: -5%; width: 45%; height: 50%; background: rgba(45,204,211,0.18); }

/* DARK MESH BG (For dark sections, combining blobs and global particles) */
.dark-mesh-bg { position: relative; overflow: hidden; background: var(--dk); z-index: 1; }
.dark-mesh-bg::before, .dark-mesh-bg::after { content: ''; position: absolute; border-radius: 50%; filter: blur(140px); z-index: 0; pointer-events: none; }
.dark-mesh-bg::before { top: -10%; left: -5%; width: 45%; height: 50%; background: rgba(139,92,246,0.15); }
.dark-mesh-bg::after { bottom: -10%; right: -5%; width: 45%; height: 50%; background: rgba(45,204,211,0.15); }
.dark-mesh-bg .global-particles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; opacity: 0.8; pointer-events: none; }
.dark-mesh-bg > * { position: relative; z-index: 2; }

/* ABOUT HERO GRID */
.about-hero-grid { position: relative; z-index: 3; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 0 5%; }


@media(max-width:1024px) { 
  .founders-grid { grid-template-columns: 1fr 1fr; } 
  .founders-grid .founder-card:nth-child(3) { grid-column: span 2; } 
}
@media(max-width:900px) {
  .hero-cont { grid-template-columns: 1fr; } .hero-right { display: none; }
  .about-hero-grid, .responsive-split { grid-template-columns: 1fr; text-align: center; }
  .dense-services-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 250px; }
  .ds-social { grid-column: span 2; grid-row: span 1; }
  .ds-item h3 { font-size: 1.5rem !important; }
  .ds-content { padding: 20px; }
  .service-block-inner { grid-template-columns: 1fr; gap: 40px; }
  .service-block.rev .service-block-inner { grid-template-columns: 1fr; }
  .stacked-service { grid-template-columns: 1fr !important; gap: 30px !important; }
  .agency-intro { grid-template-columns: 1fr; } .founders-grid { grid-template-columns: 1fr; }
  .founders-grid .founder-card:nth-child(3) { grid-column: span 1; }
  .testi-grid { grid-template-columns: 1fr; }
  .res-grid { grid-template-columns: 1fr 1fr; }
  .foot-g { grid-template-columns: 1fr 1fr; }
  .port-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .port-grid .pi:nth-child(1), .port-grid .pi:nth-child(4) { grid-column: span 1; }
  .tp-inner { grid-template-columns: 1fr; }
  .team-img-box { height: auto; aspect-ratio: 4/3; }
  
  /* MOBILE NAV OVERLAY */
  .menu-btn { display: flex; }
  nav .nav-ul { 
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; 
    background: rgba(10,10,20,0.98); backdrop-filter: blur(20px); 
    display: flex; flex-direction: column; justify-content: center; align-items: center; 
    transform: translateY(-100%); transition: transform 0.4s cubic-bezier(0.77,0,0.175,1); 
    z-index: 999; 
  }
  nav .nav-ul.active { transform: translateY(0); }
  nav .nav-ul a { font-size: 2rem; }
  nav .nav-ul a.nav-btn { font-size: 1.2rem; padding: 14px 32px; }
}
@media(max-width:560px) { 
  .res-grid { grid-template-columns: 1fr 1fr; } 
  .port-grid { grid-template-columns: 1fr; } 
  .foot-g { grid-template-columns: 1fr; } 
  .ai-stats { grid-template-columns: 1fr 1fr; } 
  .sb-features { grid-template-columns: 1fr; }
  .dense-services-grid { grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .ds-social { grid-column: span 1; }
}




/* REFINED TESTIMONIAL CAROUSEL */
.tc-glass-wrap {
  background: var(--dk, #0D0D18);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 60px 80px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
  overflow: hidden;
}

.tc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  transition: all 0.3s ease;
}
.tc-arrow:hover { 
  background: var(--pk); 
  border-color: var(--pk);
  box-shadow: 0 0 20px rgba(190, 24, 93, 0.5);
  transform: translateY(-50%) scale(1.05); 
}
#tc-prev { left: 20px; }
#tc-next { right: 20px; }

.tc-slider { position: relative; width: 100%; min-height: 250px; display: flex; align-items: center; justify-content: center; }

.tc-slide {
  position: absolute;
  top: 50%; left: 0; width: 100%; height: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  transform: translateY(-50%) scale(0.95);
  z-index: 1;
}
.tc-slide.active {
  position: relative;
  top: auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  z-index: 5;
}

.tc-quote-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: Georgia, serif;
  font-size: 350px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  z-index: -1;
  pointer-events: none;
}
.tc-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: white !important;
  line-height: 1.5;
  letter-spacing: -0.5px;
  margin-bottom: 30px;
  max-width: 900px;
}
.tc-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--c), var(--pk));
  margin-bottom: 20px;
  border-radius: 2px;
}
.tc-author {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6) !important;
  font-weight: 400;
}
.tc-author strong { color: var(--y) !important; font-weight: 700; }

@media (max-width: 900px) {
  .tc-glass-wrap { padding: 40px 20px; }
  .tc-arrow { display: none; }
  .tc-text { font-size: 1.4rem; }
  .tc-quote-icon { font-size: 200px; }
  .tc-slider { min-height: 300px; }
}

/* GLOBAL WHATSAPP FLOATING BUTTON */
.global-wa-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 10000;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.global-wa-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}
@media (max-width: 768px) {
  .global-wa-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}
.wa-svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}
@media (max-width: 768px) {
  .wa-svg { width: 28px; height: 28px; }
}

/* INSTAGRAM GLOW BUTTON */
.ig-glow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.4) !important;
  text-shadow: 0 0 10px rgba(255,255,255,0.8);
  box-shadow: 0 0 20px rgba(255,255,255,0.2), inset 0 0 15px rgba(255,255,255,0.1) !important;
  transition: all 0.3s ease !important;
  font-weight: 700 !important;
  backdrop-filter: blur(10px);
}
.ig-glow-btn svg {
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.9));
}
.ig-glow-btn:hover {
  background: rgba(255,255,255,0.15) !important;
  border-color: #fff !important;
  box-shadow: 0 0 30px rgba(255,255,255,0.6), inset 0 0 20px rgba(255,255,255,0.4) !important;
  text-shadow: 0 0 15px #fff;
  transform: translateY(-3px);
}

/* GLOBAL 20S LEAD POPUP */
#global-lead-popup {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
#global-lead-popup.show {
    opacity: 1;
    visibility: visible;
}

.lead-popup-box {
    width: 90%;
    max-width: 800px;
    background: var(--dk);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 40px 100px rgba(0,0,0,0.8), inset 0 0 40px rgba(255,255,255,0.02);
    display: flex;
    flex-wrap: wrap; /* for mobile */
    position: relative;
    transform: translateY(40px) scale(0.95);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}
#global-lead-popup.show .lead-popup-box {
    transform: translateY(0) scale(1);
}

.lead-popup-close {
    position: absolute;
    top: 20px; right: 20px;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    z-index: 10;
    transition: background 0.3s;
}
.lead-popup-close:hover { background: rgba(255,20,80,0.8); }

.lpb-left {
    flex: 1;
    padding: 50px 40px;
    background: radial-gradient(circle at top left, rgba(139,92,246,0.15) 0%, transparent 80%), linear-gradient(135deg, #161616, #0a0a0a);
    display: flex; flex-direction: column; justify-content: center;
    position: relative;
}
.lpb-left h3 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    line-height: 1.1; margin-bottom: 20px;
    color: #ffffff !important;
}
.lpb-left p { color: rgba(255,255,255,0.9) !important; font-size: 1.1rem; line-height: 1.6; }

.lpb-right {
    flex: 1;
    padding: 50px 40px;
    background: #0d0d0d;
}
.lpb-form { display: flex; flex-direction: column; gap: 15px; }
.lpb-form input {
    width: 100%; padding: 15px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: white; font-family: inherit; font-size: 1rem;
    transition: border-color 0.3s, background 0.3s;
}
.lpb-form input:focus {
    outline: none; border-color: var(--pk); background: rgba(255,255,255,0.05);
}
.lpb-form button {
    margin-top: 10px; width: 100%;
}

@media (max-width: 768px) {
    .lead-popup-box { max-height: 90vh; overflow-y: auto; flex-direction: column; }
    .lpb-left { padding: 40px 30px 20px 30px; text-align: center; }
    .lpb-right { padding: 20px 30px 40px 30px; }
    .lpb-left h3 { font-size: 1.8rem; }
}
