/* ============================================================
   MONTQUE GLOBAL — style.css
   Full stylesheet for Montque Global Pvt. Ltd. website
============================================================ */

/* ── RESET & TOKENS ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
:root {
  --blue:#2563eb; --blue-d:#1d4ed8; --blue-l:#60a5fa;
  --purple:#7c3aed; --purple-l:#8b5cf6; --indigo:#4f46e5;
  --dark:#0f172a; --dark2:#1e293b; --gray:#64748b; --gray-l:#94a3b8;
  --border:#e2e8f0; --bg:#f0f4ff; --white:#fff;
  --green:#16a34a; --green-l:#22c55e;
  --orange:#d97706; --orange-l:#f59e0b;
  --teal:#0891b2; --teal-l:#06b6d4;
  --rose:#e11d48; --rose-l:#fb7185;
  --nav-h:70px;
  --radius:22px;
  --shadow-sm:0 1px 4px rgba(0,0,0,.06);
  --shadow-md:0 4px 18px rgba(0,0,0,.08);
  --shadow-lg:0 10px 40px rgba(0,0,0,.1);
}
html { scroll-behavior:smooth; font-size:16px; overflow-x:hidden; width:100%; }
body { font-family:'DM Sans',sans-serif; color:var(--dark); background:#fff; line-height:1.6; width:100%; overflow-x:hidden; }
a { text-decoration:none; color:inherit; }
button { cursor:pointer; font-family:inherit; border:none; line-height:1; }
ul, ol { list-style:none; }
img { display:block; max-width:100%; }

/* ── NAVBAR ── */
#nav {
  position:fixed; top:0; left:0; right:0; z-index:1000; height:var(--nav-h);
  background:rgba(255,255,255,.96); backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(226,232,240,.9);
  padding:0 56px; display:flex; align-items:center; justify-content:space-between;
  transition:box-shadow .3s; box-sizing:border-box; width:100%;
}
#nav.shadow { box-shadow:0 2px 24px rgba(0,0,0,.08); }
.nav-logo { display:flex; align-items:center; gap:12px; cursor:pointer; }
.nav-mark {
  width:44px; height:44px; border-radius:11px; flex-shrink:0;
  background:transparent;
  display:flex; align-items:center; justify-content:center;
}
.nav-logo-img { width:44px; height:44px; object-fit:contain; border-radius:8px; }
.nav-brand h3 { font-size:15px; font-weight:800; color:var(--blue); line-height:1.2; }
.nav-brand p { font-size:9.5px; color:var(--gray-l); letter-spacing:.15em; text-transform:uppercase; font-weight:600; }
.nav-links { display:flex; align-items:center; gap:2px; }
.nav-links a {
  padding:7px 17px; border-radius:22px; font-size:14px; font-weight:500; color:var(--gray);
  transition:all .2s;
}
.nav-links a:hover, .nav-links a.act { color:var(--dark); background:#f1f5f9; font-weight:600; }
.nav-cta {
  background:linear-gradient(135deg,#1e3a8a,#4f46e5,#7c3aed);
  color:#fff; padding:10px 24px; border-radius:24px;
  font-size:14px; font-weight:700; display:flex; align-items:center; gap:8px;
  transition:all .25s; box-shadow:0 4px 16px rgba(79,70,229,.38);
}
.nav-cta:hover { transform:translateY(-1px); box-shadow:0 8px 22px rgba(79,70,229,.5); }
.hamburger { display:none; flex-direction:column; gap:5px; background:none; padding:6px; cursor:pointer; }
.hamburger span { width:22px; height:2px; background:var(--dark); border-radius:2px; display:block; transition:.3s; }
.mob-menu {
  display:none; position:fixed; top:var(--nav-h); left:0; right:0; background:#fff;
  border-bottom:1px solid var(--border); padding:16px 20px; flex-direction:column; gap:4px;
  z-index:999; box-shadow:0 8px 40px rgba(0,0,0,.1);
}
.mob-menu.open { display:flex; }
.mob-menu a { padding:12px 16px; font-size:15px; font-weight:500; border-radius:10px; display:block; color:var(--dark); }
.mob-menu a:hover { background:#f1f5f9; }
.mob-cta { margin-top:8px; background:linear-gradient(135deg,#1e3a8a,#4f46e5); color:#fff !important; padding:13px 24px !important; border-radius:24px; text-align:center; font-weight:700 !important; }

/* ── HERO ── */
#home {
  width:100%; min-height:100vh; display:flex; flex-direction:column; align-items:center;
  justify-content:center; text-align:center;
  padding:calc(var(--nav-h) + 60px) 24px 64px;
  background:
    radial-gradient(ellipse 100% 70% at 50% -8%, rgba(219,234,254,.95) 0%, rgba(237,233,254,.6) 40%, transparent 68%),
    radial-gradient(ellipse 55% 45% at 5% 95%, rgba(219,234,254,.45) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 95% 85%, rgba(237,233,254,.38) 0%, transparent 60%), #fff;
  position:relative; overflow:hidden; box-sizing:border-box;
}
.hero-canvas { position:absolute; inset:0; pointer-events:none; z-index:0; }
.hero-inner { position:relative; z-index:1; max-width:980px; width:100%; margin:0 auto; display:flex; flex-direction:column; align-items:center; }
.hero-logo-img { width:220px; height:auto; object-fit:contain; margin:0 auto 16px; filter:drop-shadow(0 6px 24px rgba(14,165,233,.3)); }
.hero-name { font-size:clamp(14px, 2vw, 22px); font-weight:800; color:var(--blue); letter-spacing:-.02em; margin-bottom:5px; white-space:nowrap; }
.hero-sub-tag { font-size:10.5px; letter-spacing:.18em; color:var(--gray-l); text-transform:uppercase; font-weight:600; margin-bottom:28px; }
.hero-badge {
  display:inline-flex; align-items:center; gap:10px;
  border:1.5px solid rgba(99,102,241,.22); border-radius:26px;
  padding:8px 22px; font-size:12px; font-weight:700; letter-spacing:.09em;
  color:var(--indigo); background:rgba(238,242,255,.75); margin-bottom:36px;
  backdrop-filter:blur(8px); animation:pulse-badge 3s ease-in-out infinite;
}
@keyframes pulse-badge { 0%,100%{box-shadow:0 0 0 0 rgba(99,102,241,.15)} 50%{box-shadow:0 0 0 8px rgba(99,102,241,0)} }
.hero-h1 {
  font-family:'Playfair Display',Georgia,serif;
  font-size:clamp(50px,8vw,100px); font-weight:900; line-height:1; color:var(--dark);
  letter-spacing:-.03em; margin-bottom:4px;
}
.hero-grad {
  font-family:'Playfair Display',Georgia,serif;
  font-size:clamp(50px,8vw,100px); font-weight:900; line-height:1.07;
  background:linear-gradient(90deg,#3b82f6 0%,#7c3aed 48%,#ec4899 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  letter-spacing:-.03em; margin-bottom:30px;
  background-size:200% 200%; animation:gradshift 5s linear infinite;
}
/* gradshift keyframe defined in animations.css */
.hero-desc { font-size:17px; color:var(--gray); line-height:1.65; margin-bottom:40px; max-width:640px; margin-left:auto; margin-right:auto; }
.hero-desc span { color:var(--blue); font-weight:700; }
.hero-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-bottom:56px; }
.btn-main {
  background:linear-gradient(135deg,#4f46e5,#7c3aed); color:#fff; padding:15px 32px;
  border-radius:34px; font-size:15px; font-weight:700; display:flex; align-items:center; gap:10px;
  transition:all .25s; box-shadow:0 4px 22px rgba(79,70,229,.34); position:relative; overflow:hidden;
}
.btn-main::after { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(255,255,255,.15),transparent); opacity:0; transition:opacity .25s; }
.btn-main:hover { transform:translateY(-2px); box-shadow:0 9px 30px rgba(79,70,229,.48); }
.btn-main:hover::after { opacity:1; }
.btn-outline {
  background:rgba(255,255,255,.88); color:var(--dark); border:1.5px solid var(--border);
  padding:15px 32px; border-radius:34px; font-size:15px; font-weight:700;
  display:flex; align-items:center; gap:8px; transition:all .25s; backdrop-filter:blur(8px);
}
.btn-outline:hover { background:#fff; border-color:#cbd5e1; box-shadow:var(--shadow-md); }
.trusted { display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:center; }
.trusted-lbl { font-size:13px; color:var(--gray-l); font-weight:500; }
.cpill {
  background:#fff; border:1px solid var(--border); border-radius:22px;
  padding:5px 15px; font-size:12px; font-weight:600; color:var(--dark2);
  box-shadow:var(--shadow-sm); transition:all .2s;
}
.cpill:hover { transform:translateY(-2px); box-shadow:0 6px 16px rgba(0,0,0,.08); }

/* ── STATS ── */
.stats-section { background:#fff; padding:52px 56px 0; width:100%; box-sizing:border-box; }
.stats-inner {
  display:grid; grid-template-columns:repeat(4,1fr);
  border:1.5px solid var(--border); border-radius:18px; overflow:hidden;
  box-shadow:var(--shadow-md); max-width:700px; margin:0 auto;
}
.stat { background:#fff; padding:30px 20px; text-align:center; position:relative; }
.stat:not(:last-child)::after { content:''; position:absolute; right:0; top:22%; bottom:22%; width:1px; background:var(--border); }
.stat-n { font-size:32px; font-weight:900; line-height:1.1; margin-bottom:5px; font-variant-numeric:tabular-nums; }
.stat-n.cb{color:var(--blue)}.stat-n.cg{color:var(--green)}.stat-n.cp{color:var(--purple)}.stat-n.co{color:var(--orange)}
.stat-l { font-size:12px; color:var(--gray-l); font-weight:500; }

/* Ticker */
.ticker-section { overflow:hidden; padding:26px 0 56px; position:relative; background:#fff; }
.ticker-section::before, .ticker-section::after { content:''; position:absolute; top:0; bottom:0; width:150px; z-index:2; pointer-events:none; }
.ticker-section::before { left:0; background:linear-gradient(90deg,#fff,transparent); }
.ticker-section::after { right:0; background:linear-gradient(-90deg,#fff,transparent); }
.ticker-t { display:flex; gap:44px; width:max-content; animation:ticker 32s linear infinite; }
.ticker-t:hover { animation-play-state:paused; }
.ti { font-size:13px; font-weight:600; color:var(--gray); display:flex; align-items:center; gap:12px; white-space:nowrap; }
.tdot { width:5px; height:5px; border-radius:50%; background:var(--blue-l); flex-shrink:0; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── SHARED ── */
section { padding:96px 56px; width:100%; box-sizing:border-box; }
.sec-badge {
  display:inline-flex; align-items:center; justify-content:center;
  border:1.5px solid var(--border); border-radius:22px; padding:5px 16px;
  font-size:10.5px; font-weight:800; letter-spacing:.13em; text-transform:uppercase;
  color:var(--dark2); background:#f8fafc; margin-bottom:18px;
}
.sec-h { text-align:center; margin-bottom:56px; }
.sec-h h2 { font-family:'Playfair Display',serif; font-size:clamp(32px,4vw,52px); font-weight:900; line-height:1.15; margin-bottom:16px; }
.sec-h p { font-size:16px; color:var(--gray); max-width:520px; margin:0 auto; line-height:1.65; }
.grad { background:linear-gradient(90deg,#2563eb,#7c3aed); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }

/* Arrow buttons (sliders) */
.arrow-btn {
  position:absolute; top:50%; transform:translateY(-50%);
  width:46px; height:46px; border-radius:50%; background:#fff;
  border:1.5px solid var(--border); display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-md); transition:all .22s; z-index:5; cursor:pointer;
}
.arrow-btn:hover { background:#f8fafc; transform:translateY(-50%) scale(1.08); border-color:#cbd5e1; }
.arrow-btn.lft { left:-23px; }
.arrow-btn.rgt { right:-23px; }
.arrow-btn svg { width:19px; height:19px; color:var(--dark); stroke-width:2.5; }
.dots { display:flex; gap:8px; justify-content:center; margin:22px 0; }
.dot { width:8px; height:8px; border-radius:4px; background:#e2e8f0; border:none; cursor:pointer; transition:all .35s; padding:0; }
.dot.on { width:26px; background:var(--indigo); }

/* ── SERVICES ── */
#services { background:#fff; }
.svc-wrap { position:relative; margin-bottom:28px; }
.svc-clip { overflow:hidden; border-radius:22px; }
.svc-track { display:flex; transition:transform .5s cubic-bezier(.4,0,.2,1); will-change:transform; }
.svc-slide {
  min-width:100%; border-radius:22px; padding:56px 64px;
  display:grid; grid-template-columns:200px 1fr; gap:64px; align-items:center;
  border:1.5px solid transparent;
}
.ss-blue{background:#eff6ff;border-color:#bfdbfe} .ss-purple{background:#f5f3ff;border-color:#ddd6fe}
.ss-teal{background:#f0fdfa;border-color:#99f6e4} .ss-green{background:#f0fdf4;border-color:#bbf7d0}
.ss-orange{background:#fffbeb;border-color:#fde68a} .ss-rose{background:#fff1f2;border-color:#fecdd3}
.svc-left { text-align:center; }
.svc-iconbox {
  width:100px; height:100px; border-radius:22px; background:#fff;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 18px; box-shadow:0 4px 22px rgba(0,0,0,.08); transition:transform .35s ease;
}
.svc-slide:hover .svc-iconbox { transform:translateY(-6px) scale(1.05) rotate(-3deg); }
.svc-iconbox svg { width:48px; height:48px; }
.svc-ach { font-size:22px; font-weight:900; margin-bottom:4px; }
.svc-achl { font-size:12px; color:var(--gray); font-weight:500; }
.svc-num { font-size:11px; font-weight:800; letter-spacing:.13em; text-transform:uppercase; margin-bottom:14px; }
.svc-slide h3 { font-family:'Playfair Display',serif; font-size:clamp(26px,3vw,38px); font-weight:900; margin-bottom:18px; line-height:1.15; }
.svc-slide p { font-size:15px; color:var(--gray); line-height:1.78; margin-bottom:30px; max-width:500px; }
.btn-svc {
  display:inline-flex; align-items:center; gap:10px; padding:14px 30px;
  border-radius:32px; font-size:14px; font-weight:700; color:#fff;
  transition:all .25s; box-shadow:0 4px 18px rgba(0,0,0,.14); position:relative; overflow:hidden;
}
.btn-svc::after { content:''; position:absolute; inset:0; background:rgba(255,255,255,.12); opacity:0; transition:.25s; }
.btn-svc:hover { transform:translateY(-2px); box-shadow:0 9px 26px rgba(0,0,0,.22); }
.btn-svc:hover::after { opacity:1; }
.svc-tabs {
  display:grid; grid-template-columns:repeat(6,1fr); margin-top:8px;
  border:1.5px solid var(--border); border-radius:14px; overflow:hidden;
}
.svc-tab {
  padding:16px 8px; text-align:center; cursor:pointer; background:#f8fafc;
  font-size:11px; font-weight:700; color:var(--gray-l);
  display:flex; flex-direction:column; align-items:center; gap:8px;
  transition:all .22s; border:none; font-family:inherit;
}
.svc-tab:not(:last-child) { border-right:1px solid var(--border); }
.svc-tab:hover { background:#f1f5f9; color:var(--dark2); }
.svc-tab.on { background:#fff; color:var(--indigo); box-shadow:inset 0 -3px 0 var(--indigo); }
.svc-tab svg { width:22px; height:22px; stroke-width:1.8; }

/* ── ABOUT ── */
#about { background:var(--bg); }
.about-g { display:grid; grid-template-columns:1fr 1fr; gap:84px; align-items:center; }
.about-vis { position:relative; }
.about-scene {
  width:100%; aspect-ratio:4/5; border-radius:24px; overflow:hidden;
  background:linear-gradient(160deg,#0f172a 0%,#1e1b4b 45%,#1e3a8a 100%);
  position:relative; min-height:480px;
}
.scene-grid {
  position:absolute; inset:0;
  background:repeating-linear-gradient(0deg,rgba(99,102,241,.04) 0,rgba(99,102,241,.04) 1px,transparent 1px,transparent 48px),
             repeating-linear-gradient(90deg,rgba(99,102,241,.04) 0,rgba(99,102,241,.04) 1px,transparent 1px,transparent 48px);
}
.scene-ceil { position:absolute; top:0; left:0; right:0; height:32%; background:linear-gradient(180deg,rgba(15,23,42,.85),transparent); }
.scene-floor { position:absolute; bottom:0; left:0; right:0; height:28%; background:linear-gradient(0deg,rgba(99,102,241,.1),transparent); }
.s-light { position:absolute; top:5%; width:1.5px; height:60%; background:linear-gradient(180deg,rgba(186,230,253,.45),transparent); }
.s-light:nth-child(3){left:25%} .s-light:nth-child(4){left:50%} .s-light:nth-child(5){left:75%}
.glow1 { position:absolute; top:28%; left:50%; transform:translate(-50%,-50%); width:290px; height:190px; border-radius:50%; background:radial-gradient(circle,rgba(99,102,241,.28),transparent 70%); }
.glow2 { position:absolute; top:65%; left:28%; width:160px; height:100px; border-radius:50%; background:radial-gradient(circle,rgba(56,189,248,.17),transparent 70%); }
.scan { position:absolute; left:0; right:0; height:2px; background:linear-gradient(90deg,transparent,rgba(99,102,241,.55),transparent); animation:scan 4.5s ease-in-out infinite; }
@keyframes scan { 0%,100%{top:18%} 50%{top:72%} }
.desks { position:absolute; bottom:17%; left:50%; transform:translateX(-50%); display:flex; gap:7px; align-items:flex-end; }
.desk { border:1px solid rgba(255,255,255,.12); border-radius:4px; padding:4px; background:rgba(255,255,255,.05); }
.dscr { border-radius:2px; background:linear-gradient(135deg,rgba(99,102,241,.55),rgba(139,92,246,.35)); }
.desk.d1{width:62px} .desk.d1 .dscr{height:38px} .desk.d2{width:80px} .desk.d2 .dscr{height:50px} .desk.d3{width:62px} .desk.d3 .dscr{height:38px} .desk.d4{width:80px} .desk.d4 .dscr{height:50px} .desk.d5{width:62px} .desk.d5 .dscr{height:38px}
.ppl { position:absolute; bottom:8%; left:50%; transform:translateX(-50%); display:flex; gap:16px; }
.pp { background:rgba(255,255,255,.13); border-radius:12px 12px 0 0; }
.pp1{width:13px;height:30px} .pp2{width:13px;height:40px} .pp3{width:13px;height:44px} .pp4{width:13px;height:36px} .pp5{width:13px;height:28px}
.float-card { position:absolute; background:#fff; border-radius:14px; padding:14px 20px; box-shadow:0 10px 36px rgba(0,0,0,.14); }
.float-card.fc-tl { top:-18px; left:-18px; animation:float 5s 1s ease-in-out infinite; }
.float-card.fc-br { bottom:36px; right:-24px; animation:float 5s .5s ease-in-out infinite; }
.fc-n { font-size:25px; font-weight:900; line-height:1.1; }
.fc-l { font-size:11px; color:var(--gray-l); font-weight:500; margin-top:2px; }
.fc-purple{color:var(--purple)} .fc-blue{color:var(--blue)}
.about-txt {}
.ab-badge { display:inline-flex; border:1.5px solid var(--border); border-radius:22px; padding:5px 16px; font-size:10.5px; font-weight:800; letter-spacing:.13em; color:var(--dark2); background:#fff; margin-bottom:18px; text-transform:uppercase; }
.about-txt h2 { font-family:'Playfair Display',serif; font-size:clamp(30px,3.5vw,44px); font-weight:900; line-height:1.2; margin-bottom:20px; }
.about-txt > p { font-size:15px; color:var(--gray); line-height:1.8; margin-bottom:32px; }
.checks { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:36px; }
.ck { display:flex; align-items:flex-start; gap:10px; font-size:13.5px; font-weight:500; line-height:1.4; }
.ck-ic { width:20px; height:20px; border-radius:50%; background:#dbeafe; flex-shrink:0; display:flex; align-items:center; justify-content:center; margin-top:1px; }
.ck-ic svg { width:11px; height:11px; stroke:var(--blue); stroke-width:2.5; fill:none; }
.btn-partner {
  background:linear-gradient(135deg,#1e3a8a,#4f46e5); color:#fff;
  padding:14px 30px; border-radius:34px; font-size:15px; font-weight:700;
  transition:all .25s; box-shadow:0 4px 18px rgba(30,58,138,.26); display:inline-flex; align-items:center; gap:8px;
}
.btn-partner:hover { transform:translateY(-2px); box-shadow:0 9px 26px rgba(30,58,138,.38); }

/* ── TEAM ── */
#team { background:#fff; }
.team-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.team-grid-single { display:flex; justify-content:center; }
.team-grid-single .team-card-featured { width:100%; max-width:420px; border:2px solid rgba(99,102,241,.25); box-shadow:0 8px 40px rgba(79,70,229,.12); }
.team-grid-single .team-card-featured .team-card-img { height:300px; }
.team-grid-single .team-card-featured .team-avatar { width:140px; height:140px; }
.team-grid-single .team-card-featured .team-name { font-size:22px; }
.team-grid-single .team-card-featured .team-title { font-size:14px; }
.team-grid-single .team-card-featured .team-bio { font-size:14px; }
.team-card {
  background:#fff; border:1.5px solid var(--border); border-radius:24px;
  overflow:hidden; transition:all .35s; position:relative;
}
.team-card:hover { transform:translateY(-8px); box-shadow:0 20px 60px rgba(0,0,0,.12); border-color:transparent; }
.team-card-img {
  height:260px; position:relative; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
}
.team-avatar-bg { width:100%; height:100%; position:absolute; inset:0; }
.team-avatar { position:relative; z-index:1; width:120px; height:120px; border-radius:50%; border:4px solid rgba(255,255,255,.9); overflow:hidden; box-shadow:0 8px 24px rgba(0,0,0,.18); transition:transform .35s; }
.team-card:hover .team-avatar { transform:scale(1.07); }
.team-avatar svg { width:100%; height:100%; }
.team-badge {
  position:absolute; bottom:16px; left:50%; transform:translateX(-50%);
  background:rgba(255,255,255,.95); backdrop-filter:blur(8px);
  border-radius:20px; padding:4px 14px; font-size:11px; font-weight:700;
  color:var(--indigo); white-space:nowrap; border:1px solid rgba(99,102,241,.2);
}
.team-info { padding:24px; text-align:center; }
.team-name { font-size:18px; font-weight:800; margin-bottom:4px; }
.team-title { font-size:13px; color:var(--purple); font-weight:600; margin-bottom:12px; }
.team-bio { font-size:13px; color:var(--gray); line-height:1.65; margin-bottom:18px; }
.team-socials { display:flex; justify-content:center; gap:10px; }
.team-soc {
  width:34px; height:34px; border-radius:8px; background:#f1f5f9;
  border:1px solid var(--border); display:flex; align-items:center; justify-content:center;
  transition:all .22s; cursor:pointer;
}
.team-soc:hover { background:var(--indigo); border-color:var(--indigo); }
.team-soc:hover svg { stroke:#fff; }
.team-soc svg { width:15px; height:15px; stroke:var(--gray); fill:none; stroke-width:2; }
/* Gradient backgrounds for team cards */
.tg-1 { background:linear-gradient(135deg,#1e1b4b,#4f46e5,#7c3aed); }
.tg-2 { background:linear-gradient(135deg,#0f172a,#1e3a8a,#2563eb); }
.tg-3 { background:linear-gradient(135deg,#0f2027,#134e5e,#0891b2); }
.tg-4 { background:linear-gradient(135deg,#14532d,#16a34a,#4ade80); }

/* ── WHY CHOOSE ── */
#why { background:var(--bg); width:100%; box-sizing:border-box; }
.why-g {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  width:100%;
  box-sizing:border-box;
}
.why-card {
  background:#fff; border:1.5px solid var(--border); border-radius:22px;
  padding:32px 28px; position:relative; overflow:hidden; transition:all .3s;
  box-shadow: 0 2px 12px rgba(0,0,0,.04); box-sizing:border-box;
}
.why-card::before { content:''; position:absolute; inset:0; border-radius:22px; background:linear-gradient(135deg,rgba(99,102,241,.03),transparent); opacity:0; transition:.3s; }
.why-card:hover { transform:translateY(-6px); box-shadow:0 18px 56px rgba(0,0,0,.1); border-color:rgba(99,102,241,.2); }
.why-card:hover::before { opacity:1; }
.why-card.hl { background:linear-gradient(148deg,#f0fdfa,#ecfeff); border-color:#99f6e4; }
.wc-no { position:absolute; top:20px; right:20px; font-size:11px; font-weight:800; color:rgba(226,232,240,.9); }
.wc-ic { width:54px; height:54px; border-radius:15px; display:flex; align-items:center; justify-content:center; margin-bottom:20px; transition:transform .3s; }
.why-card:hover .wc-ic { transform:scale(1.1) rotate(-5deg); }
.wc-ic svg { width:28px; height:28px; stroke-width:2; }
.ic-y{background:#fef9c3} .ic-b{background:#dbeafe} .ic-g{background:#dcfce7} .ic-p{background:#f3e8ff} .ic-t{background:#ccfbf1} .ic-r{background:#ffe4e6}
.why-card h3 { font-size:18px; font-weight:700; margin-bottom:10px; }
.why-card > p { font-size:13.5px; color:var(--gray); line-height:1.68; margin-bottom:26px; }
.prog-hd { display:flex; justify-content:space-between; align-items:center; margin-bottom:8px; }
.prog-lbl { font-size:11.5px; font-weight:500; color:var(--gray); }
.prog-val { font-size:13px; font-weight:900; }
.pv-y{color:var(--orange)}.pv-b{color:var(--blue)}.pv-g{color:var(--green)}.pv-p{color:var(--purple)}.pv-t{color:var(--teal)}.pv-r{color:var(--rose)}
.prog-bar { height:5px; border-radius:3px; background:#f1f5f9; overflow:hidden; }
.prog-fill { height:100%; border-radius:3px; width:0%; transition:width 1.4s cubic-bezier(.4,0,.2,1); }
.pf-y{background:linear-gradient(90deg,#f59e0b,#d97706)} .pf-b{background:linear-gradient(90deg,#60a5fa,#2563eb)}
.pf-g{background:linear-gradient(90deg,#4ade80,#16a34a)} .pf-p{background:linear-gradient(90deg,#a78bfa,#7c3aed)}
.pf-t{background:linear-gradient(90deg,#2dd4bf,#0891b2)} .pf-r{background:linear-gradient(90deg,#fb7185,#e11d48)}

/* ── CTA BANNER ── */
.cta-box {
  background:linear-gradient(135deg,#4f46e5 0%,#7c3aed 55%,#0ea5e9 100%);
  border-radius:22px; padding:44px 60px;
  display:flex; align-items:center; justify-content:space-between; gap:32px;
  margin-top:56px; position:relative; overflow:hidden;
}
.cta-box::before { content:''; position:absolute; top:-50%; right:-3%; width:320px; height:320px; border-radius:50%; background:rgba(255,255,255,.06); }
.cta-box::after { content:''; position:absolute; bottom:-40%; left:10%; width:220px; height:220px; border-radius:50%; background:rgba(255,255,255,.04); }
.cta-box h3 { font-family:'Playfair Display',serif; font-size:28px; font-weight:900; color:#fff; margin-bottom:9px; position:relative; }
.cta-box p { font-size:14px; color:rgba(255,255,255,.82); position:relative; }
.btn-cta-w { background:#fff; color:var(--dark); padding:14px 28px; border-radius:30px; font-size:14px; font-weight:800; white-space:nowrap; transition:all .22s; flex-shrink:0; position:relative; }
.btn-cta-w:hover { transform:translateY(-2px); box-shadow:0 8px 26px rgba(0,0,0,.18); }

/* ── PORTFOLIO ── */
#portfolio { background:var(--bg); }
.port-wrap { position:relative; }
.port-clip { overflow:hidden; border-radius:24px; }
.port-track { display:flex; transition:transform .5s cubic-bezier(.4,0,.2,1); will-change:transform; }
.port-slide {
  min-width:100%; display:grid; grid-template-columns:55% 1fr;
  background:#fff; border-radius:24px; overflow:hidden;
  border:1.5px solid var(--border); box-shadow:var(--shadow-md);
}
.port-img { position:relative; overflow:hidden; min-height:440px; }
.port-img img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.port-slide:hover .port-img img { transform:scale(1.05); }
.port-cat { position:absolute; top:22px; left:22px; color:#fff; padding:6px 16px; border-radius:20px; font-size:11px; font-weight:800; letter-spacing:.09em; text-transform:uppercase; z-index:2; }
.port-no { position:absolute; bottom:22px; left:26px; font-size:84px; font-weight:900; color:rgba(255,255,255,.14); line-height:1; font-family:'Playfair Display',serif; z-index:2; }
.port-info { padding:52px 44px; display:flex; flex-direction:column; justify-content:center; }
.proj-n { font-size:11px; font-weight:800; color:var(--purple); letter-spacing:.11em; text-transform:uppercase; margin-bottom:14px; }
.port-info h3 { font-family:'Playfair Display',serif; font-size:clamp(24px,2.8vw,32px); font-weight:900; margin-bottom:16px; line-height:1.2; }
.port-info > p { font-size:14px; color:var(--gray); line-height:1.75; margin-bottom:24px; }
.ptags { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:30px; }
.ptag { background:#f1f5f9; color:var(--dark2); border:1px solid var(--border); padding:4px 14px; border-radius:16px; font-size:12px; font-weight:600; }
.btn-case { display:inline-flex; align-items:center; gap:9px; background:var(--purple); color:#fff; padding:12px 24px; border-radius:24px; font-size:14px; font-weight:700; transition:all .22s; align-self:flex-start; }
.btn-case:hover { background:var(--purple-l); transform:translateY(-2px); }
.port-thumbs { display:flex; gap:12px; justify-content:center; margin-top:24px; }
.pthumb { width:80px; height:54px; border-radius:9px; overflow:hidden; cursor:pointer; border:2.5px solid transparent; transition:all .22s; opacity:.55; }
.pthumb:hover { opacity:.82; }
.pthumb.on { opacity:1; border-color:var(--purple); }
.pthumb img { width:100%; height:100%; object-fit:cover; }

/* ── PRICING ── */
#pricing { background:#fff; }
.price-toggle { display:flex; align-items:center; gap:12px; justify-content:center; margin-top:32px; }
.ptb { padding:9px 26px; border-radius:26px; font-size:14px; font-weight:700; cursor:pointer; border:1.5px solid var(--border); background:#f8fafc; color:var(--gray); transition:all .22s; font-family:inherit; }
.ptb.on { background:var(--dark); color:#fff; border-color:var(--dark); }
.disc { background:#dcfce7; color:var(--green); border-radius:12px; padding:3px 11px; font-size:11px; font-weight:800; }
.price-g { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:56px; }
.pc { background:#fff; border:1.5px solid var(--border); border-radius:24px; padding:36px 32px; position:relative; transition:all .3s; }
.pc:hover { transform:translateY(-5px); box-shadow:0 14px 50px rgba(0,0,0,.1); }
.pc.pop { border-color:var(--purple-l); box-shadow:0 8px 40px rgba(124,58,237,.15); }
.pop-badge { position:absolute; top:20px; right:20px; background:var(--purple); color:#fff; padding:4px 13px; border-radius:13px; font-size:11px; font-weight:800; display:flex; align-items:center; gap:6px; }
.pc-ico { width:48px; height:48px; border-radius:13px; background:#f1f5f9; display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.pc-ico svg { width:24px; height:24px; stroke-width:2; }
.pop .pc-ico { background:#f5f3ff; }
.pc-name { font-size:21px; font-weight:800; margin-bottom:22px; }
.pc-price { margin-bottom:10px; }
.pc-amt { font-size:44px; font-weight:900; line-height:1; }
.pc-per { font-size:14px; color:var(--gray); font-weight:500; }
.pc-desc { font-size:13px; color:var(--gray); margin-bottom:24px; padding-bottom:24px; border-bottom:1px solid var(--border); line-height:1.55; }
.pc-feats { margin-bottom:34px; display:flex; flex-direction:column; gap:10px; }
.pc-feat { display:flex; align-items:flex-start; gap:10px; font-size:13.5px; }
.pchk { width:19px; height:19px; border-radius:50%; background:#dcfce7; display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:1px; }
.pchk svg { width:11px; height:11px; stroke:var(--green); stroke-width:2.5; fill:none; }
.pop .pchk { background:#f5f3ff; } .pop .pchk svg { stroke:var(--purple); }
.ent .pchk { background:#f0fdfa; } .ent .pchk svg { stroke:var(--teal); }
.btn-price { width:100%; padding:14px; border-radius:26px; font-size:15px; font-weight:700; border:1.5px solid var(--border); background:#fff; color:var(--dark); transition:all .22s; cursor:pointer; font-family:inherit; }
.btn-price:hover { background:#f8fafc; }
.btn-price.bp-pop { background:linear-gradient(135deg,#4f46e5,#7c3aed); color:#fff; border:none; box-shadow:0 4px 18px rgba(79,70,229,.32); }
.btn-price.bp-pop:hover { opacity:.93; transform:translateY(-1px); }
.btn-price.bp-ent { color:var(--teal); border-color:var(--teal); }
.btn-price.bp-ent:hover { background:#f0fdfa; }
.price-note { text-align:center; margin-top:28px; font-size:13px; color:var(--gray-l); }
.price-note a { color:var(--blue); font-weight:700; }

/* ── TESTIMONIALS ── */
#testimonials { background:var(--bg); }
.testi-head h2 em { font-style:normal; color:var(--orange); }
.testi-wrap { position:relative; }
.testi-clip { overflow:hidden; }
.testi-track { display:flex; transition:transform .5s cubic-bezier(.4,0,.2,1); }
.testi-slide { min-width:100%; background:#fff; border:1.5px solid #e9d5ff; border-radius:24px; padding:48px 52px; position:relative; overflow:hidden; }
.testi-bg-q { position:absolute; top:12px; right:36px; font-size:120px; font-weight:900; color:rgba(139,92,246,.07); font-family:Georgia,serif; line-height:1; user-select:none; }
.testi-stars { display:flex; gap:5px; margin-bottom:20px; }
.testi-stars span { font-size:22px; }
.testi-quote { font-size:17px; font-style:italic; line-height:1.78; color:var(--dark2); margin-bottom:34px; max-width:710px; position:relative; z-index:1; }
.testi-foot { display:flex; align-items:center; justify-content:space-between; }
.testi-author { display:flex; align-items:center; gap:16px; }
.ta-av { width:52px; height:52px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:16px; font-weight:800; color:#fff; flex-shrink:0; }
.ta-name { font-size:15px; font-weight:800; }
.ta-role { font-size:12px; color:var(--gray-l); margin-top:2px; }
.testi-count { font-size:12px; font-weight:600; color:var(--gray-l); }
.testi-count span { color:var(--purple); font-weight:800; }
.ts-navs { position:absolute; top:50%; transform:translateY(-50%); left:-22px; right:-22px; display:flex; justify-content:space-between; pointer-events:none; }
.ts-nav { pointer-events:all; width:44px; height:44px; border-radius:50%; background:#fff; border:1.5px solid var(--border); display:flex; align-items:center; justify-content:center; cursor:pointer; box-shadow:var(--shadow-md); transition:all .22s; }
.ts-nav:hover { background:#f8fafc; }
.ts-nav svg { width:18px; height:18px; stroke-width:2.5; }
.av-row { display:flex; gap:12px; justify-content:center; margin-top:30px; }
.av-btn { width:44px; height:44px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:800; color:#fff; cursor:pointer; transition:all .25s; opacity:.42; border:2.5px solid transparent; }
.av-btn.on { opacity:1; border-color:var(--purple); transform:scale(1.2); }

/* ── CONTACT ── */
#contact { background:#fff; }
.contact-h { margin-bottom:60px; text-align:center; }
.contact-h h2 { font-family:'Playfair Display',serif; font-size:clamp(30px,4vw,50px); font-weight:900; margin-bottom:16px; }
.contact-h h2 span { background:linear-gradient(90deg,#7c3aed,#2563eb); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.contact-h p { font-size:16px; color:var(--gray); max-width:440px; margin:0 auto; line-height:1.65; }
.contact-g { display:grid; grid-template-columns:1fr 1.5fr; gap:40px; }
.cc-col { display:flex; flex-direction:column; gap:14px; }
.cc { background:#f8fafc; border:1.5px solid var(--border); border-radius:16px; padding:20px 24px; display:flex; align-items:center; gap:16px; transition:all .22s; }
.cc:hover { border-color:rgba(99,102,241,.24); background:#fff; transform:translateX(4px); box-shadow:var(--shadow-md); }
.cc-icon { width:46px; height:46px; border-radius:12px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.cc-icon svg { width:22px; height:22px; stroke-width:2; fill:none; }
.ci-email .cc-icon{background:#dbeafe} .ci-email .cc-icon svg{stroke:var(--blue)}
.ci-call .cc-icon{background:#fce7f3} .ci-call .cc-icon svg{stroke:#db2777}
.ci-off .cc-icon{background:#d1fae5} .ci-off .cc-icon svg{stroke:var(--green)}
.cc h4 { font-size:10.5px; font-weight:800; color:var(--gray-l); letter-spacing:.11em; text-transform:uppercase; margin-bottom:5px; }
.cc p { font-size:14px; font-weight:700; color:var(--dark); }
.cc-strat { background:linear-gradient(135deg,#4f46e5,#7c3aed); border-radius:16px; padding:26px; margin-top:2px; }
.cc-strat h4 { font-size:15px; font-weight:800; color:#fff; margin-bottom:9px; display:flex; align-items:center; gap:9px; }
.cc-strat p { font-size:13px; color:rgba(255,255,255,.82); line-height:1.62; margin-bottom:20px; }
.btn-strat { width:100%; background:rgba(255,255,255,.15); color:#fff; border:1.5px solid rgba(255,255,255,.32); border-radius:24px; padding:12px; font-size:14px; font-weight:700; cursor:pointer; transition:all .22s; font-family:inherit; }
.btn-strat:hover { background:rgba(255,255,255,.26); }
.form-box { background:#f8fafc; border:1.5px solid var(--border); border-radius:22px; padding:38px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.fg { margin-bottom:16px; }
.fg label { display:block; font-size:10.5px; font-weight:800; color:var(--gray); letter-spacing:.11em; text-transform:uppercase; margin-bottom:8px; }
.fg input, .fg textarea { width:100%; padding:12px 16px; border:1.5px solid var(--border); border-radius:11px; font-size:14px; font-family:inherit; background:#fff; color:var(--dark); outline:none; transition:border-color .22s,box-shadow .22s; }
.fg input:focus, .fg textarea:focus { border-color:var(--purple-l); box-shadow:0 0 0 3px rgba(139,92,246,.12); }
.fg textarea { height:114px; resize:vertical; }
.btn-send { width:100%; background:linear-gradient(135deg,#4f46e5,#7c3aed); color:#fff; padding:15px; border-radius:26px; font-size:15px; font-weight:800; display:flex; align-items:center; justify-content:center; gap:10px; cursor:pointer; transition:all .25s; box-shadow:0 4px 22px rgba(79,70,229,.32); font-family:inherit; }
.btn-send:hover { opacity:.92; transform:translateY(-2px); box-shadow:0 9px 30px rgba(79,70,229,.44); }
.btn-send svg { width:18px; height:18px; flex-shrink:0; }

/* ── FOOTER ── */
footer { background:#0f172a; color:#fff; padding:68px 56px 34px; }
.ft-g { display:grid; grid-template-columns:1.7fr 1fr 1fr 1fr; gap:56px; margin-bottom:56px; }
.ft-logo-row { display:flex; align-items:center; gap:11px; margin-bottom:18px; }
.ft-mark { width:44px; height:44px; border-radius:10px; background:transparent; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.ft-logo-img { width:44px; height:44px; object-fit:contain; border-radius:8px; }
.ft-bn { font-size:15px; font-weight:800; color:#fff; }
.ft-bs { font-size:9.5px; color:#475569; text-transform:uppercase; letter-spacing:.13em; font-weight:600; }
.ft-brand p { font-size:13px; color:#64748b; line-height:1.78; max-width:255px; margin-bottom:26px; }
.ft-socials { display:flex; gap:10px; }
.ft-soc { width:38px; height:38px; border-radius:9px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); display:flex; align-items:center; justify-content:center; cursor:pointer; transition:all .22s; }
.ft-soc:hover { background:rgba(255,255,255,.13); }
.ft-soc svg { width:16px; height:16px; stroke:#94a3b8; fill:none; stroke-width:2; transition:stroke .22s; }
.ft-soc:hover svg { stroke:#e2e8f0; }
.ft-col h4 { font-size:11.5px; font-weight:800; letter-spacing:.09em; text-transform:uppercase; margin-bottom:20px; color:#e2e8f0; }
.ft-col ul { display:flex; flex-direction:column; gap:11px; }
.ft-col li a { font-size:13.5px; color:#64748b; transition:color .22s; }
.ft-col li a:hover { color:#e2e8f0; }
.ft-bottom { border-top:1px solid rgba(255,255,255,.07); padding-top:28px; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px; }
.ft-copy { font-size:12.5px; color:#475569; }
.ft-links { display:flex; gap:24px; }
.ft-links a { font-size:12.5px; color:#475569; transition:color .22s; }
.ft-links a:hover { color:#94a3b8; }

/* ── FOUNDER CARD ENHANCED ── */
.team-grid-single .team-card-featured .team-card-img.founder-img-area { height: 340px; }
.founder-img-area { overflow: hidden; position: relative; }

/* Animated background gradient */
.founder-bg-anim {
  background: linear-gradient(135deg,#1e1b4b,#4f46e5,#7c3aed,#312e81);
  background-size: 300% 300%;
  animation: founderBgShift 8s ease-in-out infinite;
}
@keyframes founderBgShift {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Floating orbs inside the card */
.founder-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(2px);
}
.fo1 { width:160px; height:160px; top:-40px; left:-40px; background:radial-gradient(circle,rgba(129,140,248,.22),transparent 70%); animation:foOrb1 9s ease-in-out infinite; }
.fo2 { width:120px; height:120px; bottom:-20px; right:-20px; background:radial-gradient(circle,rgba(196,181,253,.2),transparent 70%); animation:foOrb2 7s ease-in-out infinite reverse; }
.fo3 { width:80px; height:80px; top:50%; right:10%; background:radial-gradient(circle,rgba(56,189,248,.15),transparent 70%); animation:foOrb1 11s 2s ease-in-out infinite; }
@keyframes foOrb1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(18px,-18px)} }
@keyframes foOrb2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-14px,12px)} }

/* Animated concentric rings */
.founder-rings { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; pointer-events:none; }
.fring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  animation: ringPulse 4s ease-in-out infinite;
}
.fring1 { width:200px; height:200px; animation-delay:0s; }
.fring2 { width:260px; height:260px; animation-delay:1.3s; border-color:rgba(129,140,248,.07); }
.fring3 { width:320px; height:320px; animation-delay:2.6s; border-color:rgba(99,102,241,.05); }
@keyframes ringPulse {
  0%,100% { transform:scale(1); opacity:0.5; }
  50%     { transform:scale(1.08); opacity:1; }
}

/* Avatar wrapper + glow */
.founder-avatar-wrap {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.founder-avatar-glow {
  position: absolute; width:170px; height:170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(129,140,248,.45), transparent 70%);
  animation: avatarGlow 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes avatarGlow {
  0%,100% { transform:scale(1); opacity:.7; }
  50%     { transform:scale(1.18); opacity:1; }
}
.founder-avatar {
  width:150px !important; height:150px !important;
  border: 3px solid rgba(255,255,255,0.85) !important;
  box-shadow: 0 0 0 4px rgba(129,140,248,.4), 0 12px 40px rgba(0,0,0,.35) !important;
  animation: avatarFloat 6s ease-in-out infinite;
  position: relative; z-index: 2;
}
@keyframes avatarFloat {
  0%,100% { transform:translateY(0) scale(1); }
  50%     { transform:translateY(-8px) scale(1.02); }
}
.team-card:hover .founder-avatar {
  box-shadow: 0 0 0 6px rgba(129,140,248,.6), 0 16px 50px rgba(0,0,0,.4) !important;
}

/* Floating skill chips */
.founder-chip {
  position: absolute; z-index: 3;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 20px; padding: 5px 14px;
  font-size: 11px; font-weight: 700; color: #4f46e5;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  white-space: nowrap;
}
.fc-tech { bottom:60px; left:12px; }
.fc-exp  { top:24px; right:14px; }

/* Founder badge with live dot */
.founder-badge {
  display: flex !important; align-items: center; gap: 7px !important;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,.5);
  animation: badgePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes badgePulse {
  0%,100% { box-shadow:0 0 0 0 rgba(34,197,94,.5); }
  60%     { box-shadow:0 0 0 7px rgba(34,197,94,0); }
}

/* Founder info area */
.founder-info { padding: 28px 28px 24px !important; }
.founder-name-row { display:flex; align-items:center; gap:10px; margin-bottom:4px; }
.founder-verified {
  width:22px; height:22px; flex-shrink:0;
  animation: verifiedPop 0.4s cubic-bezier(.34,1.56,.64,1) both;
  animation-delay: 1s;
}
@keyframes verifiedPop {
  from { transform:scale(0) rotate(-20deg); opacity:0; }
  to   { transform:scale(1) rotate(0);    opacity:1; }
}
.founder-name-row .team-name { margin-bottom: 0 !important; }

/* Stats row */
.founder-stats {
  display: flex; align-items: center; gap: 0;
  background: #f8fafc; border: 1.5px solid var(--border);
  border-radius: 14px; padding: 14px 8px;
  margin: 16px 0 20px;
}
.fstat { flex: 1; text-align: center; }
.fstat-n { font-size: 20px; font-weight: 900; color: var(--indigo); line-height: 1.1; }
.fstat-l { font-size: 10.5px; color: var(--gray-l); font-weight: 500; margin-top: 3px; text-transform: uppercase; letter-spacing: .06em; }
.fstat-divider { width:1px; height:36px; background:var(--border); flex-shrink:0; }

/* ── SCROLL TOP ── */
#stb { position:fixed; bottom:28px; right:28px; z-index:900; width:46px; height:46px; border-radius:50%; background:linear-gradient(135deg,#4f46e5,#7c3aed); color:#fff; border:none; cursor:pointer; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 18px rgba(79,70,229,.42); transition:all .3s; opacity:0; transform:translateY(20px); pointer-events:none; }
#stb.show { opacity:1; transform:none; pointer-events:all; }
#stb:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(79,70,229,.55); }
#stb svg { width:20px; height:20px; stroke:#fff; fill:none; stroke-width:2.5; }

/* ── RESPONSIVE ── */
@media(max-width:1100px){
  #nav{padding:0 24px}
  section{padding:80px 28px}
  .stats-section{padding:48px 28px 0}
  .svc-slide{grid-template-columns:160px 1fr;gap:44px;padding:44px 36px}
  .about-g{gap:56px}
  .why-g{grid-template-columns:repeat(2,1fr)}
  .cta-box{padding:38px 40px}
  .price-g{grid-template-columns:1fr;max-width:430px;margin-left:auto;margin-right:auto;margin-top:56px}
  .contact-g{grid-template-columns:1fr}
  .ft-g{grid-template-columns:1fr 1fr;gap:38px}
  .team-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:860px){
  .about-g{grid-template-columns:1fr}
  .about-vis{max-width:480px;margin:0 auto}
  .port-slide{grid-template-columns:1fr}
  .port-img{min-height:300px}
  .svc-slide{grid-template-columns:1fr;text-align:center;gap:28px;padding:36px 28px}
  .svc-slide p{margin-left:auto;margin-right:auto}
  .why-g{grid-template-columns:1fr}
}
@media(max-width:768px){
  .nav-links,.nav-cta{display:none}
  .hamburger{display:flex}
  .stats-inner{grid-template-columns:repeat(2,1fr)}
  .stat:nth-child(1),.stat:nth-child(2){border-bottom:1px solid var(--border)}
  .stat:nth-child(2)::after,.stat:nth-child(4)::after{display:none}
  .cta-box{flex-direction:column;text-align:center;padding:32px 24px}
  .checks{grid-template-columns:1fr}
  .ft-g{grid-template-columns:1fr;gap:30px}
  .ft-bottom{flex-direction:column;text-align:center}
  .form-row{grid-template-columns:1fr}
  .testi-slide{padding:32px 28px}
  .port-info{padding:28px 24px}
  .team-grid{grid-template-columns:1fr}
  section{padding:64px 20px}
  #nav{padding:0 16px}
  .hero-logo-img{width:160px}
  .hero-h1{font-size:clamp(36px,10vw,60px)}
  .hero-grad{font-size:clamp(36px,10vw,60px)}
  .hero-desc{font-size:15px}
}
@media(max-width:480px){
  section{padding:56px 16px}
  .why-g{grid-template-columns:1fr;gap:16px}
  .why-card{padding:24px 20px}
  .cta-box{padding:28px 18px}
  .hero-logo-img{width:130px}
  .stats-inner{grid-template-columns:repeat(2,1fr)}
}