/* ============================================================
   SPHERE DIGITAL IT — Premium Corporate Design System
   Palette: #6F3BFF → #3B82FF · White-first · Poppins + Inter
   ============================================================ */

/* ---------- 1. Design Tokens ---------- */
:root {
  --primary: #6F3BFF;
  --secondary: #3B82FF;
  --gradient: linear-gradient(135deg, #6F3BFF 0%, #3B82FF 100%);
  --gradient-soft: linear-gradient(135deg, rgba(111,59,255,.08), rgba(59,130,255,.08));
  --dark: #131A34;
  --text: #596275;
  --text-light: #8A94A8;
  --bg: #FFFFFF;
  --bg-alt: #F8FAFD;
  --border: #E8ECF5;
  --card: #FFFFFF;
  --shadow: rgba(20, 20, 43, .08);
  --shadow-lg: rgba(20, 20, 43, .12);
  --glow: rgba(111, 59, 255, .18);

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 22px;
  --radius-sm: 14px;
  --radius-pill: 999px;

  --container: 1400px;
  --content: 1280px;
  --section-pad: 140px;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
  --header-h: 84px;
}

/* ---------- 2. Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--dark);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
}

::selection { background: var(--primary); color: #fff; }

/* Focus visibility for accessibility */
:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: 6px; }

/* Skip link (keyboard accessibility) */
.skip-link {
  position: fixed; top: -64px; left: 16px; z-index: 3000;
  padding: 12px 22px; border-radius: var(--radius-pill);
  background: var(--gradient); color: #fff; font-family: var(--font-head);
  font-weight: 600; font-size: 14px; box-shadow: 0 12px 30px var(--glow);
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 16px; }

/* 404 page */
.nf-section { position: relative; overflow: hidden; }
.nf-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.nf-1 { top: -120px; left: -80px; width: 420px; height: 420px; }
.nf-2 { bottom: -160px; right: -100px; width: 480px; height: 480px; }
.nf-dots { top: 120px; right: 12%; opacity: .5; }
.nf-shell { position: relative; z-index: 1; text-align: center; max-width: 720px; margin: 0 auto; padding: 60px 0 90px; }
.nf-code {
  display: block; font-family: var(--font-head); font-weight: 800;
  font-size: clamp(96px, 18vw, 190px); line-height: .95; letter-spacing: -.04em;
  background: var(--gradient); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 24px 60px var(--glow)); margin-bottom: 8px;
}
.nf-title { font-size: clamp(30px, 4.5vw, 46px); margin: 22px 0 16px; }
.nf-sub { color: var(--text); max-width: 520px; margin: 0 auto 34px; font-size: 17px; }
.nf-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.nf-links { display: flex; gap: 10px 20px; justify-content: center; flex-wrap: wrap; align-items: center; color: var(--text); font-size: 14px; }
.nf-links a { color: var(--primary); font-weight: 600; text-decoration: none; transition: color .25s var(--ease), transform .25s var(--ease); }
.nf-links a:hover { color: var(--blue); transform: translateY(-2px); }
.nf-links-label { color: var(--muted); }
@media (max-width: 640px) {
  .nf-shell { padding: 30px 0 60px; }
  .nf-actions { flex-direction: column; align-items: stretch; }
  .nf-actions .btn { width: 100%; justify-content: center; }
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #c9b8ff, #a9c8ff); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--primary), var(--secondary)); }

/* ---------- 3. Layout Utilities ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 48px; }
.container-sm { width: 100%; max-width: var(--content); margin: 0 auto; padding: 0 48px; }

.section { padding: var(--section-pad) 0; position: relative; }
.section-alt { background: var(--bg-alt); }
.section-tight { padding: 100px 0; }

/* ---------- 4. Typography helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 13px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--primary);
  padding: 10px 20px; border-radius: var(--radius-pill);
  background: var(--gradient-soft); border: 1px solid rgba(111,59,255,.15);
}

.eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gradient); }

.section-head { max-width: 760px; margin: 0 auto 72px; text-align: center; }
.section-head.left { margin: 0 0 60px; text-align: left; }
.section-head h2 {
  font-size: clamp(2.1rem, 4vw, 3.15rem);
  margin: 26px 0 20px;
  text-wrap: balance;
}
.section-head p { font-size: 1.12rem; color: var(--text); }
.section-head .eyebrow { margin-bottom: 4px; }

.grad-text {
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  background-size: 200% 200%;
}

.lead { font-size: 1.15rem; color: var(--text); }

/* ---------- 5. Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--font-head); font-weight: 600; font-size: 16px;
  padding: 18px 36px; border-radius: var(--radius-pill);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
  overflow: hidden; will-change: transform;
  white-space: nowrap;
}

.btn .btn-arrow {
  transition: transform .35s var(--ease);
  width: 18px; height: 18px; flex: none;
}
.btn:hover .btn-arrow { transform: translateX(6px); }

.btn-primary {
  background: var(--gradient); color: #fff;
  box-shadow: 0 8px 24px var(--glow), 0 2px 8px rgba(111,59,255,.25);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px var(--glow), 0 4px 12px rgba(111,59,255,.35); }
.btn-primary:hover .btn-arrow { transform: translateX(6px); }

.btn-ghost {
  background: #fff; color: var(--dark);
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 10px var(--shadow);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: rgba(111,59,255,.4); box-shadow: 0 12px 30px var(--shadow); color: var(--primary); }

.btn-light { background: #fff; color: var(--primary); box-shadow: 0 10px 30px rgba(19,26,52,.25); }
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(19,26,52,.35); }

.btn-lg { padding: 22px 48px; font-size: 17px; }
.btn-sm { padding: 13px 26px; font-size: 14.5px; }

.btn .btn-play {
  width: 22px; height: 22px; display: grid; place-items: center; flex: none;
  background: var(--gradient); color: #fff; border-radius: 50%;
}

/* Ripple */
.btn .ripple { position: absolute; border-radius: 50%; background: rgba(255,255,255,.5); transform: scale(0); animation: ripple .7s var(--ease-soft) forwards; pointer-events: none; }
.btn-ghost .ripple { background: rgba(111,59,255,.25); }
.btn-light .ripple { background: rgba(111,59,255,.25); }
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* ---------- 6. Glass Cards ---------- */
.glass {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.6);
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
  position: relative; overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px var(--shadow), 0 0 0 1px rgba(111,59,255,.08);
}

/* Gradient border animation on hover */
.card::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px;
  background: linear-gradient(120deg, rgba(111,59,255,.5), rgba(59,130,255,.5), rgba(111,59,255,.5));
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .5s var(--ease); pointer-events: none;
}
.card:hover::after { opacity: 1; animation: borderFlow 3s linear infinite; }
@keyframes borderFlow { 0% { background-position: 0% 50%; } 100% { background-position: 300% 50%; } }

/* ---------- 7. Header / Navigation ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  height: var(--header-h);
  transition: height .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  height: 72px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(22px) saturate(180%); -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-bottom-color: rgba(232,236,245,.9);
  box-shadow: 0 8px 32px rgba(20,20,43,.06);
}

.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }

.logo { display: flex; align-items: center; flex: none; }
.logo img { height: 52px; width: auto; transition: height .4s var(--ease); }
.site-header.scrolled .logo img { height: 44px; }

.nav { display: flex; align-items: center; gap: 8px; }
.nav-link {
  position: relative; font-family: var(--font-head); font-weight: 500; font-size: 15.5px;
  color: var(--dark); padding: 10px 16px; border-radius: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .3s var(--ease), background .3s var(--ease);
}
.nav-link:hover { color: var(--primary); }
.nav-link .chev { width: 14px; height: 14px; transition: transform .35s var(--ease); color: var(--text-light); }
.nav-item:hover .nav-link .chev { transform: rotate(180deg); }

/* Animated underline */
.nav-link::after {
  content: ''; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px;
  background: var(--gradient); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.nav-link:hover::after, .nav-item:hover .nav-link::after { transform: scaleX(1); }

/* Dropdowns */
.nav-item { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(12px);
  min-width: 260px; padding: 14px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(24px) saturate(180%); -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  box-shadow: 0 24px 60px rgba(20,20,43,.14);
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown.wide { min-width: 560px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.dropdown a {
  display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: 12px;
  font-size: 14.5px; font-weight: 500; color: var(--dark);
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.dropdown a:hover { background: var(--gradient-soft); color: var(--primary); transform: translateX(4px); }
.dropdown .dd-icon { width: 34px; height: 34px; flex: none; border-radius: 10px; background: var(--gradient-soft); display: grid; place-items: center; color: var(--primary); }
.dropdown .dd-icon svg { width: 17px; height: 17px; }
.dropdown .dd-text small { display: block; font-size: 12px; color: var(--text-light); font-weight: 400; }

.header-cta { display: flex; align-items: center; gap: 16px; }

/* Hamburger */
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; background: var(--bg-alt); border: 1px solid var(--border); place-items: center; color: var(--dark); }
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- 8. Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: calc(var(--header-h) + 60px) 0 0;
  background: linear-gradient(180deg, #FBFAFF 0%, #FFFFFF 60%);
  min-height: 100svh; display: flex; align-items: flex-start;
}

/* Background effects */
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; will-change: transform; }
.hero-blob.b1 { width: 640px; height: 640px; top: -180px; right: -120px; background: radial-gradient(circle at 30% 30%, rgba(111,59,255,.32), rgba(111,59,255,0) 70%); }
.hero-blob.b2 { width: 560px; height: 560px; top: 120px; left: -200px; background: radial-gradient(circle at 60% 40%, rgba(59,130,255,.28), rgba(59,130,255,0) 70%); }
.hero-blob.b3 { width: 420px; height: 420px; bottom: -120px; right: 30%; background: radial-gradient(circle at 50% 50%, rgba(111,59,255,.16), rgba(111,59,255,0) 70%); }

.hero-grid-pattern {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(111,59,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(111,59,255,.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 40%, transparent 100%);
}

.hero-noise { position: absolute; inset: 0; opacity: .5; z-index: 1; mix-blend-mode: soft-light; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

/* Particles */
#particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center;
  padding-top: 40px;
}

.hero-copy { max-width: 640px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.8); backdrop-filter: blur(10px);
  border: 1px solid rgba(111,59,255,.18); border-radius: var(--radius-pill);
  padding: 9px 18px; font-family: var(--font-head); font-weight: 500; font-size: 13.5px; color: var(--dark);
  box-shadow: 0 4px 16px rgba(111,59,255,.08);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gradient); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(111,59,255,.4); } 50% { box-shadow: 0 0 0 7px rgba(111,59,255,0); } }

.hero-title {
  font-size: clamp(2.6rem, 5.2vw, 4.35rem);
  line-height: 1.08; margin: 26px 0 24px; text-wrap: balance;
}

.hero-sub { font-size: 1.18rem; color: var(--text); max-width: 560px; margin-bottom: 40px; }

.hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

.hero-meta { display: flex; align-items: center; gap: 16px; margin-top: 44px; padding-top: 32px; border-top: 1px solid var(--border); }
.hero-meta .avatars { display: flex; }
.hero-meta .avatars img { width: 42px; height: 42px; border-radius: 50%; border: 3px solid #fff; object-fit: cover; margin-left: -12px; box-shadow: 0 4px 12px var(--shadow); }
.hero-meta .avatars img:first-child { margin-left: 0; }
.hero-meta p { font-size: 14px; color: var(--text-light); }
.hero-meta strong { color: var(--dark); display: block; font-family: var(--font-head); font-size: 15px; }
.hero-meta .stars { display: flex; gap: 2px; color: #F5B301; margin-bottom: 4px; }
.hero-meta .stars svg { width: 14px; height: 14px; fill: currentColor; }

/* Hero visual — laptop */
.hero-visual { position: relative; min-height: 640px; display: flex; align-items: center; justify-content: center; }

.laptop {
  position: relative; z-index: 2;
  width: min(100%, 640px);
  perspective: 2000px;
}
.laptop-inner {
  position: relative; transform: rotateX(6deg); transform-style: preserve-3d;
  animation: laptopFloat 7s ease-in-out infinite;
}
@keyframes laptopFloat {
  0%,100% { transform: rotateX(6deg) translateY(0); }
  50% { transform: rotateX(4deg) translateY(-18px); }
}

.laptop-screen {
  position: relative; border-radius: 18px; overflow: hidden;
  border: 10px solid #1B2036; background: #fff;
  box-shadow: 0 40px 90px rgba(20,20,43,.28), 0 0 0 1px rgba(20,20,43,.1);
}
.laptop-screen .screen-ui {
  aspect-ratio: 16/10.2; width: 100%;
  background: #fff; position: relative; overflow: hidden;
}
/* notch */
.laptop-screen::before {
  content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 6px; background: #1B2036; border-radius: 0 0 8px 8px; z-index: 5;
}
.laptop-base {
  height: 16px; margin: 0 6%; border-radius: 0 0 14px 14px;
  background: linear-gradient(180deg, #232840, #151A2E);
  box-shadow: 0 24px 40px rgba(20,20,43,.25);
  position: relative;
}
.laptop-base::after { content: ''; position: absolute; left: 50%; transform: translateX(-50%); top: 0; width: 90px; height: 6px; border-radius: 0 0 6px 6px; background: #2C3350; }

/* Dashboard UI inside laptop */
.dash { position: absolute; inset: 0; display: grid; grid-template-columns: 74px 1fr; font-family: var(--font-body); }
.dash-side {
  background: #10142B; color: #fff; display: flex; flex-direction: column; align-items: center; gap: 18px; padding: 20px 0;
}
.dash-logo { width: 30px; height: 30px; border-radius: 9px; background: var(--gradient); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 13px; }
.dash-icon { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; color: #7C85A8; font-size: 13px; }
.dash-icon.active { background: var(--gradient); color: #fff; box-shadow: 0 4px 12px rgba(111,59,255,.45); }
.dash-main { padding: 16px 18px; display: flex; flex-direction: column; gap: 12px; overflow: hidden; }
.dash-top { display: flex; align-items: center; justify-content: space-between; }
.dash-top h4 { font-size: 13px; font-weight: 700; font-family: var(--font-head); color: var(--dark); }
.dash-top .pill { font-size: 9.5px; font-weight: 600; padding: 4px 10px; border-radius: 99px; background: var(--gradient-soft); color: var(--primary); }
.dash-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.dash-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 12px; padding: 10px 12px; }
.dash-card .lbl { font-size: 9px; color: var(--text-light); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.dash-card .val { font-size: 16px; font-weight: 700; font-family: var(--font-head); color: var(--dark); margin-top: 2px; }
.dash-card .delta { font-size: 9px; font-weight: 600; color: #22C55E; display: flex; align-items: center; gap: 3px; margin-top: 2px; }
.dash-card .delta.down { color: #EF4444; }
.dash-chart { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 12px; padding: 10px 12px; flex: 1; display: flex; flex-direction: column; }
.dash-chart .chart-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.dash-chart .chart-head span { font-size: 10px; font-weight: 600; color: var(--dark); }
.dash-chart .chart-head small { font-size: 8.5px; color: var(--text-light); }
.dash-chart svg { width: 100%; height: 100%; min-height: 74px; }
.dash-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 8px; border-top: 1px solid var(--border); }
.dash-footer .who { display: flex; align-items: center; gap: 8px; }
.dash-footer .who .av { width: 24px; height: 24px; border-radius: 50%; background: var(--gradient); display: grid; place-items: center; color: #fff; font-size: 10px; font-weight: 700; }
.dash-footer .who small { font-size: 9.5px; color: var(--text-light); }
.dash-footer .bar { width: 74px; height: 6px; background: var(--border); border-radius: 99px; overflow: hidden; }
.dash-footer .bar i { display: block; height: 100%; width: 68%; background: var(--gradient); border-radius: 99px; }

/* Floating service chips */
.float-chip {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: 16px;
  background: rgba(255,255,255,.88); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(232,236,245,.95);
  box-shadow: 0 16px 40px rgba(20,20,43,.12), 0 0 0 1px rgba(111,59,255,.05);
  font-family: var(--font-head); font-weight: 600; font-size: 13.5px; color: var(--dark);
  animation: chipFloat 6s ease-in-out infinite;
  will-change: transform;
}
.float-chip .fc-icon {
  width: 38px; height: 38px; flex: none; border-radius: 12px;
  background: var(--gradient-soft); display: grid; place-items: center; color: var(--primary);
}
.float-chip .fc-icon svg { width: 18px; height: 18px; }
.float-chip .fc-tag { display: block; font-size: 10px; color: var(--text-light); font-weight: 500; line-height: 1.1; }
.float-chip .fc-name { display: block; font-size: 12.5px; line-height: 1.2; }
@keyframes chipFloat { 0%,100% { translate: 0 0; } 50% { translate: 0 -12px; } }
.float-chip, .about-media .float-card { translate: 0 0; }

.fc-1 { top: 6%; left: -6%; animation-delay: 0s; }
.fc-2 { top: 22%; right: -8%; animation-delay: .8s; }
.fc-3 { top: 44%; left: -10%; animation-delay: 1.6s; }
.fc-4 { top: 66%; right: -6%; animation-delay: 2.2s; }
.fc-5 { top: 82%; left: 2%; animation-delay: .4s; }
.fc-6 { top: -4%; right: 12%; animation-delay: 1.2s; }
.fc-7 { top: 12%; right: 2%; animation-delay: 2.6s; }
.fc-8 { top: 58%; left: -4%; animation-delay: 1.8s; }
.fc-9 { top: 34%; right: -2%; animation-delay: .6s; }
.fc-10 { top: 76%; right: 14%; animation-delay: 2.0s; }

@media (max-width: 1024px) {
  .fc-7 { top: 8%; right: -2%; } .fc-8 { left: -2%; } .fc-9 { right: 0; } .fc-10 { right: 6%; }
}

/* Connection lines */
.conn-lines { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.conn-lines path { fill: none; stroke: url(#lineGrad); stroke-width: 1.6; stroke-dasharray: 6 10; animation: dashMove 6s linear infinite; opacity: .5; }
@keyframes dashMove { to { stroke-dashoffset: -160; } }

.hero-glow-ring { position: absolute; z-index: 0; width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(111,59,255,.14), rgba(111,59,255,0) 65%);
  top: 50%; left: 50%; transform: translate(-50%, -50%); }

/* ---------- 9. Trusted brands ---------- */
.brands { padding: 64px 0 0; position: relative; z-index: 2; }
.brands-label { text-align: center; font-family: var(--font-head); font-size: 13px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--text-light); margin-bottom: 34px; }
.brands-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 20px 48px; }
.brand-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 21px; color: #B6BED0;
  filter: grayscale(1); opacity: .75;
  transition: all .4s var(--ease); cursor: default;
}
.brand-item:hover { filter: grayscale(0); opacity: 1; color: var(--dark); transform: translateY(-3px); }
.brand-item svg { width: 26px; height: 26px; }

/* ---------- 10. Stats ---------- */
.stats { position: relative; z-index: 2; margin-top: 72px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 48px 40px; box-shadow: 0 20px 60px rgba(20,20,43,.07);
}
.stat { text-align: center; position: relative; }
.stat + .stat::before { content: ''; position: absolute; left: -12px; top: 20%; height: 60%; width: 1px; background: var(--border); }
.stat .num {
  font-family: var(--font-head); font-weight: 800; font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1; letter-spacing: -.03em;
}
.stat .lbl { font-size: 15px; color: var(--text); margin-top: 10px; font-weight: 500; }
.stat .ico { width: 46px; height: 46px; margin: 0 auto 14px; border-radius: 14px; background: var(--gradient-soft); display: grid; place-items: center; color: var(--primary); }
.stat .ico svg { width: 22px; height: 22px; }

/* ---------- 11. Services / What We Do ---------- */
.services-section { position: relative; overflow: hidden; }
.services-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.sec-blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; will-change: transform; }
.sec-blob.sb-1 { width: 580px; height: 580px; top: -170px; right: -140px; background: radial-gradient(circle at 30% 30%, rgba(111,59,255,.3), rgba(111,59,255,0) 70%); }
.sec-blob.sb-2 { width: 480px; height: 480px; bottom: -160px; left: -160px; background: radial-gradient(circle at 60% 40%, rgba(59,130,255,.24), rgba(59,130,255,0) 70%); }
.sec-dots {
  position: absolute; top: 130px; left: 44px; width: 240px; height: 240px;
  background-image: radial-gradient(rgba(111,59,255,.2) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  mask-image: radial-gradient(circle at 20% 20%, #000, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 20% 20%, #000, transparent 78%);
}

/* Section label badge with side lines */
.sec-badge {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-head); font-weight: 600; font-size: 13px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--primary);
  padding: 10px 22px; border-radius: var(--radius-pill);
  background: var(--gradient-soft); border: 1px solid rgba(111,59,255,.18);
}
.sec-badge::before, .sec-badge::after { content: ''; width: 44px; height: 1.5px; background: linear-gradient(90deg, transparent, rgba(111,59,255,.55)); }
.sec-badge::after { background: linear-gradient(90deg, rgba(111,59,255,.55), transparent); }
.section-head .sec-badge { margin-bottom: 4px; }

.services-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px;
  position: relative; z-index: 1;
}
.service-card {
  padding: 30px 26px; display: flex; flex-direction: column; align-items: flex-start;
  background: rgba(255,255,255,.82); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px var(--shadow), 0 0 0 1px rgba(111,59,255,.1), 0 14px 44px var(--glow);
}
.service-card .svc-icon {
  width: 64px; height: 64px; border-radius: 50%; flex: none;
  background: var(--gradient); color: #fff;
  display: grid; place-items: center; margin-bottom: 24px;
  box-shadow: 0 12px 28px var(--glow);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.service-card:hover .svc-icon {
  transform: translateY(-4px) rotate(-5deg) scale(1.05);
  box-shadow: 0 18px 40px var(--glow);
}
.service-card .svc-icon svg { width: 28px; height: 28px; transition: transform .45s var(--ease); }
.service-card:hover .svc-icon svg { transform: scale(1.12); }
.service-card h3 { font-size: 18px; margin-bottom: 10px; font-weight: 700; line-height: 1.3; }
.service-card p { font-size: 14px; margin-bottom: 22px; flex: 1; }
.service-card .learn {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--primary);
}
.service-card .learn svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.service-card:hover .learn svg { transform: translateX(6px); }

/* Why choose panel */
.why-panel {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  margin-top: 90px; border-radius: 28px; overflow: hidden;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(232,236,245,.95);
  box-shadow: 0 36px 90px rgba(20,20,43,.1);
}
.wp-col { padding: 42px 34px; position: relative; }
.wp-col + .wp-col { border-left: 1px solid var(--border); }
.wp-intro { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; background: var(--gradient-soft); }
.wp-intro h3 { font-size: clamp(1.4rem, 2.1vw, 1.8rem); margin: 20px 0 14px; line-height: 1.3; }
.wp-intro p { font-size: 14.5px; margin-bottom: 26px; }
.wp-feat .wp-ico {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--gradient); background-size: 200% 200%; animation: gradShift 5s ease infinite;
  color: #fff; display: grid; place-items: center; margin-bottom: 20px;
  box-shadow: 0 12px 30px var(--glow);
  transition: transform .45s var(--ease);
}
.wp-feat:hover .wp-ico { transform: scale(1.12) rotate(-4deg); }
.wp-feat .wp-ico svg { width: 26px; height: 26px; }
.wp-feat h4 { font-size: 17px; margin-bottom: 8px; font-weight: 700; }
.wp-feat p { font-size: 13.5px; line-height: 1.7; }

/* Bottom CTA strip */
.cta-strip {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 34px;
  margin-top: 40px; border-radius: 24px; padding: 42px 48px;
  background: #fff; border: 1px solid var(--border);
  box-shadow: 0 28px 70px rgba(20,20,43,.09);
}
.cs-phone {
  width: 78px; height: 78px; border-radius: 50%; flex: none;
  background: var(--gradient); background-size: 200% 200%; animation: gradShift 5s ease infinite;
  color: #fff; display: grid; place-items: center;
  box-shadow: 0 16px 38px var(--glow);
}
.cs-phone svg { width: 34px; height: 34px; }
.cs-text h3 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); margin-bottom: 6px; }
.cs-text p { font-size: 15px; }
.cs-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }

/* ---------- 11d. Our Approach ---------- */
.approach-section { position: relative; overflow: hidden; background: var(--bg); }
.approach-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.approach-bg .sec-blob.ab-1 { width: 560px; height: 560px; top: -160px; left: -140px; background: radial-gradient(circle at 40% 40%, rgba(111,59,255,.24), rgba(111,59,255,0) 70%); }
.approach-bg .sec-blob.ab-2 { width: 480px; height: 480px; bottom: -140px; right: -140px; background: radial-gradient(circle at 60% 60%, rgba(59,130,255,.2), rgba(59,130,255,0) 70%); }

.approach-grid { display: grid; grid-template-columns: 55% 45%; gap: 72px; align-items: center; position: relative; z-index: 1; }
.approach-copy { max-width: 640px; }
.approach-copy h2 { font-size: clamp(2.2rem, 3.8vw, 3.3rem); line-height: 1.16; margin: 26px 0 22px; }
.approach-copy > p { font-size: 1.08rem; max-width: 600px; margin-bottom: 52px; }

/* Timeline */
.ap-timeline { position: relative; }
.ap-track { position: absolute; top: 26px; left: 6%; right: 6%; height: 2px; z-index: 0;
  background-image: linear-gradient(90deg, rgba(111,59,255,.45) 30%, transparent 0);
  background-size: 10px 2px; background-repeat: repeat-x; }
.ap-fill { position: absolute; top: 0; left: 0; height: 2px; width: 0; background: var(--gradient); border-radius: 2px; box-shadow: 0 0 12px var(--glow); }
.ap-arrow { position: absolute; top: -8px; left: 0; width: 18px; height: 18px; border-radius: 50%; background: var(--gradient); color: #fff; display: grid; place-items: center; z-index: 1; box-shadow: 0 4px 12px var(--glow); }
.ap-arrow svg { width: 10px; height: 10px; }

.ap-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; position: relative; z-index: 1; }
.ap-step {
  padding: 26px 18px 24px; border-radius: var(--radius); text-align: center;
  background: rgba(255,255,255,.82); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border); box-shadow: 0 4px 20px var(--shadow);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
  position: relative; overflow: hidden;
}
.ap-step:hover { transform: translateY(-10px); box-shadow: 0 26px 56px var(--shadow), 0 0 0 1px rgba(111,59,255,.1), 0 12px 40px var(--glow); }
.ap-step .ap-node {
  width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--gradient); color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 26px var(--glow);
  animation: chipFloat 5.5s ease-in-out infinite;
}
.ap-step .ap-node svg { width: 24px; height: 24px; }
.ap-step .ap-num { display: block; font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: .12em; color: var(--primary); margin-bottom: 6px; }
.ap-step h4 { font-size: 16px; margin-bottom: 8px; font-weight: 700; }
.ap-step p { font-size: 12.5px; line-height: 1.6; color: var(--text); }
.ap-step.active { border-color: rgba(111,59,255,.35); box-shadow: 0 10px 30px var(--shadow), 0 8px 26px rgba(111,59,255,.14); }
.ap-step.active .ap-num { color: var(--secondary); }

/* Approach visual — monitor composition */
.approach-visual { position: relative; min-height: 620px; display: flex; align-items: center; justify-content: center; }
.av-glow-ring { position: absolute; width: 520px; height: 520px; border-radius: 50%; z-index: 0;
  background: radial-gradient(circle, rgba(111,59,255,.16), rgba(111,59,255,0) 66%); }
.av-platform { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 0;
  width: 400px; height: 110px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(111,59,255,.14), rgba(111,59,255,0) 70%); }
.av-monitor { position: relative; z-index: 2; width: min(100%, 460px); perspective: 1600px; }
.av-screen {
  position: relative; border-radius: 18px; overflow: hidden;
  border: 10px solid #1B2036; background: #fff;
  box-shadow: 0 44px 90px rgba(20,20,43,.28);
  animation: avFloat 7s ease-in-out infinite;
}
@keyframes avFloat { 0%,100% { transform: translateY(0) rotateX(2deg); } 50% { transform: translateY(-16px) rotateX(2deg); } }
.av-screen img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.av-chrome { position: absolute; top: 0; left: 0; right: 0; height: 30px; background: #F1F4FB; display: flex; align-items: center; gap: 6px; padding: 0 14px; z-index: 3; }
.av-chrome span { width: 10px; height: 10px; border-radius: 50%; }
.av-chrome span:nth-child(1) { background: #FF5F57; } .av-chrome span:nth-child(2) { background: #FEBC2E; } .av-chrome span:nth-child(3) { background: #28C840; }
.av-dash-ui { position: absolute; inset: 30px 0 0; display: grid; grid-template-columns: 56px 1fr; }
.au-side { background: rgba(16,20,43,.92); display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 16px 0; }
.au-logo { width: 26px; height: 26px; border-radius: 8px; background: var(--gradient); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 12px; }
.au-side i { width: 24px; height: 24px; border-radius: 8px; background: rgba(255,255,255,.08); }
.au-side i:first-of-type { background: var(--gradient); box-shadow: 0 4px 12px rgba(111,59,255,.5); }
.au-main { padding: 14px; display: flex; flex-direction: column; gap: 10px; background: rgba(255,255,255,.06); backdrop-filter: blur(6px); }
.au-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.au-cards span { height: 44px; border-radius: 10px; background: rgba(255,255,255,.14); }
.au-chart { flex: 1; display: flex; align-items: flex-end; gap: 8px; padding: 8px; border-radius: 10px; background: rgba(255,255,255,.1); }
.au-chart i { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, #6F3BFF, #3B82FF); opacity: .85; }
.au-chart i:nth-child(1) { height: 34%; } .au-chart i:nth-child(2) { height: 52%; } .au-chart i:nth-child(3) { height: 44%; }
.au-chart i:nth-child(4) { height: 68%; } .au-chart i:nth-child(5) { height: 58%; } .au-chart i:nth-child(6) { height: 82%; } .au-chart i:nth-child(7) { height: 100%; }
.av-stand { width: 34px; height: 14px; margin: 0 auto; background: linear-gradient(180deg, #232840, #151A2E); }
.av-base { width: 74%; height: 9px; margin: 0 auto; border-radius: 0 0 12px 12px; background: linear-gradient(180deg, #232840, #151A2E); box-shadow: 0 20px 34px rgba(20,20,43,.25); }

/* Floating cards */
.av-float {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-radius: 16px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(232,236,245,.95); box-shadow: 0 18px 44px rgba(20,20,43,.14);
  animation: chipFloat 6s ease-in-out infinite;
}
.av-float .af-ico { width: 40px; height: 40px; flex: none; border-radius: 12px; background: var(--gradient); color: #fff; display: grid; place-items: center; box-shadow: 0 8px 20px var(--glow); }
.av-float .af-ico svg { width: 19px; height: 19px; }
.av-float strong { display: block; font-family: var(--font-head); font-size: 14px; color: var(--dark); line-height: 1.2; }
.av-float small { font-size: 11.5px; color: var(--text-light); }
.af-chart { top: 4%; right: 2%; flex-direction: column; align-items: flex-start; animation-delay: .4s; }
.af-chart .af-bars { display: flex; align-items: flex-end; gap: 4px; height: 26px; margin-top: 6px; }
.af-chart .af-bars i { width: 7px; border-radius: 3px 3px 0 0; background: var(--gradient); }
.af-chart .af-bars i:nth-child(1) { height: 40%; } .af-chart .af-bars i:nth-child(2) { height: 65%; } .af-chart .af-bars i:nth-child(3) { height: 50%; } .af-chart .af-bars i:nth-child(4) { height: 80%; } .af-chart .af-bars i:nth-child(5) { height: 100%; }
.af-code { bottom: 16%; left: 0; animation-delay: 1.2s; }
.af-code .af-lines { display: flex; flex-direction: column; gap: 4px; margin-top: 6px; }
.af-code .af-lines i { height: 5px; border-radius: 3px; background: var(--border); }
.af-code .af-lines i:nth-child(1) { width: 64px; background: linear-gradient(90deg, rgba(111,59,255,.5), rgba(59,130,255,.5)); }
.af-code .af-lines i:nth-child(2) { width: 48px; } .af-code .af-lines i:nth-child(3) { width: 56px; }
.af-sec { bottom: 2%; right: 6%; animation-delay: 2s; }

/* Floating labels with dotted connectors */
.av-label {
  position: absolute; z-index: 4; font-family: var(--font-head); font-weight: 600; font-size: 12.5px;
  color: var(--dark); padding: 8px 16px; border-radius: 99px;
  background: rgba(255,255,255,.92); border: 1px solid var(--border); box-shadow: 0 10px 26px rgba(20,20,43,.1);
  animation: chipFloat 5s ease-in-out infinite;
}
.av-label::before { content: ''; position: absolute; top: 50%; height: 1.5px; width: 44px; border-top: 2px dotted rgba(111,59,255,.55); }
.al-1 { top: 16%; left: 4%; } .al-1::before { right: calc(100% + 8px); }
.al-2 { top: 2%; right: 16%; } .al-2::before { left: calc(100% + 8px); animation-delay: .5s; }
.al-3 { top: 52%; left: -2%; } .al-3::before { right: calc(100% + 8px); animation-delay: 1s; }
.al-4 { bottom: 30%; right: -2%; } .al-4::before { left: calc(100% + 8px); animation-delay: 1.5s; }
.al-5 { bottom: 12%; left: 20%; } .al-5::before { right: calc(100% + 8px); animation-delay: 2s; }

/* ---------- 11e. Featured Work ---------- */
.work-section { position: relative; background: var(--bg); }
.work-slider { position: relative; }
.work-viewport { overflow: hidden; padding: 10px 0 30px; cursor: grab; touch-action: pan-y; }
.work-viewport.dragging { cursor: grabbing; }
.work-track { display: flex; will-change: transform; }
.work-slide { flex: 0 0 20%; padding: 0 12px; display: block; color: inherit; }
.work-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow); height: 100%; display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  position: relative;
}
.work-card:hover { transform: translateY(-10px); box-shadow: 0 26px 56px var(--shadow), 0 0 0 1px rgba(111,59,255,.1), 0 12px 40px var(--glow); }
.wc-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.wc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.work-card:hover .wc-img img { transform: scale(1.09); }
.wc-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(19,26,52,.4)); }
.wc-cat { position: absolute; top: 14px; left: 14px; z-index: 2; font-family: var(--font-head); font-size: 10.5px; font-weight: 600; letter-spacing: .08em;
  padding: 6px 13px; border-radius: 99px; background: rgba(255,255,255,.92); color: var(--dark); backdrop-filter: blur(8px); }
.wc-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.wc-body h3 { font-size: 18px; margin-bottom: 8px; font-weight: 700; }
.wc-body p { font-size: 13.5px; color: var(--text); margin-bottom: 18px; flex: 1; }
.wc-link { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--primary); }
.wc-link svg { width: 15px; height: 15px; transition: transform .35s var(--ease); }
.work-card:hover .wc-link svg { transform: translateX(6px); }

.work-nav { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 34px; }
.work-arrow { width: 52px; height: 52px; border-radius: 50%; background: #fff; border: 1.5px solid var(--border); color: var(--primary);
  display: grid; place-items: center; box-shadow: 0 6px 18px var(--shadow); transition: all .35s var(--ease); }
.work-arrow:hover { border-color: transparent; background: var(--gradient); color: #fff; transform: translateY(-3px); box-shadow: 0 14px 32px var(--glow); }
.work-arrow svg { width: 20px; height: 20px; }
.work-dots { display: flex; gap: 8px; }
.work-dot { width: 9px; height: 9px; border-radius: 99px; background: #D4DAEA; transition: all .4s var(--ease); cursor: pointer; border: none; padding: 0; }
.work-dot.active { width: 30px; background: var(--gradient); }
.work-more { text-align: center; margin-top: 52px; }

/* Outline button with gradient fill on hover */
.btn-outline { background: #fff; color: var(--primary); border: 1.5px solid rgba(111,59,255,.45); box-shadow: 0 4px 16px var(--shadow); position: relative; z-index: 0; }
.btn-outline::before { content: ''; position: absolute; inset: -1px; z-index: -1; border-radius: inherit; background: var(--gradient); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.btn-outline:hover { color: #fff; border-color: transparent; transform: translateY(-3px); box-shadow: 0 16px 38px var(--glow); }
.btn-outline:hover::before { transform: scaleX(1); }

/* Approach + work responsive */
@media (max-width: 1280px) {
  .approach-grid { gap: 48px; }
  .ap-steps { gap: 12px; }
  .ap-step { padding: 22px 14px 20px; }
  .af-chart { right: 0; } .af-code { left: 0; } .af-sec { right: 2%; }
  .work-slide { flex-basis: 25%; }
}
@media (max-width: 1024px) {
  .approach-grid { grid-template-columns: 1fr; gap: 64px; }
  .approach-copy { max-width: 760px; }
  .ap-steps { grid-template-columns: repeat(3, 1fr); }
  .ap-track { display: none; }
  .approach-visual { min-height: 560px; margin-top: 10px; }
  .work-slide { flex-basis: 50%; }
}
@media (max-width: 640px) {
  .ap-steps { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .approach-visual { min-height: 460px; }
  .av-platform { width: 300px; height: 80px; }
  .av-float { padding: 11px 14px; }
  .av-float .af-ico { width: 34px; height: 34px; }
  .av-label { font-size: 11px; padding: 6px 12px; }
  .av-label::before { width: 26px; }
  .al-1 { left: 0; } .al-3 { left: 0; } .al-5 { left: 8%; }
  .work-slide { flex-basis: 100%; padding: 0 8px; }
  .work-arrow { width: 46px; height: 46px; }
  .work-more { margin-top: 40px; }
}

/* ---------- 11f. Why Choose Sphere Digital IT ---------- */
.why-section { position: relative; overflow: hidden; background: var(--bg); }
.why-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.why-bg .sec-blob.wb-1 { width: 600px; height: 600px; top: -180px; right: -150px; background: radial-gradient(circle at 40% 40%, rgba(111,59,255,.26), rgba(111,59,255,0) 70%); }
.why-bg .sec-blob.wb-2 { width: 520px; height: 520px; bottom: -160px; left: -150px; background: radial-gradient(circle at 60% 60%, rgba(59,130,255,.22), rgba(59,130,255,0) 70%); }
.why-bg .wd-dots { top: auto; bottom: 110px; left: auto; right: 60px; }

.why-particle { position: absolute; border-radius: 50%; background: var(--gradient); opacity: .3; animation: particleFloat 7s ease-in-out infinite; }
.why-particle.p1 { width: 8px; height: 8px; top: 16%; left: 7%; }
.why-particle.p2 { width: 5px; height: 5px; top: 66%; right: 12%; animation-delay: 1.6s; }
.why-particle.p3 { width: 6px; height: 6px; bottom: 20%; left: 30%; animation-delay: 3.2s; }
@keyframes particleFloat { 0%,100% { translate: 0 0; opacity: .2; } 50% { translate: 0 -22px; opacity: .45; } }

/* Grid is scoped to avoid clashing with services.php .why-grid (4-col) */
.why-section .why-grid { display: grid; grid-template-columns: 55% 45%; gap: 64px; align-items: center; position: relative; z-index: 1; }
.why-copy { max-width: 640px; }
.why-copy h2 { font-size: clamp(2.2rem, 3.8vw, 3.3rem); line-height: 1.16; margin: 26px 0 22px; }
.why-copy > p { font-size: 1.08rem; max-width: 600px; }
.why-divider { display: block; width: 120px; height: 3px; margin-top: 36px; border-radius: 99px; background: var(--gradient); box-shadow: 0 6px 16px var(--glow); position: relative; }
.why-divider::before { content: ''; position: absolute; right: -6px; top: -6px; width: 15px; height: 15px; border-radius: 50%; background: var(--gradient-soft); border: 1px solid rgba(111,59,255,.25); }

/* Feature grid 3x2 */
.why-section .why-feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 96px; position: relative; z-index: 1; }
.why-section .why-card { padding: 30px 28px; background: rgba(255,255,255,.82); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.why-section .why-card:hover { transform: translateY(-10px); box-shadow: 0 28px 60px var(--shadow), 0 0 0 1px rgba(111,59,255,.1), 0 14px 44px var(--glow); }
.why-section .why-ico {
  width: 60px; height: 60px; border-radius: 50%; flex: none;
  background: var(--gradient); color: #fff; display: grid; place-items: center;
  margin-bottom: 20px; box-shadow: 0 12px 28px var(--glow);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  animation: chipFloat 5.5s ease-in-out infinite;
}
.why-section .why-card:hover .why-ico { transform: translateY(-5px) scale(1.1) rotate(-5deg); box-shadow: 0 18px 40px var(--glow); }
.why-section .why-ico svg { width: 26px; height: 26px; }
.why-section .why-card h3 { font-size: 18px; margin-bottom: 10px; font-weight: 700; }
.why-section .why-card p { font-size: 14px; line-height: 1.7; }

/* Rocket composition */
.why-visual { position: relative; min-height: 640px; display: flex; align-items: center; justify-content: center; }
.rv-stage { position: relative; width: 100%; max-width: 480px; height: 640px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.rv-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(111,59,255,.16), rgba(111,59,255,0) 66%); }
.rv-platform { position: absolute; bottom: 6%; left: 50%; transform: translateX(-50%); width: 380px; height: 104px; border-radius: 50%; background: radial-gradient(ellipse at center, rgba(111,59,255,.15), rgba(111,59,255,0) 70%); }
.rv-orbit { position: absolute; top: 50%; left: 50%; width: 420px; height: 420px; margin: -210px 0 0 -210px; will-change: transform; }
.rv-orbit-2 { width: 330px; height: 330px; margin: -165px 0 0 -165px; }
.rv-orbit svg { width: 100%; height: 100%; overflow: visible; }

.rv-rocket { position: relative; z-index: 3; width: 130px; margin-top: -26px; filter: drop-shadow(0 30px 40px rgba(111,59,255,.22)); animation: rocketFloat 5s ease-in-out infinite; will-change: transform; }
@keyframes rocketFloat { 0%,100% { translate: 0 0; } 50% { translate: 0 -18px; } }

/* Rocket shapes (pure CSS) */
.rv-nose { position: relative; z-index: 2; width: 62px; height: 58px; margin: 0 auto; background: var(--gradient); background-size: 200% 200%; animation: gradShift 5s ease infinite; clip-path: polygon(50% 0, 100% 100%, 0 100%); }
.rv-nose::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,.28); clip-path: polygon(50% 0, 100% 100%, 0 100%); }
.rv-body {
  position: relative; width: 78px; height: 172px; margin: 0 auto;
  border-radius: 26px 26px 22px 22px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F1FF 66%, #E7E0FF 100%);
  border: 1px solid #E8ECF5;
  box-shadow: inset 0 0 26px rgba(111,59,255,.07), 0 20px 44px rgba(20,20,43,.14);
}
.rv-body::after { content: ''; position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); width: 34px; height: 14px; border-radius: 7px; background: #1B2036; }
.rv-window {
  position: absolute; top: 72px; left: 50%; transform: translateX(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, #E0D8FF 72%);
  border: 3px solid rgba(111,59,255,.35); box-shadow: 0 6px 18px var(--glow);
  display: grid; place-items: center; z-index: 2;
}
.rv-window i { width: 15px; height: 15px; border-radius: 50%; background: radial-gradient(circle at 40% 35%, rgba(111,59,255,.55), rgba(59,130,255,.75)); }
.rv-fin { position: absolute; width: 36px; height: 68px; background: var(--gradient); opacity: .95; }
.rv-fin-l { left: -14px; bottom: 64px; border-radius: 16px 5px 14px 5px; transform: skewY(-14deg); }
.rv-fin-r { right: -14px; bottom: 64px; border-radius: 5px 16px 5px 14px; transform: skewY(14deg); }
.rv-flame {
  position: relative; width: 26px; height: 58px; margin: -4px auto 0; opacity: .9;
  background: linear-gradient(180deg, #6F3BFF, #3B82FF);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  filter: blur(1px); transform-box: fill-box; transform-origin: 50% 0;
  animation: flameFlick 1.1s ease-in-out infinite;
}
@keyframes flameFlick { 0%,100% { transform: scaleY(1); opacity: .85; } 50% { transform: scaleY(1.35); opacity: 1; } }

.rv-smoke { position: absolute; bottom: 30%; left: 50%; border-radius: 50%; background: radial-gradient(circle, rgba(111,59,255,.3), rgba(111,59,255,0) 70%); filter: blur(8px); animation: smokePuff 4.5s ease-in-out infinite; }
.rv-smoke.s1 { width: 90px; height: 90px; margin-left: -64px; }
.rv-smoke.s2 { width: 120px; height: 120px; margin-left: 10px; animation-delay: 1.4s; }
.rv-smoke.s3 { width: 70px; height: 70px; margin-left: -18px; animation-delay: 2.8s; }
@keyframes smokePuff { 0%,100% { transform: scale(.7) translateY(0); opacity: .3; } 50% { transform: scale(1.15) translateY(-14px); opacity: .55; } }

/* Floating stat cards */
.rv-stat {
  position: absolute; z-index: 4; display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-radius: 16px; min-width: 196px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(232,236,245,.95); box-shadow: 0 18px 44px rgba(20,20,43,.14);
  animation: chipFloat 6s ease-in-out infinite;
}
.rv-stat .rs-ico { width: 40px; height: 40px; flex: none; border-radius: 12px; background: var(--gradient); color: #fff; display: grid; place-items: center; box-shadow: 0 8px 20px var(--glow); }
.rv-stat .rs-ico svg { width: 18px; height: 18px; }
.rv-stat strong { font-family: var(--font-head); font-size: 20px; color: var(--dark); line-height: 1.1; }
.rv-stat small { display: block; font-size: 11.5px; color: var(--text-light); margin-top: 2px; }
.rv-stat .rs-chart { width: 88px; height: 22px; margin-top: 6px; }
.rv-stat .rs-chart polyline { fill: none; stroke: var(--primary); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.rs-1 { top: 6%; left: 0; animation-delay: 0s; }
.rs-2 { top: 18%; right: 0; animation-delay: .9s; }
.rs-3 { bottom: 22%; left: -2%; animation-delay: 1.8s; }
.rs-4 { bottom: 8%; right: 4%; animation-delay: 2.7s; }

@media (max-width: 1280px) {
  .why-section .why-grid { gap: 48px; }
  .rv-stage { max-width: 420px; }
}
@media (max-width: 1024px) {
  .why-section .why-grid { grid-template-columns: 1fr; gap: 56px; }
  .why-copy { max-width: 720px; }
  .why-visual { min-height: 560px; }
  .why-section .why-feats { grid-template-columns: repeat(2, 1fr); }
  .tech-shell { padding: 60px 40px 52px; }
}
@media (max-width: 640px) {
  .why-section .why-feats { grid-template-columns: 1fr; }
  .why-visual { min-height: 500px; }
  .rv-stage { height: 560px; }
  .rv-orbit { width: 320px; height: 320px; margin: -160px 0 0 -160px; }
  .rv-orbit-2 { width: 260px; height: 260px; margin: -130px 0 0 -130px; }
  .rv-stat { min-width: 0; padding: 11px 14px; gap: 10px; }
  .rv-stat .rs-chart { width: 64px; }
  .rs-1 { top: 4%; } .rs-2 { top: 14%; }
  .tech-shell { padding: 48px 22px 44px; }
  .tech-grid { gap: 10px; }
}

/* ---------- 12. About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.08fr; gap: 80px; align-items: center; }
.about-media { position: relative; }
.about-media .main-img {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 30px 70px rgba(20,20,43,.16);
  position: relative;
}
.about-media .main-img img { width: 100%; aspect-ratio: 4/4.6; object-fit: cover; transition: transform 1.2s var(--ease); }
.about-media .main-img:hover img { transform: scale(1.06); }
.about-media .main-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(19,26,52,.35)); }

.about-media .float-card {
  position: absolute; z-index: 3;
  background: rgba(255,255,255,.92); backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: 18px;
  box-shadow: 0 24px 50px rgba(20,20,43,.16);
  padding: 18px 22px; display: flex; align-items: center; gap: 14px;
}
.about-media .float-card .fc-badge {
  width: 46px; height: 46px; border-radius: 14px; background: var(--gradient);
  display: grid; place-items: center; color: #fff; flex: none;
}
.about-media .float-card .fc-badge svg { width: 22px; height: 22px; }
.about-media .float-card strong { font-family: var(--font-head); font-size: 17px; color: var(--dark); display: block; line-height: 1.2; }
.about-media .float-card small { font-size: 12.5px; color: var(--text-light); }
.float-card.fc-a { top: 40px; left: -36px; animation: chipFloat 6s ease-in-out infinite; }
.float-card.fc-b { bottom: 56px; right: -30px; animation: chipFloat 7s ease-in-out infinite .9s; }

.about-media .ring-badge {
  position: absolute; top: -28px; right: 24px; width: 112px; height: 112px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border); box-shadow: 0 20px 40px var(--shadow);
  display: grid; place-items: center; text-align: center;
}
.about-media .ring-badge svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.about-media .ring-badge strong { font-family: var(--font-head); font-size: 26px; color: var(--primary); line-height: 1; }
.about-media .ring-badge small { font-size: 10px; color: var(--text); max-width: 60px; line-height: 1.3; }

.about-content h2 { font-size: clamp(2.1rem, 3.6vw, 3rem); margin: 24px 0 20px; }
.about-content > p { margin-bottom: 18px; font-size: 1.05rem; }

.about-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 30px 0; }
.about-feat { display: flex; gap: 14px; align-items: flex-start; padding: 18px; border-radius: 16px; background: var(--bg-alt); border: 1px solid var(--border); transition: all .4s var(--ease); }
.about-feat:hover { background: #fff; box-shadow: 0 12px 30px var(--shadow); transform: translateY(-3px); }
.about-feat .af-ico { width: 40px; height: 40px; flex: none; border-radius: 12px; background: var(--gradient-soft); display: grid; place-items: center; color: var(--primary); }
.about-feat .af-ico svg { width: 19px; height: 19px; }
.about-feat strong { font-family: var(--font-head); font-size: 15px; color: var(--dark); display: block; }
.about-feat small { font-size: 13px; color: var(--text-light); }

/* Mission / Vision / Timeline */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.mv-card { padding: 26px; border-radius: 18px; background: #fff; border: 1px solid var(--border); box-shadow: 0 10px 30px var(--shadow); }
.mv-card .mv-ico { width: 44px; height: 44px; border-radius: 13px; background: var(--gradient); display: grid; place-items: center; color: #fff; margin-bottom: 14px; }
.mv-card .mv-ico svg { width: 20px; height: 20px; }
.mv-card h4 { font-size: 17px; margin-bottom: 8px; }
.mv-card p { font-size: 14.5px; }

/* Timeline */
.timeline { margin-top: 34px; position: relative; padding-left: 30px; }
.timeline::before { content: ''; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(180deg, var(--primary), var(--secondary)); border-radius: 2px; }
.tl-item { position: relative; padding-bottom: 26px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ''; position: absolute; left: -30px; top: 6px; width: 20px; height: 20px; border-radius: 50%;
  background: #fff; border: 2.5px solid var(--primary); box-shadow: 0 0 0 5px rgba(111,59,255,.12);
}
.tl-item .tl-year { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--primary); }
.tl-item h5 { font-size: 16px; margin: 3px 0 4px; }
.tl-item p { font-size: 14px; color: var(--text); }

/* ---------- 13. Why Choose ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.why-card { padding: 34px 30px; }
.why-card .wy-ico {
  width: 58px; height: 58px; border-radius: 18px;
  background: var(--gradient-soft); display: grid; place-items: center; color: var(--primary);
  margin-bottom: 22px; transition: all .45s var(--ease);
}
.why-card:hover .wy-ico { background: var(--gradient); color: #fff; transform: rotate(-6deg) scale(1.06); box-shadow: 0 12px 28px var(--glow); }
.why-card .wy-ico svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 18px; margin-bottom: 10px; font-weight: 700; }
.why-card p { font-size: 14.5px; }
.why-card .wy-num { position: absolute; top: 22px; right: 26px; font-family: var(--font-head); font-weight: 800; font-size: 44px; color: rgba(111,59,255,.08); line-height: 1; }

/* ---------- 14. Process ---------- */
.process-wrap { position: relative; }
.process-track { position: absolute; top: 46px; left: 8%; right: 8%; height: 2px; background: var(--border); border-radius: 2px; z-index: 0; }
.process-fill { position: absolute; top: 0; left: 0; height: 100%; width: 0; background: var(--gradient); border-radius: 2px; box-shadow: 0 0 14px var(--glow); }
.process-steps { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; position: relative; z-index: 1; }
.process-step { text-align: center; cursor: pointer; }
.process-step .ps-node {
  width: 92px; height: 92px; margin: 0 auto 18px; border-radius: 50%;
  background: #fff; border: 1.5px solid var(--border);
  display: grid; place-items: center; color: var(--text-light);
  transition: all .45s var(--ease); position: relative;
  box-shadow: 0 6px 20px rgba(20,20,43,.06);
}
.process-step .ps-node svg { width: 30px; height: 30px; transition: all .45s var(--ease); }
.process-step:hover .ps-node { transform: translateY(-6px); border-color: rgba(111,59,255,.4); color: var(--primary); box-shadow: 0 16px 36px var(--glow); }
.process-step.active .ps-node { background: var(--gradient); color: #fff; border-color: transparent; box-shadow: 0 16px 40px var(--glow); }
.process-step.active .ps-node::after {
  content: ''; position: absolute; inset: -8px; border-radius: 50%;
  border: 2px solid rgba(111,59,255,.3); animation: ringPulse 2.4s ease-out infinite;
}
@keyframes ringPulse { 0% { transform: scale(.9); opacity: 1; } 100% { transform: scale(1.35); opacity: 0; } }
.process-step .ps-num { font-family: var(--font-head); font-weight: 700; font-size: 13px; color: var(--primary); letter-spacing: .08em; }
.process-step h4 { font-size: 16px; margin-top: 4px; font-weight: 600; }
.process-step p { font-size: 12.5px; color: var(--text-light); margin-top: 4px; display: none; }

/* ---------- 15. Solutions ---------- */
.solutions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.solution-card { padding: 0; overflow: hidden; }
.solution-card .sol-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.solution-card .sol-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.solution-card:hover .sol-img img { transform: scale(1.09); }
.solution-card .sol-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(19,26,52,.55)); }
.solution-card .sol-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  font-family: var(--font-head); font-size: 11.5px; font-weight: 600; letter-spacing: .05em;
  padding: 7px 14px; border-radius: 99px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(8px); color: var(--dark);
}
.solution-card .sol-body { padding: 26px 28px 28px; position: relative; }
.solution-card .sol-ico {
  width: 46px; height: 46px; border-radius: 14px; background: var(--gradient-soft);
  display: grid; place-items: center; color: var(--primary); margin-bottom: 16px;
}
.solution-card .sol-ico svg { width: 21px; height: 21px; }
.solution-card h3 { font-size: 19px; margin-bottom: 8px; font-weight: 700; }
.solution-card p { font-size: 14.5px; margin-bottom: 16px; }
.solution-card .learn { color: var(--primary); font-family: var(--font-head); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 7px; }
.solution-card .learn svg { width: 15px; height: 15px; transition: transform .35s var(--ease); }
.solution-card:hover .learn svg { transform: translateX(6px); }

/* ---------- 16. Technologies We Work With ---------- */
.tech-section { position: relative; overflow: hidden; }
.tech-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.tech-bg .sec-blob.tb-1 { width: 540px; height: 540px; top: -180px; left: -140px; background: radial-gradient(circle at 40% 40%, rgba(111,59,255,.24), rgba(111,59,255,0) 70%); }
.tech-bg .sec-blob.tb-2 { width: 500px; height: 500px; bottom: -160px; right: -120px; background: radial-gradient(circle at 60% 60%, rgba(59,130,255,.2), rgba(59,130,255,0) 70%); }

.tech-shell {
  position: relative; z-index: 1; border-radius: 32px; overflow: hidden;
  padding: 76px 64px 62px;
  background: rgba(255,255,255,.74); backdrop-filter: blur(24px) saturate(160%); -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(232,236,245,.9);
  box-shadow: 0 44px 110px rgba(20,20,43,.1);
}
.tech-shell::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, rgba(111,59,255,.05), rgba(59,130,255,.05));
}
.tech-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 14px; position: relative; z-index: 1; }
.tech-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 24px 12px; border-radius: 18px;
  background: #fff; border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(20,20,43,.05);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  cursor: default;
}
.tech-card:hover {
  transform: translateY(-7px) scale(1.03);
  box-shadow: 0 20px 44px var(--shadow), 0 0 0 1px rgba(111,59,255,.12), 0 10px 30px var(--glow);
  border-color: rgba(111,59,255,.28);
}
.tech-card img { width: 40px; height: 40px; transition: transform .4s var(--ease); }
.tech-card:hover img { transform: scale(1.18) rotate(-4deg); }
.tech-card span { font-family: var(--font-head); font-weight: 600; font-size: 13.5px; color: var(--dark); }
.tech-more { text-align: center; margin-top: 54px; position: relative; z-index: 1; }

/* ---------- 17. Portfolio ---------- */
.filter-bar { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 48px; }
.filter-btn {
  font-family: var(--font-head); font-weight: 600; font-size: 14.5px;
  padding: 11px 24px; border-radius: var(--radius-pill);
  background: #fff; border: 1.5px solid var(--border); color: var(--text);
  transition: all .35s var(--ease);
}
.filter-btn:hover { border-color: rgba(111,59,255,.4); color: var(--primary); transform: translateY(-2px); }
.filter-btn.active { background: var(--gradient); color: #fff; border-color: transparent; box-shadow: 0 10px 24px var(--glow); }

.portfolio-grid { columns: 3; column-gap: 24px; }
.portfolio-item { break-inside: avoid; margin-bottom: 24px; position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.portfolio-item img { width: 100%; transition: transform 1s var(--ease); }
.portfolio-item:nth-child(even) img { aspect-ratio: auto; }
.portfolio-item .pf-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(19,26,52,0) 30%, rgba(19,26,52,.82));
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
  opacity: 0; transition: opacity .5s var(--ease);
}
.portfolio-item:hover .pf-overlay { opacity: 1; }
.portfolio-item:hover img { transform: scale(1.08); }
.pf-overlay .pf-cat { font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.75); }
.pf-overlay h3 { color: #fff; font-size: 20px; margin: 6px 0 14px; }
.pf-overlay .pf-actions { display: flex; gap: 10px; transform: translateY(16px); transition: transform .5s var(--ease); }
.portfolio-item:hover .pf-actions { transform: translateY(0); }
.pf-actions a {
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  padding: 9px 18px; border-radius: 99px; display: inline-flex; align-items: center; gap: 7px;
  transition: all .3s var(--ease);
}
.pf-actions .vis { background: #fff; color: var(--dark); }
.pf-actions .vis:hover { background: var(--gradient); color: #fff; }
.pf-actions .case { background: rgba(255,255,255,.16); color: #fff; border: 1px solid rgba(255,255,255,.3); backdrop-filter: blur(8px); }
.pf-actions .case:hover { background: #fff; color: var(--primary); }
.pf-actions svg { width: 14px; height: 14px; }

/* ---------- 18. Industries ---------- */
.industries-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.industry-card { text-align: center; padding: 30px 18px; }
.industry-card .ind-ico {
  width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--gradient-soft); display: grid; place-items: center; color: var(--primary);
  transition: all .45s var(--ease);
}
.industry-card:hover .ind-ico { background: var(--gradient); color: #fff; transform: translateY(-5px) scale(1.05); box-shadow: 0 14px 30px var(--glow); }
.industry-card .ind-ico svg { width: 26px; height: 26px; }
.industry-card h3 { font-size: 15.5px; font-weight: 600; }

/* ---------- 19. Testimonials ---------- */
.testi-section { position: relative; overflow: hidden; }
.testi-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.testi-bg .sec-blob.tb-1 { width: 560px; height: 560px; top: -170px; left: -140px; background: radial-gradient(circle at 40% 40%, rgba(111,59,255,.24), rgba(111,59,255,0) 70%); }
.testi-bg .sec-blob.tb-2 { width: 500px; height: 500px; bottom: -150px; right: -130px; background: radial-gradient(circle at 60% 60%, rgba(59,130,255,.2), rgba(59,130,255,0) 70%); }
.testi-bg .td-dots { top: auto; bottom: 120px; left: 60px; }

.testi-slider { position: relative; }
.testi-viewport { overflow: hidden; padding: 10px 0 34px; cursor: grab; touch-action: pan-y; user-select: none; -webkit-user-select: none; }
.testi-viewport.dragging { cursor: grabbing; }
.testi-track { display: flex; will-change: transform; }
.testi-slide { flex: 0 0 25%; padding: 0 12px; }
.testi-card {
  position: relative; padding: 40px 34px; min-height: 340px; display: flex; flex-direction: column;
  border-radius: 24px;
  background: rgba(255,255,255,.82); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(232,236,245,.95);
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.testi-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 52px var(--shadow), 0 0 0 1px rgba(111,59,255,.1), 0 12px 40px var(--glow);
  border-color: rgba(111,59,255,.25);
}
.testi-card .t-quote {
  position: absolute; top: 26px; right: 30px; width: 46px; height: 46px; color: rgba(111,59,255,.16);
}
.testi-card .t-quote svg { width: 100%; height: 100%; fill: currentColor; }
.testi-card .t-stars { display: flex; gap: 4px; color: #F5B301; margin-bottom: 18px; }
.testi-card .t-stars svg { width: 18px; height: 18px; fill: currentColor; }
.testi-card blockquote { font-size: 15.5px; line-height: 1.85; color: var(--dark); font-weight: 500; flex: 1; }
.testi-card .t-who { display: flex; align-items: center; gap: 14px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--border); }
.testi-card .t-who img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid #fff; box-shadow: 0 6px 16px var(--shadow); }
.testi-card .t-who strong { font-family: var(--font-head); font-size: 15.5px; color: var(--dark); display: block; line-height: 1.3; }
.testi-card .t-who small { font-size: 12.5px; color: var(--text-light); }

.testi-nav { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 34px; }
.testi-dots { display: flex; gap: 8px; }
.testi-dot { width: 9px; height: 9px; border-radius: 99px; background: #D4DAEA; transition: all .4s var(--ease); cursor: pointer; border: none; padding: 0; }
.testi-dot.active { width: 30px; background: var(--gradient); }
.testi-arrow {
  width: 50px; height: 50px; border-radius: 50%; background: #fff; border: 1.5px solid var(--border);
  display: grid; place-items: center; color: var(--primary); transition: all .35s var(--ease);
  box-shadow: 0 6px 18px var(--shadow);
}
.testi-arrow:hover { background: var(--gradient); color: #fff; border-color: transparent; transform: translateY(-3px); box-shadow: 0 14px 32px var(--glow); }
.testi-arrow svg { width: 20px; height: 20px; }

/* ---------- 19b. Case Studies ---------- */
.cs-section { position: relative; overflow: hidden; }
.cs-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.cs-bg .sec-blob.cb-1 { width: 540px; height: 540px; top: -170px; right: -130px; background: radial-gradient(circle at 40% 40%, rgba(111,59,255,.22), rgba(111,59,255,0) 70%); }
.cs-bg .sec-blob.cb-2 { width: 480px; height: 480px; bottom: -150px; left: -130px; background: radial-gradient(circle at 60% 60%, rgba(59,130,255,.18), rgba(59,130,255,0) 70%); }

.cs-shell {
  position: relative; z-index: 1; border-radius: 32px; overflow: hidden;
  padding: 84px 64px 72px;
  background: rgba(255,255,255,.78); backdrop-filter: blur(24px) saturate(160%); -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(232,236,245,.9);
  box-shadow: 0 44px 110px rgba(20,20,43,.1);
}
.cs-shell::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, rgba(111,59,255,.05), rgba(59,130,255,.05));
}
.cs-shell .section-head { position: relative; z-index: 1; }

.cs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 1; }
.cs-card {
  display: flex; flex-direction: column; border-radius: 24px; overflow: hidden;
  background: #fff; border: 1px solid var(--border);
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
  position: relative;
}
.cs-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 56px var(--shadow), 0 0 0 1px rgba(111,59,255,.1), 0 14px 44px var(--glow);
  border-color: rgba(111,59,255,.28);
}
.cs-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.cs-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.cs-card:hover .cs-img img { transform: scale(1.09); }
.cs-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(19,26,52,.45)); }
.cs-ico {
  position: absolute; bottom: 14px; left: 14px; z-index: 2;
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--gradient); color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 22px var(--glow);
  transition: transform .4s var(--ease);
}
.cs-card:hover .cs-ico { transform: scale(1.1) rotate(-5deg); }
.cs-ico svg { width: 20px; height: 20px; }
.cs-ind {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--font-head); font-size: 10.5px; font-weight: 600; letter-spacing: .08em;
  padding: 6px 13px; border-radius: 99px;
  background: rgba(255,255,255,.92); color: var(--dark); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.cs-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.cs-cat {
  font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 8px;
}
.cs-body h3 { font-size: 17.5px; margin-bottom: 8px; font-weight: 700; line-height: 1.3; }
.cs-body p { font-size: 13.5px; color: var(--text); margin-bottom: 18px; flex: 1; }
.cs-link { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--primary); }
.cs-link svg { width: 15px; height: 15px; transition: transform .35s var(--ease); }
.cs-card:hover .cs-link svg { transform: translateX(6px); }
.cs-more { text-align: center; margin-top: 54px; position: relative; z-index: 1; }

@media (max-width: 1280px) {
  .testi-slide { flex-basis: 33.3333%; }
  .cs-grid { grid-template-columns: repeat(3, 1fr); }
  .cs-shell { padding: 70px 44px 60px; }
}
@media (max-width: 1024px) {
  .testi-slide { flex-basis: 50%; }
  .cs-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-shell { padding: 60px 36px 52px; }
}
@media (max-width: 640px) {
  .testi-slide { flex-basis: 100%; padding: 0 8px; }
  .testi-arrow { width: 46px; height: 46px; }
  .cs-grid { grid-template-columns: 1fr; gap: 18px; }
  .cs-shell { padding: 48px 20px 44px; }
}

/* ---------- 19c. SEO & Digital Marketing ---------- */
.seo-section { position: relative; overflow: hidden; }
.seo-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.seo-bg .sec-blob.seo-1 { width: 580px; height: 580px; top: -170px; left: -140px; background: radial-gradient(circle at 40% 40%, rgba(111,59,255,.24), rgba(111,59,255,0) 70%); }
.seo-bg .sec-blob.seo-2 { width: 500px; height: 500px; bottom: -150px; right: -130px; background: radial-gradient(circle at 60% 60%, rgba(59,130,255,.2), rgba(59,130,255,0) 70%); }
.seo-bg .seo-dots { top: 120px; right: 60px; left: auto; }

.seo-grid { display: grid; grid-template-columns: 45% 55%; gap: 64px; align-items: center; position: relative; z-index: 1; }
.seo-copy { max-width: 600px; }
.seo-copy h2 { font-size: clamp(2.2rem, 3.8vw, 3.2rem); line-height: 1.16; margin: 26px 0 22px; }
.seo-copy > p { font-size: 1.06rem; max-width: 600px; margin-bottom: 48px; }

.seo-feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; z-index: 1; }
.seo-feat { padding: 26px 24px; background: rgba(255,255,255,.82); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.seo-feat:hover { transform: translateY(-8px); box-shadow: 0 26px 54px var(--shadow), 0 0 0 1px rgba(111,59,255,.1), 0 12px 40px var(--glow); }
.seo-feat .sf-ico {
  width: 54px; height: 54px; border-radius: 50%; flex: none;
  background: var(--gradient); color: #fff; display: grid; place-items: center;
  margin-bottom: 18px; box-shadow: 0 12px 26px var(--glow);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  animation: chipFloat 5.5s ease-in-out infinite;
}
.seo-feat:hover .sf-ico { transform: translateY(-4px) scale(1.08) rotate(-5deg); box-shadow: 0 18px 40px var(--glow); }
.seo-feat .sf-ico svg { width: 23px; height: 23px; }
.seo-feat h3 { font-size: 16.5px; margin-bottom: 8px; font-weight: 700; line-height: 1.3; }
.seo-feat p { font-size: 13.5px; line-height: 1.7; }

/* Dashboard composition */
.seo-visual { position: relative; min-height: 560px; display: flex; align-items: center; justify-content: center; }
.sd-glow { position: absolute; width: 520px; height: 520px; border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(111,59,255,.16), rgba(111,59,255,0) 66%); }
.sd-shell {
  position: relative; z-index: 2; width: min(100%, 600px); border-radius: 20px; overflow: hidden;
  background: #fff; border: 1px solid var(--border);
  box-shadow: 0 44px 90px rgba(20,20,43,.2), 0 0 0 1px rgba(111,59,255,.06);
  animation: avFloat 8s ease-in-out infinite;
}
.sd-chrome { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: #F1F4FB; border-bottom: 1px solid var(--border); }
.sd-chrome span { width: 10px; height: 10px; border-radius: 50%; }
.sd-chrome span:nth-child(1) { background: #FF5F57; } .sd-chrome span:nth-child(2) { background: #FEBC2E; } .sd-chrome span:nth-child(3) { background: #28C840; }
.sd-chrome small { margin-left: auto; font-size: 11px; color: var(--text-light); font-family: var(--font-body); }
.sd-body { display: grid; grid-template-columns: 52px 1fr; }
.sd-side { background: #10142B; color: #fff; display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 16px 0; }
.sd-logo { width: 26px; height: 26px; border-radius: 8px; background: var(--gradient); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 12px; }
.sd-side i { width: 24px; height: 24px; border-radius: 8px; display: grid; place-items: center; color: #7C85A8; }
.sd-side i.on { background: var(--gradient); color: #fff; box-shadow: 0 4px 12px rgba(111,59,255,.5); }
.sd-side i svg { width: 13px; height: 13px; }
.sd-main { padding: 16px; display: flex; flex-direction: column; gap: 14px; background: linear-gradient(180deg, #FBFBFE, #fff); }
.sd-top h4 { font-size: 13.5px; font-weight: 700; font-family: var(--font-head); color: var(--dark); margin-bottom: 12px; }
.sd-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.sd-kpis .kpi { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 10px 12px; box-shadow: 0 2px 10px rgba(20,20,43,.04); }
.sd-kpis .kpi small { display: block; font-size: 9px; color: var(--text-light); text-transform: uppercase; letter-spacing: .05em; font-weight: 600; }
.sd-kpis .kpi strong { display: block; font-family: var(--font-head); font-size: 18px; color: var(--dark); margin-top: 2px; line-height: 1.1; }
.sd-kpis .kpi em { font-style: normal; font-size: 9.5px; font-weight: 700; }
.sd-kpis .kpi em.up { color: #22C55E; }

.sd-charts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sd-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 14px 14px 12px; box-shadow: 0 2px 12px rgba(20,20,43,.04); }
.sc-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.sc-head span { font-size: 11.5px; font-weight: 700; font-family: var(--font-head); color: var(--dark); }
.sc-head small { font-size: 9px; color: var(--text-light); }
.sd-growth { grid-column: 1 / -1; }
.sd-growth svg { width: 100%; height: 92px; display: block; }

.sd-donut { display: flex; flex-direction: column; }
.donut-wrap { display: flex; align-items: center; gap: 12px; }
.donut { width: 84px; height: 84px; transform: rotate(-90deg); flex: none; }
.donut .seg { transition: stroke-dasharray 1.4s var(--ease); }
.donut-wrap .donut-center { position: relative; margin-left: -84px; width: 84px; height: 84px; display: grid; place-items: center; align-content: center; }
.donut-center strong { font-family: var(--font-head); font-size: 15px; color: var(--dark); line-height: 1; }
.donut-center small { font-size: 8.5px; color: var(--text-light); }
.sd-donut .legend { list-style: none; display: flex; flex-direction: column; gap: 4px; margin-top: 10px; }
.sd-donut .legend li { display: flex; align-items: center; gap: 7px; font-size: 10px; color: var(--text); }
.sd-donut .legend i { width: 8px; height: 8px; border-radius: 3px; }

.sd-roi { display: flex; flex-direction: column; }
.roi-ico { width: 30px; height: 30px; border-radius: 9px; background: var(--gradient); color: #fff; display: grid; place-items: center; margin-bottom: 8px; }
.roi-ico svg { width: 15px; height: 15px; }
.roi-tag { font-size: 9px; text-transform: uppercase; letter-spacing: .06em; color: var(--primary); font-weight: 700; }
.sd-roi > strong { font-family: var(--font-head); font-size: 26px; color: var(--dark); line-height: 1.05; margin: 2px 0; }
.sd-roi > small { font-size: 9px; color: var(--text-light); margin-bottom: 8px; }
.roi-bars { display: flex; align-items: flex-end; gap: 4px; height: 34px; }
.roi-bars i { flex: 1; border-radius: 3px 3px 0 0; background: linear-gradient(180deg, #6F3BFF, #3B82FF); opacity: .9; }
.roi-bars i:nth-child(1) { height: 34%; } .roi-bars i:nth-child(2) { height: 48%; } .roi-bars i:nth-child(3) { height: 42%; }
.roi-bars i:nth-child(4) { height: 62%; } .roi-bars i:nth-child(5) { height: 56%; } .roi-bars i:nth-child(6) { height: 80%; } .roi-bars i:nth-child(7) { height: 100%; }

.sd-pos .pos-list { display: flex; flex-direction: column; gap: 6px; }
.pos-row { display: flex; align-items: center; gap: 8px; font-size: 10.5px; }
.pos-row b { font-weight: 600; color: var(--dark); flex: 1; }
.pos-tag { font-family: var(--font-head); font-size: 9.5px; font-weight: 700; padding: 2px 8px; border-radius: 99px; }
.pos-tag.p1 { background: rgba(111,59,255,.12); color: var(--primary); }
.pos-tag.p2 { background: rgba(59,130,255,.12); color: var(--secondary); }
.pos-tag.p3 { background: rgba(16,185,129,.12); color: #0E9F6E; }
.pos-tag.p4 { background: rgba(234,179,8,.14); color: #B45309; }
.pos-row em { font-style: normal; font-size: 9.5px; color: #22C55E; font-weight: 700; }

.sd-devices .dev-bars { display: flex; align-items: flex-end; justify-content: center; gap: 16px; height: 62px; margin-bottom: 8px; }
.dev-bars div { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.dev-bars i { width: 26px; border-radius: 6px 6px 0 0; background: var(--gradient); display: block; }
.dev-bars small { font-size: 9px; color: var(--text-light); }
.sd-devices .legend { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.sd-devices .legend li { display: flex; align-items: center; gap: 7px; font-size: 10px; color: var(--text); }
.sd-devices .legend i { width: 8px; height: 8px; border-radius: 3px; }

.sd-vitals { display: flex; flex-direction: column; gap: 7px; }
.vital { display: flex; align-items: center; gap: 8px; }
.vital span { font-size: 9.5px; font-weight: 700; color: var(--dark); width: 30px; flex: none; }
.vital i { flex: 1; height: 6px; border-radius: 99px; background: #EEF0F8; overflow: hidden; }
.vital i em { display: block; height: 100%; border-radius: 99px; background: var(--gradient); }
.vital b { font-size: 10px; color: var(--text); width: 22px; text-align: right; }

/* Floating cards */
.sd-float {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: 14px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(232,236,245,.95); box-shadow: 0 16px 38px rgba(20,20,43,.14);
  animation: chipFloat 6s ease-in-out infinite;
}
.sd-float .f-ico { width: 36px; height: 36px; flex: none; border-radius: 11px; background: var(--gradient); color: #fff; display: grid; place-items: center; box-shadow: 0 8px 18px var(--glow); }
.sd-float .f-ico svg { width: 16px; height: 16px; }
.sd-float strong { display: block; font-family: var(--font-head); font-size: 13px; color: var(--dark); line-height: 1.2; }
.sd-float small { font-size: 10.5px; color: var(--text-light); }
.sd-f1 { top: 2%; left: -6%; animation-delay: 0s; }
.sd-f2 { top: 38%; right: -8%; animation-delay: 1s; }
.sd-f3 { bottom: 4%; left: 2%; animation-delay: 2s; }

/* ---------- 19d. Digital Marketing Process ---------- */
.mp-section { position: relative; overflow: hidden; }
.mp-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.mp-bg .sec-blob.mp-1 { width: 520px; height: 520px; top: -160px; right: -120px; background: radial-gradient(circle at 40% 40%, rgba(111,59,255,.22), rgba(111,59,255,0) 70%); }
.mp-bg .sec-blob.mp-2 { width: 460px; height: 460px; bottom: -140px; left: -120px; background: radial-gradient(circle at 60% 60%, rgba(59,130,255,.18), rgba(59,130,255,0) 70%); }

.mp-shell {
  position: relative; z-index: 1; border-radius: 32px; overflow: hidden;
  padding: 76px 60px 66px;
  background: rgba(255,255,255,.78); backdrop-filter: blur(24px) saturate(160%); -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(232,236,245,.9); box-shadow: 0 44px 110px rgba(20,20,43,.1);
}
.mp-shell::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(135deg, rgba(111,59,255,.05), rgba(59,130,255,.05)); }
.mp-shell .section-head { position: relative; z-index: 1; }

.mp-timeline { position: relative; margin-top: 70px; }
.mp-track { position: absolute; top: 27px; left: 4%; right: 4%; height: 2px; z-index: 0;
  background-image: linear-gradient(90deg, rgba(111,59,255,.45) 30%, transparent 0);
  background-size: 10px 2px; background-repeat: repeat-x; }
.mp-fill { position: absolute; top: 0; left: 0; height: 2px; width: 0; background: var(--gradient); border-radius: 2px; box-shadow: 0 0 12px var(--glow); }
.mp-arrow { position: absolute; top: -8px; left: 0; width: 18px; height: 18px; border-radius: 50%; background: var(--gradient); color: #fff; display: grid; place-items: center; z-index: 1; box-shadow: 0 4px 12px var(--glow); }
.mp-arrow svg { width: 10px; height: 10px; }

.mp-steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; position: relative; z-index: 1; }
.mp-step { padding: 26px 16px 24px; border-radius: var(--radius); text-align: center;
  background: rgba(255,255,255,.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border); box-shadow: 0 4px 20px var(--shadow);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
  position: relative; overflow: hidden; }
.mp-step:hover { transform: translateY(-10px); box-shadow: 0 26px 56px var(--shadow), 0 0 0 1px rgba(111,59,255,.1), 0 12px 40px var(--glow); }
.mp-step .mp-node {
  width: 54px; height: 54px; margin: 0 auto 14px; border-radius: 50%;
  background: var(--gradient); color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 26px var(--glow); animation: chipFloat 5.5s ease-in-out infinite;
}
.mp-step .mp-node svg { width: 23px; height: 23px; }
.mp-step .mp-num { display: block; font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: .12em; color: var(--primary); margin-bottom: 6px; }
.mp-step h4 { font-size: 15.5px; margin-bottom: 8px; font-weight: 700; }
.mp-step p { font-size: 12.5px; line-height: 1.6; color: var(--text); }
.mp-step.active { border-color: rgba(111,59,255,.35); box-shadow: 0 10px 30px var(--shadow), 0 8px 26px rgba(111,59,255,.14); }
.mp-step.active .mp-num { color: var(--secondary); }

/* ---------- 19e. Final CTA ---------- */
.grow-section { position: relative; padding: var(--section-pad) 0; }
.grow-panel {
  position: relative; overflow: hidden; border-radius: 32px;
  background: linear-gradient(120deg, #6F3BFF 0%, #5B43F2 45%, #3B82FF 100%);
  padding: 72px 64px; box-shadow: 0 40px 100px rgba(111,59,255,.35);
}
.grow-waves { position: absolute; inset: 0; pointer-events: none; }
.grow-waves svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.gw-line { position: absolute; left: 0; right: 0; height: 1.5px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent); animation: gwMove 7s linear infinite; }
.gw-line.l1 { top: 22%; }
.gw-line.l2 { top: 68%; animation-delay: 3.5s; }
@keyframes gwMove { 0% { transform: translateX(-40%); opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { transform: translateX(40%); opacity: 0; } }
.grow-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.grow-copy { display: flex; align-items: center; gap: 28px; }
.grow-ico {
  width: 84px; height: 84px; border-radius: 50%; flex: none;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25);
  color: #fff; display: grid; place-items: center;
  box-shadow: 0 18px 40px rgba(19,26,52,.25); animation: chipFloat 5.5s ease-in-out infinite;
}
.grow-ico svg { width: 38px; height: 38px; }
.grow-copy h2 { color: #fff; font-size: clamp(1.7rem, 2.8vw, 2.4rem); margin-bottom: 12px; }
.grow-copy p { color: rgba(255,255,255,.85); font-size: 15.5px; max-width: 560px; }
.grow-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }

.btn-outline-light {
  background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.55);
  box-shadow: 0 6px 20px rgba(19,26,52,.15);
}
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; transform: translateY(-3px); box-shadow: 0 14px 34px rgba(19,26,52,.28); }
.btn-outline-light svg { width: 17px; height: 17px; }
.btn-white { background: #fff; color: var(--primary); box-shadow: 0 12px 32px rgba(19,26,52,.28); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 20px 46px rgba(19,26,52,.38); }
.btn-white .ripple { background: rgba(111,59,255,.22); }

@media (max-width: 1280px) {
  .seo-grid { gap: 48px; }
  .mp-steps { gap: 10px; }
  .mp-step { padding: 22px 12px 20px; }
  .sd-f1 { left: -2%; } .sd-f2 { right: -2%; }
  .grow-panel { padding: 60px 48px; }
}
@media (max-width: 1024px) {
  .seo-grid { grid-template-columns: 1fr; gap: 64px; }
  .seo-copy { max-width: 720px; }
  .seo-feats { grid-template-columns: repeat(2, 1fr); }
  .seo-visual { min-height: 540px; }
  .mp-steps { grid-template-columns: repeat(3, 1fr); gap: 24px 14px; }
  .mp-track { display: none; }
  .mp-shell { padding: 60px 36px 52px; }
  .grow-inner { grid-template-columns: 1fr; gap: 34px; }
  .grow-actions { justify-content: flex-start; }
}
@media (max-width: 640px) {
  .seo-feats { grid-template-columns: 1fr; }
  .seo-visual { min-height: 460px; }
  .sd-kpis { grid-template-columns: repeat(2, 1fr); }
  .sd-charts { grid-template-columns: 1fr; }
  .sd-growth { grid-column: auto; }
  .sd-f1 { left: 0; } .sd-f2 { right: 0; } .sd-f3 { left: 0; }
  .sd-float { padding: 10px 13px; }
  .sd-float strong { font-size: 12px; }
  .mp-steps { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .mp-shell { padding: 48px 20px 44px; }
  .grow-panel { padding: 48px 24px; border-radius: 24px; }
  .grow-copy { flex-direction: column; align-items: flex-start; gap: 18px; }
  .grow-ico { width: 68px; height: 68px; }
  .grow-ico svg { width: 30px; height: 30px; }
}

/* ---------- 18d. Our Impact in Numbers ---------- */
.impact-section { position: relative; overflow: hidden; }
.impact-bg { position: absolute; inset: 0; pointer-events: none; }
.impact-bg .ib-1 { top: -120px; right: -140px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(111,59,255,.14), transparent 65%); }
.impact-bg .ib-2 { bottom: -140px; left: -120px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(59,130,255,.1), transparent 65%); }
.impact-bg .impact-dots { top: 26px; left: 26px; }
.impact-particle { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--primary); opacity: .25; }
.impact-particle.p1 { top: 16%; right: 10%; animation: particleFloat 7s ease-in-out infinite; }
.impact-particle.p2 { bottom: 20%; left: 6%; background: var(--secondary); animation: particleFloat 9s ease-in-out infinite reverse; }

.impact-grid { display: grid; grid-template-columns: 58% 42%; gap: 72px; align-items: center; position: relative; z-index: 1; }
.impact-copy h2 { font-size: clamp(2.2rem, 3.8vw, 3.3rem); line-height: 1.16; margin: 26px 0 22px; }
.impact-copy > p { font-size: 1.08rem; max-width: 650px; }

.impact-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 46px; }
.impact-stat { padding: 26px 22px; background: rgba(255,255,255,.82); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease); }
.impact-stat:hover { transform: translateY(-8px); box-shadow: 0 26px 56px var(--shadow), 0 0 0 1px rgba(111,59,255,.1), 0 12px 38px var(--glow); border-color: rgba(111,59,255,.22); }
.impact-stat .is-ico {
  width: 50px; height: 50px; border-radius: 50%; flex: none;
  background: var(--gradient); color: #fff; display: grid; place-items: center;
  margin-bottom: 18px; box-shadow: 0 10px 24px var(--glow);
  transition: transform .45s var(--ease); animation: chipFloat 5.5s ease-in-out infinite;
}
.impact-stat:hover .is-ico { transform: scale(1.08) rotate(-4deg); }
.impact-stat .is-ico svg { width: 22px; height: 22px; }
.impact-stat .is-num { font-family: var(--font-head); font-weight: 800; font-size: 2.05rem; line-height: 1; color: var(--dark); }
.impact-stat .is-num .counter { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.impact-stat h3 { font-size: 15.5px; margin: 12px 0 6px; color: var(--dark); }
.impact-stat p { font-size: 13px; line-height: 1.55; color: var(--text-light); }

.impact-media { position: relative; }
.im-glow { position: absolute; inset: -34px; background: radial-gradient(closest-side, rgba(111,59,255,.16), transparent 70%); pointer-events: none; }
.im-img { position: relative; border-radius: 26px; overflow: hidden; box-shadow: 0 40px 90px var(--shadow-lg), 0 0 0 1px rgba(232,236,245,.9); }
.im-img img { width: 100%; aspect-ratio: 4/4.7; object-fit: cover; display: block; transform: scale(1.06); transition: transform 1.4s var(--ease); }
.impact-media:hover .im-img img { transform: scale(1.12); }
.im-img::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 38%, rgba(19,26,52,.45) 100%); pointer-events: none; }
.im-img::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(205deg, rgba(111,59,255,.28) 0%, transparent 36%); pointer-events: none; }

.im-quote {
  position: absolute; left: 20px; right: 20px; bottom: 20px; z-index: 2;
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px 24px; border-radius: 18px;
  background: rgba(19,26,52,.66); backdrop-filter: blur(18px) saturate(150%); -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(255,255,255,.14); box-shadow: 0 22px 50px rgba(19,26,52,.35);
}
.im-quote .imq-ico { width: 42px; height: 42px; flex: none; border-radius: 50%; background: var(--gradient); color: #fff; display: grid; place-items: center; box-shadow: 0 8px 20px var(--glow); }
.im-quote .imq-ico svg { width: 18px; height: 18px; }
.im-quote blockquote { font-family: var(--font-head); font-weight: 500; font-size: 14.5px; line-height: 1.6; color: #F4F6FC; }
.im-quote blockquote .grad-text { font-weight: 600; }

.im-float {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px;
  padding: 13px 18px; border-radius: 16px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(232,236,245,.95); box-shadow: 0 18px 44px var(--shadow-lg);
}
.im-float .imf-ico { width: 40px; height: 40px; border-radius: 12px; background: var(--gradient-soft); color: var(--primary); display: grid; place-items: center; }
.im-float .imf-ico svg { width: 18px; height: 18px; }
.im-float strong { font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--dark); display: block; line-height: 1.2; }
.im-float small { font-size: 12px; color: var(--text-light); }
.imf-1 { top: 26px; left: -26px; animation: chipFloat 6s ease-in-out infinite; }
.imf-2 { bottom: 168px; right: -24px; animation: chipFloat 7.5s ease-in-out infinite reverse; }

/* ---------- 18e. Trusted By Businesses ---------- */
.trusted-section { position: relative; overflow: hidden; }
.trusted-bg { position: absolute; inset: 0; pointer-events: none; }
.trusted-bg .tb-1 { top: -100px; left: -140px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(111,59,255,.12), transparent 65%); }
.trusted-bg .tb-2 { bottom: -120px; right: -120px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(59,130,255,.1), transparent 65%); }
.trusted-bg .trusted-dots { bottom: 30px; left: 30px; }

.trusted-shell {
  position: relative; z-index: 1; border-radius: 32px; overflow: hidden;
  padding: 76px 60px 66px;
  background: linear-gradient(165deg, rgba(111,59,255,.045), rgba(59,130,255,.03) 55%, rgba(255,255,255,0) 80%), rgba(255,255,255,.78);
  backdrop-filter: blur(24px) saturate(160%); -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(232,236,245,.9); box-shadow: 0 44px 110px rgba(20,20,43,.1);
}

.client-slider { margin-top: 52px; }
.client-viewport { overflow: hidden; cursor: grab; touch-action: pan-y; user-select: none; -webkit-user-select: none; }
.client-viewport.dragging { cursor: grabbing; }
.client-track { display: flex; will-change: transform; }
.client-slide { flex: 0 0 12.5%; padding: 0 10px; } /* 8 per view */
.client-logo {
  height: 96px; display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 16px 18px; border-radius: 18px; background: #fff;
  border: 1px solid var(--border); box-shadow: 0 4px 16px rgba(20,20,43,.05);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  text-decoration: none;
}
.client-logo:hover { transform: translateY(-6px); border-color: rgba(111,59,255,.28); box-shadow: 0 20px 44px var(--shadow), 0 0 0 1px rgba(111,59,255,.08), 0 10px 30px var(--glow); }
.client-logo img { max-height: 46px; max-width: 150px; object-fit: contain; filter: grayscale(1); opacity: .78; transition: filter .4s var(--ease), opacity .4s var(--ease), transform .4s var(--ease); }
.client-logo:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.06); }
.cl-mark {
  width: 46px; height: 46px; flex: none; border-radius: 13px;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 15px; color: #fff; letter-spacing: .02em;
  background: var(--cl-color, #6F3BFF);
  filter: grayscale(1); opacity: .72;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 6px 14px rgba(20,20,43,.08);
  transition: filter .4s var(--ease), opacity .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}
.client-logo:hover .cl-mark { filter: grayscale(0); opacity: 1; transform: scale(1.07) rotate(-3deg); box-shadow: 0 10px 22px rgba(111,59,255,.22); }
.cl-name { font-family: var(--font-head); font-weight: 600; font-size: 14.5px; color: #97A0B4; letter-spacing: -.01em; white-space: nowrap; transition: color .4s var(--ease); }
.client-logo:hover .cl-name { color: var(--dark); }

.client-nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 40px; }
.client-nav-label { font-family: var(--font-head); font-weight: 500; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-light); }
.client-arrow {
  width: 50px; height: 50px; border-radius: 50%; background: #fff; border: 1.5px solid var(--border);
  display: grid; place-items: center; color: var(--primary); transition: all .35s var(--ease);
  box-shadow: 0 6px 18px var(--shadow);
}
.client-arrow:hover { transform: translateY(-3px); border-color: rgba(111,59,255,.35); color: #fff; background: var(--gradient); box-shadow: 0 12px 30px var(--glow); }
.client-arrow svg { width: 20px; height: 20px; }

@media (max-width: 1280px) {
  .impact-grid { gap: 56px; }
  .client-slide { flex-basis: 16.6667%; } /* 6 per view */
  .trusted-shell { padding: 60px 40px 52px; }
}
@media (max-width: 1024px) {
  .impact-grid { grid-template-columns: 1fr; gap: 64px; }
  .impact-copy { max-width: 720px; }
  .impact-stats { grid-template-columns: repeat(2, 1fr); } /* 2 x 4 */
  .impact-media { max-width: 620px; margin: 0 auto; }
  .imf-1 { left: -10px; }
  .imf-2 { right: -10px; }
  .client-slide { flex-basis: 25%; } /* 4 per view */
}
@media (max-width: 640px) {
  .impact-stats { grid-template-columns: 1fr; gap: 16px; }
  .imf-1, .imf-2 { display: none; }
  .im-quote { left: 12px; right: 12px; bottom: 12px; padding: 18px; }
  .im-quote blockquote { font-size: 13.5px; }
  .client-slide { flex-basis: 50%; padding: 0 7px; } /* 2 per view */
  .client-logo { height: 82px; padding: 12px; gap: 9px; }
  .cl-mark { width: 38px; height: 38px; font-size: 13px; }
  .cl-name { font-size: 12.5px; }
  .client-nav-label { display: none; }
  .trusted-shell { padding: 48px 18px 44px; }
  .client-nav { margin-top: 30px; }
}

/* ---------- 18f. Contact Us (final conversion) ---------- */
.cn-section { position: relative; overflow: hidden; }
.cn-bg { position: absolute; inset: 0; pointer-events: none; }
.cn-bg .cn-1 { top: -120px; left: -140px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(111,59,255,.12), transparent 65%); }
.cn-bg .cn-2 { bottom: -140px; right: -120px; width: 440px; height: 440px; background: radial-gradient(circle, rgba(59,130,255,.1), transparent 65%); }
.cn-bg .cn-dots { bottom: 40px; left: 40px; }

.cn-grid { display: grid; grid-template-columns: 55% 45%; gap: 72px; align-items: start; position: relative; z-index: 1; }

.cn-form-card {
  position: relative; border-radius: 26px; padding: 44px 44px 40px; overflow: hidden;
  background: rgba(255,255,255,.82); backdrop-filter: blur(22px) saturate(160%); -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(232,236,245,.95); box-shadow: 0 44px 110px rgba(20,20,43,.1);
}
.cn-form-card::before { content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 3px; border-radius: 0 0 99px 99px; background: var(--gradient); opacity: .85; }

.cn-form-head { display: flex; align-items: center; gap: 16px; margin-bottom: 30px; }
.cn-form-head .cnfh-ico { width: 54px; height: 54px; flex: none; border-radius: 16px; background: var(--gradient); color: #fff; display: grid; place-items: center; box-shadow: 0 12px 28px var(--glow); }
.cn-form-head .cnfh-ico svg { width: 24px; height: 24px; }
.cn-form-head h3 { font-size: 1.45rem; margin-bottom: 4px; }
.cn-form-head p { font-size: 14px; color: var(--text-light); }

.cn-error { padding: 14px 18px; border-radius: 14px; background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.25); color: #DC2626; font-size: 14px; margin-bottom: 20px; }

.cn-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cn-field { position: relative; margin-bottom: 16px; }
.cn-field input, .cn-field select, .cn-field textarea {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--dark);
  background: #F8FAFD; border: 1.5px solid var(--border); border-radius: 14px;
  padding: 26px 16px 10px; outline: none;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.cn-field textarea { min-height: 132px; resize: vertical; padding: 32px 16px 14px; line-height: 1.6; }
.cn-field select {
  cursor: pointer; appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238A94A8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.cn-field input:focus, .cn-field select:focus, .cn-field textarea:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 4px rgba(111,59,255,.1); }
.cn-field label {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  font-size: 14px; color: var(--text-light); pointer-events: none;
  transition: all .28s var(--ease);
}
.cn-field textarea + label { top: 18px; transform: none; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.cn-field input:focus + label, .cn-field input:not(:placeholder-shown) + label,
.cn-field select:focus + label, .cn-field select:valid + label,
.cn-field textarea:focus + label, .cn-field textarea:not(:placeholder-shown) + label {
  top: 10px; transform: translateY(0); font-size: 11px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--primary);
}

.cn-submit-row { display: flex; align-items: center; gap: 20px; margin-top: 6px; }
.cn-submit-row .form-submit { flex: none; width: auto; }
.cn-privacy { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-light); line-height: 1.45; }
.cn-privacy svg { width: 15px; height: 15px; flex: none; color: var(--primary); }

/* Submit loading spinner */
.form-submit.loading { pointer-events: none; }
.form-submit.loading .btn-arrow { opacity: 0; }
.form-submit.loading::before {
  content: ''; width: 17px; height: 17px; border: 2.5px solid rgba(255,255,255,.35);
  border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; flex: none;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Right column — get in touch */
.cn-info h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); margin-bottom: 10px; }
.cn-info > p { font-size: 1.02rem; color: var(--text); max-width: 460px; }

.cn-globe { position: relative; width: 100%; max-width: 400px; aspect-ratio: 1; margin: 26px auto 30px; }
.globe-glow { position: absolute; inset: -24px; background: radial-gradient(closest-side, rgba(111,59,255,.18), transparent 70%); }
.globe-sphere { position: absolute; inset: 0; width: 100%; height: 100%; }
.globe-orbit { position: absolute; inset: 0; width: 100%; height: 100%; }
.globe-arcs { position: absolute; inset: 0; width: 100%; height: 100%; }
.globe-arcs path { animation: dashMove 3.5s linear infinite; }
.globe-pin {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: var(--primary); box-shadow: 0 0 0 4px rgba(111,59,255,.18);
  animation: pinPulse 2.4s ease-in-out infinite;
}
.globe-pin.pin-home { left: 58%; top: 52%; width: 14px; height: 14px; background: var(--gradient); box-shadow: 0 0 0 6px rgba(111,59,255,.16); }
.globe-pin.pin-1 { left: 22%; top: 30%; animation-delay: .4s; }
.globe-pin.pin-2 { left: 78%; top: 24%; background: var(--secondary); box-shadow: 0 0 0 4px rgba(59,130,255,.18); animation-delay: .8s; }
.globe-pin.pin-3 { left: 20%; top: 74%; background: var(--secondary); box-shadow: 0 0 0 4px rgba(59,130,255,.18); animation-delay: 1.2s; }
.globe-float {
  position: absolute; display: flex; flex-direction: column; gap: 2px; padding: 10px 16px; border-radius: 14px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(232,236,245,.95); box-shadow: 0 16px 38px var(--shadow-lg);
}
.globe-float strong { font-family: var(--font-head); font-weight: 600; font-size: 13px; color: var(--dark); }
.globe-float small { font-size: 11px; color: var(--text-light); }
.glf-1 { top: 6%; right: -6%; animation: chipFloat 6s ease-in-out infinite; }
.glf-2 { bottom: 8%; left: -6%; animation: chipFloat 7.5s ease-in-out infinite reverse; }

.cn-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cn-card {
  display: flex; gap: 14px; align-items: flex-start; padding: 22px 20px; border-radius: 20px;
  background: rgba(255,255,255,.82); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border); box-shadow: 0 6px 20px rgba(20,20,43,.05); text-decoration: none;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.cn-card:hover { transform: translateY(-6px); border-color: rgba(111,59,255,.25); box-shadow: 0 22px 48px var(--shadow), 0 0 0 1px rgba(111,59,255,.08), 0 10px 30px var(--glow); }
.cn-card .cnc-ico { width: 46px; height: 46px; flex: none; border-radius: 14px; background: var(--gradient-soft); color: var(--primary); display: grid; place-items: center; transition: all .4s var(--ease); }
.cn-card:hover .cnc-ico { background: var(--gradient); color: #fff; box-shadow: 0 10px 22px var(--glow); }
.cn-card .cnc-ico svg { width: 20px; height: 20px; }
.cn-card h3 { font-size: 15.5px; margin-bottom: 6px; color: var(--dark); }
.cn-card p { font-size: 13.5px; color: var(--text); line-height: 1.45; word-break: break-word; }
.cn-card small { font-size: 12px; color: var(--text-light); display: block; margin-top: 5px; }

/* ---------- 18g. Final CTA + Trust Bar ---------- */
.fcta-section { position: relative; overflow: hidden; }
.fcta-panel {
  position: relative; border-radius: 32px; overflow: hidden; padding: 72px 64px;
  background: var(--gradient);
  box-shadow: 0 48px 120px rgba(111,59,255,.35), 0 24px 60px rgba(20,20,43,.12);
}
.fcta-waves { position: absolute; inset: 0; pointer-events: none; }
.fcta-waves svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.fw-line {
  position: absolute; height: 2px; width: 38%; top: 30%; border-radius: 99px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  animation: gwMove 6s ease-in-out infinite;
}
.fw-line.l2 { top: 68%; width: 30%; animation-delay: 2.4s; }

.fcta-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.3fr auto auto; gap: 44px; align-items: center; }
.fcta-copy { display: flex; align-items: center; gap: 26px; }
.fcta-ico {
  width: 76px; height: 76px; flex: none; border-radius: 24px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22);
  display: grid; place-items: center; color: #fff;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.3);
}
.fcta-ico svg { width: 34px; height: 34px; }
.fcta-copy h2 { color: #fff; font-size: clamp(1.7rem, 2.8vw, 2.4rem); margin-bottom: 12px; }
.fcta-copy p { color: rgba(255,255,255,.85); font-size: 15.5px; max-width: 560px; }
.fcta-col { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.fcta-col small { color: rgba(255,255,255,.75); font-size: 12.5px; }

.tbar {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 44px;
  background: #fff; border: 1px solid var(--border); border-radius: 26px;
  box-shadow: 0 30px 70px rgba(20,20,43,.08); overflow: hidden;
}
.tbar-item { display: flex; align-items: center; gap: 14px; padding: 26px 24px; position: relative; transition: background .4s var(--ease); }
.tbar-item + .tbar-item::before { content: ''; position: absolute; left: 0; top: 20%; height: 60%; width: 1px; background: var(--border); }
.tbar-item:hover { background: linear-gradient(160deg, rgba(111,59,255,.04), rgba(59,130,255,.03)); }
.tbar-ico {
  width: 46px; height: 46px; flex: none; border-radius: 14px;
  background: var(--gradient-soft); color: var(--primary); display: grid; place-items: center;
  transition: all .4s var(--ease); animation: pulse 3s ease-in-out infinite;
}
.tbar-item:hover .tbar-ico { background: var(--gradient); color: #fff; box-shadow: 0 10px 22px var(--glow); animation-play-state: paused; }
.tbar-ico svg { width: 20px; height: 20px; }
.tbar-item h3 { font-size: 14.5px; margin-bottom: 4px; color: var(--dark); line-height: 1.3; }
.tbar-item p { font-size: 12.5px; color: var(--text-light); line-height: 1.5; }

@media (max-width: 1280px) {
  .cn-grid { gap: 52px; }
  .fcta-inner { grid-template-columns: 1fr; gap: 34px; }
  .fcta-col { flex-direction: row; align-items: center; gap: 14px; }
  .tbar { grid-template-columns: repeat(3, 1fr); }
  .tbar-item:nth-child(3n+1)::before { display: none; }
}
@media (max-width: 1024px) {
  .cn-grid { grid-template-columns: 1fr; gap: 56px; }
  .cn-info { max-width: 640px; }
  .cn-globe { max-width: 380px; }
  .cn-cards { grid-template-columns: 1fr 1fr; }
  .fcta-panel { padding: 56px 40px; }
}
@media (max-width: 640px) {
  .cn-form-card { padding: 30px 22px 28px; }
  .cn-row { grid-template-columns: 1fr; }
  .cn-submit-row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cn-privacy { font-size: 12.5px; }
  .cn-cards { grid-template-columns: 1fr; }
  .globe-float { display: none; }
  .fcta-panel { padding: 44px 22px; border-radius: 24px; }
  .fcta-copy { flex-direction: column; align-items: flex-start; gap: 18px; }
  .fcta-ico { width: 64px; height: 64px; }
  .fcta-ico svg { width: 28px; height: 28px; }
  .fcta-col { flex-direction: column; align-items: stretch; }
  .fcta-col .btn { justify-content: center; width: 100%; }
  .tbar { grid-template-columns: 1fr; }
  .tbar-item { padding: 20px 22px; }
  .tbar-item + .tbar-item::before { display: none; }
}

/* ---------- 18h. Latest Insights (Blog) ---------- */
.insights-section { position: relative; overflow: hidden; }
.insights-bg { position: absolute; inset: 0; pointer-events: none; }
.insights-bg .ib-1 { top: -120px; left: -140px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(111,59,255,.12), transparent 65%); }
.insights-bg .ib-2 { bottom: -140px; right: -120px; width: 440px; height: 440px; background: radial-gradient(circle, rgba(59,130,255,.1), transparent 65%); }
.insights-bg .insights-dots { top: 40px; right: 40px; }

.insights-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 1; }
.insight-card {
  display: flex; flex-direction: column; border-radius: 22px; overflow: hidden;
  background: rgba(255,255,255,.82); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border); box-shadow: 0 8px 24px rgba(20,20,43,.06);
  text-decoration: none; transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.insight-card:hover { transform: translateY(-10px); border-color: rgba(111,59,255,.22); box-shadow: 0 30px 64px var(--shadow), 0 0 0 1px rgba(111,59,255,.08), 0 14px 40px var(--glow); }
.insight-card .ic-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.insight-card .ic-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.insight-card:hover .ic-img img { transform: scale(1.08); }
.insight-card .ic-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(19,26,52,.28)); opacity: 0; transition: opacity .45s var(--ease); }
.insight-card:hover .ic-img::after { opacity: 1; }
.insight-card .ic-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--font-head); font-weight: 600; font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: #fff; padding: 7px 13px; border-radius: 99px;
  background: var(--gradient); box-shadow: 0 8px 20px rgba(20,20,43,.18);
}
.insight-card .ic-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.insight-card .ic-meta { display: flex; gap: 16px; font-size: 12.5px; color: var(--text-light); margin-bottom: 12px; flex-wrap: wrap; }
.insight-card .ic-meta span { display: inline-flex; align-items: center; gap: 7px; }
.insight-card .ic-meta svg { width: 14px; height: 14px; color: var(--primary); }
.insight-card h3 { font-size: 17.5px; line-height: 1.45; color: var(--dark); margin-bottom: 10px; font-weight: 600; }
.insight-card p { font-size: 14px; color: var(--text); line-height: 1.65; flex: 1; }
.insight-card .ic-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--primary); }
.insight-card .ic-link svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.insight-card:hover .ic-link svg { transform: translateX(5px); }
.insights-more { text-align: center; margin-top: 56px; position: relative; z-index: 1; }

@media (max-width: 1280px) { .insights-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 1024px) { .insights-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .insights-grid { grid-template-columns: 1fr; gap: 18px; } .insights-more { margin-top: 40px; } }

/* ---------- 18i. Newsletter ---------- */
.news-section { position: relative; overflow: hidden; }
.news-bg { position: absolute; inset: 0; pointer-events: none; }
.news-bg .nb-1 { top: -120px; right: -100px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(111,59,255,.12), transparent 65%); }
.news-bg .nb-2 { bottom: -120px; left: -100px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(59,130,255,.1), transparent 65%); }

.news-panel {
  position: relative; border-radius: 32px; overflow: hidden; padding: 68px 64px;
  display: grid; grid-template-columns: auto 1.2fr 1fr; gap: 48px; align-items: center;
  background: var(--gradient);
  box-shadow: 0 48px 120px rgba(111,59,255,.32), 0 24px 60px rgba(20,20,43,.12);
}
.news-waves { position: absolute; inset: 0; pointer-events: none; }
.news-waves svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.news-illust { position: relative; width: 220px; height: 220px; }
.nl-glow { position: absolute; inset: -30px; background: radial-gradient(closest-side, rgba(255,255,255,.22), transparent 70%); }
.nl-envelope {
  position: absolute; inset: 30px 40px; border-radius: 22px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: grid; place-items: center; color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 24px 50px rgba(19,26,52,.22);
  animation: chipFloat 5.5s ease-in-out infinite;
}
.nl-envelope svg { width: 56px; height: 56px; }
.nl-plane {
  position: absolute; top: 8px; right: 6px; width: 58px; height: 58px; border-radius: 50%;
  background: #fff; color: var(--primary); display: grid; place-items: center;
  box-shadow: 0 14px 34px rgba(19,26,52,.25);
  animation: chipFloat 4.5s ease-in-out infinite reverse;
}
.nl-plane svg { width: 26px; height: 26px; }
.nl-ring {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 1.5px dashed rgba(255,255,255,.35);
  animation: spin 26s linear infinite;
}
.nl-dot { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: #fff; opacity: .8; animation: particleFloat 5s ease-in-out infinite; }
.nl-dot.d1 { top: -6px; left: 30%; }
.nl-dot.d2 { bottom: 4px; left: 10%; animation-delay: 1.4s; }
.nl-dot.d3 { top: 24px; right: -8px; animation-delay: 2.6s; }

.news-copy h2 { color: #fff; font-size: clamp(1.7rem, 2.8vw, 2.3rem); margin-bottom: 14px; }
.news-copy p { color: rgba(255,255,255,.85); font-size: 15.5px; line-height: 1.7; max-width: 560px; }

.news-form-wrap { display: flex; flex-direction: column; gap: 14px; }
.nl-field { display: flex; gap: 12px; }
.nl-field input {
  flex: 1; min-width: 0; padding: 16px 20px; border-radius: 14px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3); color: #fff;
  font-family: var(--font-body); font-size: 15px; outline: none;
  transition: all .3s var(--ease);
}
.nl-field input::placeholder { color: rgba(255,255,255,.65); }
.nl-field input:focus { background: rgba(255,255,255,.2); border-color: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.15); }
.nl-field .btn { flex: none; }
.nl-msg { min-height: 20px; font-size: 13.5px; color: #fff; font-weight: 500; }
.nl-msg.ok { color: #B9F6CA; }
.nl-msg.err { color: #FFD1D1; }
.nl-note { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: rgba(255,255,255,.75); }
.nl-note svg { width: 13px; height: 13px; }

@media (max-width: 1280px) {
  .news-panel { grid-template-columns: 1fr 1fr; gap: 36px; }
  .news-illust { width: 190px; height: 190px; justify-self: center; }
  .news-form-wrap { grid-column: 1 / -1; max-width: 560px; }
}
@media (max-width: 1024px) {
  .news-panel { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .news-illust { margin: 0 auto; }
  .news-copy p { margin: 0 auto; }
  .news-form-wrap { margin: 0 auto; width: 100%; }
}
@media (max-width: 640px) {
  .news-panel { padding: 44px 22px; border-radius: 24px; }
  .nl-field { flex-direction: column; }
  .nl-field .btn { width: 100%; justify-content: center; }
  .news-illust { width: 170px; height: 170px; }
}

/* ---------- 20. Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.team-card { padding: 0; overflow: hidden; }
.team-card .tm-photo { position: relative; aspect-ratio: 3/3.3; overflow: hidden; }
.team-card .tm-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.team-card:hover .tm-photo img { transform: scale(1.08); }
.team-card .tm-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(19,26,52,.7)); opacity: .4; transition: opacity .5s var(--ease); }
.team-card:hover .tm-photo::after { opacity: 1; }
.team-card .tm-social {
  position: absolute; left: 0; right: 0; bottom: 18px; z-index: 2;
  display: flex; justify-content: center; gap: 10px;
  transform: translateY(24px); opacity: 0; transition: all .5s var(--ease);
}
.team-card:hover .tm-social { transform: translateY(0); opacity: 1; }
.tm-social a {
  width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.92);
  display: grid; place-items: center; color: var(--dark); transition: all .3s var(--ease);
}
.tm-social a:hover { background: var(--gradient); color: #fff; transform: translateY(-4px); }
.tm-social svg { width: 17px; height: 17px; }
.team-card .tm-info { padding: 24px 26px 26px; text-align: center; }
.team-card .tm-info h3 { font-size: 18px; font-weight: 700; }
.team-card .tm-info p { font-size: 13.5px; color: var(--primary); font-family: var(--font-head); font-weight: 500; margin-top: 4px; }

/* ---------- 21. Awards ---------- */
.awards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.award-card { display: flex; align-items: center; gap: 20px; padding: 30px 32px; }
.award-card .aw-badge {
  width: 62px; height: 62px; flex: none; border-radius: 18px;
  background: var(--gradient-soft); display: grid; place-items: center; color: var(--primary);
  transition: all .45s var(--ease);
}
.award-card:hover .aw-badge { background: var(--gradient); color: #fff; transform: rotate(-6deg) scale(1.06); box-shadow: 0 14px 30px var(--glow); }
.award-card .aw-badge svg { width: 28px; height: 28px; }
.award-card strong { font-family: var(--font-head); font-size: 17px; color: var(--dark); display: block; }
.award-card small { font-size: 13.5px; color: var(--text-light); }

/* ---------- 22. Blog ---------- */
.blog-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 28px; }
.blog-featured { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 520px; display: flex; align-items: flex-end; box-shadow: 0 30px 70px rgba(20,20,43,.16); cursor: pointer; }
.blog-featured img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.blog-featured:hover img { transform: scale(1.06); }
.blog-featured::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(19,26,52,.1) 20%, rgba(19,26,52,.85)); }
.blog-featured .bf-body { position: relative; z-index: 2; padding: 40px; }
.blog-featured .bf-tag {
  font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: .08em;
  background: var(--gradient); color: #fff; padding: 8px 16px; border-radius: 99px; display: inline-block;
}
.blog-featured h3 { color: #fff; font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin: 16px 0 14px; line-height: 1.3; }
.blog-featured .bf-meta { display: flex; align-items: center; gap: 18px; color: rgba(255,255,255,.8); font-size: 13.5px; }
.blog-featured .bf-meta span { display: inline-flex; align-items: center; gap: 7px; }
.blog-featured .bf-meta svg { width: 15px; height: 15px; }

.blog-list { display: flex; flex-direction: column; gap: 22px; }
.blog-card { display: flex; gap: 22px; align-items: center; padding: 0; overflow: hidden; cursor: pointer; }
.blog-card .bc-img { flex: 0 0 42%; aspect-ratio: 4/3; overflow: hidden; border-radius: 0; }
.blog-card .bc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.blog-card:hover .bc-img img { transform: scale(1.1); }
.blog-card .bc-body { padding: 22px 24px; }
.blog-card .bc-tag { font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--primary); }
.blog-card h3 { font-size: 17px; line-height: 1.45; margin: 8px 0 10px; font-weight: 600; }
.blog-card .bc-meta { display: flex; gap: 14px; font-size: 12.5px; color: var(--text-light); align-items: center; }
.blog-card .bc-meta svg { width: 13px; height: 13px; }
.blog-card .read-more { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; font-family: var(--font-head); font-weight: 600; font-size: 13.5px; color: var(--primary); }
.blog-card .read-more svg { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.blog-card:hover .read-more svg { transform: translateX(5px); }

/* ---------- 23. FAQ ---------- */
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: 18px; margin-bottom: 16px; background: #fff; overflow: hidden; transition: all .4s var(--ease); }
.faq-item:hover { border-color: rgba(111,59,255,.3); box-shadow: 0 12px 32px var(--shadow); }
.faq-item.open { border-color: rgba(111,59,255,.35); box-shadow: 0 16px 44px var(--shadow); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 28px; text-align: left;
  font-family: var(--font-head); font-weight: 600; font-size: 17px; color: var(--dark);
}
.faq-q .faq-icon {
  width: 34px; height: 34px; flex: none; border-radius: 10px; background: var(--gradient-soft);
  display: grid; place-items: center; color: var(--primary); transition: all .4s var(--ease);
}
.faq-item.open .faq-icon { background: var(--gradient); color: #fff; transform: rotate(45deg); }
.faq-q .faq-icon svg { width: 17px; height: 17px; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease-soft); }
.faq-a p { padding: 0 28px 26px; font-size: 15.5px; }

/* ---------- 24. CTA ---------- */
.cta-panel {
  position: relative; overflow: hidden;
  border-radius: 32px; padding: 100px 60px; text-align: center;
  background: linear-gradient(135deg, #6F3BFF 0%, #5B2EE8 45%, #3B82FF 100%);
  color: #fff;
  box-shadow: 0 40px 90px rgba(111,59,255,.35);
}
.cta-panel::before { content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,.16) 0, transparent 45%), radial-gradient(circle at 80% 80%, rgba(255,255,255,.12) 0, transparent 45%);
}
.cta-panel::after { content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 100%);
}
.cta-panel .cta-inner { position: relative; z-index: 2; }
.cta-panel .eyebrow { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.25); color: #fff; }
.cta-panel .eyebrow::before { background: #fff; }
.cta-panel h2 { color: #fff; font-size: clamp(2.2rem, 4.4vw, 3.4rem); margin: 26px 0 18px; }
.cta-panel p { color: rgba(255,255,255,.85); font-size: 1.13rem; max-width: 600px; margin: 0 auto 40px; }
.cta-panel .btn-light:hover .btn-arrow { transform: translateX(6px); }
.cta-orbits { position: absolute; inset: 0; pointer-events: none; }
.cta-orbits i { position: absolute; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.18); }
.cta-orbits i:nth-child(1) { width: 300px; height: 300px; top: -120px; left: -80px; }
.cta-orbits i:nth-child(2) { width: 420px; height: 420px; bottom: -200px; right: -100px; }
.cta-orbits i:nth-child(3) { width: 180px; height: 180px; top: 40%; right: 12%; border-color: rgba(255,255,255,.1); }

/* ---------- 25. Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: stretch; }

.contact-info .ci-card { display: flex; align-items: flex-start; gap: 18px; padding: 24px; margin-bottom: 16px; }
.contact-info .ci-card .ci-ico {
  width: 50px; height: 50px; flex: none; border-radius: 15px;
  background: var(--gradient-soft); display: grid; place-items: center; color: var(--primary);
  transition: all .4s var(--ease);
}
.contact-info .ci-card:hover .ci-ico { background: var(--gradient); color: #fff; transform: translateY(-3px); box-shadow: 0 12px 26px var(--glow); }
.contact-info .ci-card .ci-ico svg { width: 22px; height: 22px; }
.contact-info .ci-card strong { font-family: var(--font-head); font-size: 16px; color: var(--dark); display: block; margin-bottom: 3px; }
.contact-info .ci-card p, .contact-info .ci-card a { font-size: 14.5px; color: var(--text); }
.contact-info .ci-card a:hover { color: var(--primary); }

.contact-map { border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: 0 20px 50px var(--shadow); }
.contact-map img { width: 100%; height: 100%; object-fit: cover; min-height: 200px; }
.contact-map .cm-pin { position: absolute; top: 45%; left: 50%; transform: translate(-50%, -50%); width: 56px; height: 56px; border-radius: 50%; background: var(--gradient); display: grid; place-items: center; color: #fff; box-shadow: 0 12px 30px var(--glow); animation: pinPulse 2.4s infinite; }
@keyframes pinPulse { 0%,100% { transform: translate(-50%,-50%) scale(1); } 50% { transform: translate(-50%,-50%) scale(1.12); } }
.contact-map .cm-pin svg { width: 24px; height: 24px; }

.contact-form { padding: 44px 42px; }
.contact-form h3 { font-size: 26px; margin-bottom: 8px; }
.contact-form > p { font-size: 15px; margin-bottom: 30px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { position: relative; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 13px; color: var(--dark); margin-bottom: 8px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 15px 18px; border-radius: 14px;
  border: 1.5px solid var(--border); background: var(--bg-alt);
  font-size: 15px; color: var(--dark); transition: all .3s var(--ease); outline: none;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--primary); background: #fff; box-shadow: 0 0 0 4px rgba(111,59,255,.1);
}
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23596275' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-submit { margin-top: 24px; width: 100%; }
.form-note { font-size: 13px; color: var(--text-light); margin-top: 14px; text-align: center; }

/* ---------- 26. Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F6FD 100%);
  color: var(--text); position: relative; overflow: hidden;
  border-top: 1px solid var(--border);
}
.site-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient); }
.footer-blob { position: absolute; border-radius: 50%; filter: blur(110px); opacity: .14; pointer-events: none; }
.footer-blob.f1 { width: 520px; height: 520px; top: -180px; right: -120px; background: var(--primary); }
.footer-blob.f2 { width: 460px; height: 460px; bottom: -200px; left: -140px; background: var(--secondary); }

.footer-inner { position: relative; z-index: 2; padding: 96px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1.1fr 1fr 1.4fr; gap: 48px; }
.footer-brand img { height: 46px; width: auto; margin-bottom: 22px; }
.footer-brand p { font-size: 14.5px; line-height: 1.8; max-width: 340px; }
.footer-social { display: flex; gap: 11px; margin-top: 26px; flex-wrap: wrap; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gradient); color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 20px var(--glow);
  transition: all .35s var(--ease);
}
.footer-social a:hover { transform: translateY(-4px) rotate(10deg); box-shadow: 0 14px 30px var(--glow); }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h4 { color: var(--dark); font-size: 16px; margin-bottom: 24px; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 34px; height: 2.5px; background: var(--gradient); border-radius: 2px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { font-size: 14.5px; color: var(--text); transition: all .3s var(--ease); display: inline-flex; align-items: center; gap: 8px; }
.footer-col ul a:hover { color: var(--primary); transform: translateX(4px); }
.footer-col ul a svg { width: 13px; height: 13px; color: var(--secondary); }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 14.5px; color: var(--text); line-height: 1.55; }
.footer-contact-list li svg { width: 16px; height: 16px; flex: none; color: var(--primary); margin-top: 3px; }
.footer-contact-list li a { color: var(--text); display: inline; }
.footer-contact-list li a:hover { color: var(--primary); }
.footer-cta-btns { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.footer-bottom {
  position: relative; z-index: 2; border-top: 1px solid var(--border); padding: 26px 0;
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: center;
  font-size: 13.5px; color: var(--text-light);
}
.footer-credit { text-align: center; font-family: var(--font-head); font-weight: 500; color: var(--text); }
.footer-bottom .legal { display: flex; gap: 24px; justify-content: flex-end; flex-wrap: wrap; }
.footer-bottom .legal a { color: var(--text-light); transition: color .3s var(--ease); }
.footer-bottom .legal a:hover { color: var(--primary); }

@media (max-width: 1280px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 44px; }
  .footer-brand, .footer-contact { grid-column: 1 / -1; }
}

/* ---------- 27. Floating UI ---------- */
.back-top {
  position: fixed; right: 28px; bottom: 28px; z-index: 900;
  width: 52px; height: 52px; border-radius: 16px; background: var(--gradient); color: #fff;
  display: grid; place-items: center; box-shadow: 0 14px 34px var(--glow);
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: all .45s var(--ease);
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { transform: translateY(-5px); }
.back-top svg { width: 22px; height: 22px; }

.whatsapp-float {
  position: fixed; right: 28px; bottom: 96px; z-index: 900;
  width: 54px; height: 54px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 14px 34px rgba(37,211,102,.4);
  transition: transform .35s var(--ease); animation: chipFloat 5s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 26px; height: 26px; }

/* Cursor follower */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-dot { width: 8px; height: 8px; background: var(--primary); }
.cursor-ring { width: 38px; height: 38px; border: 1.5px solid rgba(111,59,255,.5); transition: width .3s, height .3s, border-color .3s; }
.cursor-ring.hovering { width: 58px; height: 58px; border-color: rgba(111,59,255,.9); background: rgba(111,59,255,.08); }

/* Progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 1100;
  background: transparent;
}
.scroll-progress i { display: block; height: 100%; width: 0; background: var(--gradient); box-shadow: 0 0 12px var(--glow); }

/* Page loader */
.loader {
  position: fixed; inset: 0; z-index: 2000; background: #fff;
  display: grid; place-items: center; transition: opacity .25s var(--ease), visibility .25s;
}

/* GPU-accelerated animation hints — only for continuously animated elements
   (scroll-reveal elements are handled by GSAP's own transform promotion) */
.float-chip, .hero-badge, .laptop, .rv-stat, .sec-blob, .brand-item, .tech-card, .client-slide {
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .float-chip, .laptop, .rv-stat, .sec-blob { will-change: auto; }
}
.loader.done { opacity: 0; visibility: hidden; }
.loader .loader-logo { width: 74px; height: 74px; border-radius: 22px; background: var(--gradient); display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 28px; animation: loaderBounce 1.2s ease-in-out infinite; }
.loader .loader-bar { position: absolute; bottom: 34%; width: 140px; height: 3px; background: var(--bg-alt); border-radius: 99px; overflow: hidden; }
.loader .loader-bar i { display: block; height: 100%; width: 40%; background: var(--gradient); border-radius: 99px; animation: loaderSlide 1.1s var(--ease) infinite; }
@keyframes loaderBounce { 0%,100% { transform: scale(1); } 50% { transform: scale(1.12); } }
@keyframes loaderSlide { 0% { transform: translateX(-100%); } 100% { transform: translateX(360%); } }

/* Reveal helper — GSAP sets initial states at runtime (no-JS safe) */
.grad-text { animation: gradShift 6s ease-in-out infinite; }
@keyframes gradShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

.is-loading { overflow: hidden; }

.hero-title .split-line { display: inline-block; }

.section-head h2 .word, .impact-copy h2 .word, .cn-info h2 .word, .fcta-copy h2 .word, .news-copy h2 .word, .sv-hero-copy h1 .word, .svw-copy h2 .word, .ab-hero-copy h1 .word, .cst-hero-copy h1 .word, .csd-hero-copy h1 .word, .sln-hero-copy h1 .word, .pfw-hero-copy h1 .word, .pfd-hero-copy h1 .word, .blg-hero-copy h1 .word, .bld-hero-copy h1 .word, .ctc-hero-copy h1 .word { display: inline-block; will-change: transform; }

/* Flash messages (contact form) */
.contact-flash {
  max-width: 860px; margin: 0 auto 26px; padding: 16px 22px; border-radius: 14px;
  font-size: 15px; font-weight: 500; line-height: 1.6;
}
.contact-flash-success { background: #ECFDF5; border: 1px solid #A7F3D0; color: #065F46; }
.contact-flash-error { background: #FEF2F2; border: 1px solid #FECACA; color: #B91C1C; }

/* ---------- 27b. Solution detail page ---------- */
.sol-page-hero { position: relative; padding: calc(var(--header-h) + 70px) 0 80px; background: linear-gradient(180deg, #FBFAFF 0%, #fff 70%); }
.sol-page-hero::before { content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 12% 20%, rgba(111,59,255,.09), transparent 45%), radial-gradient(circle at 88% 70%, rgba(59,130,255,.08), transparent 45%); }
.crumbs { position: relative; z-index: 1; font-size: 14px; color: var(--text-light); margin-bottom: 30px; display: flex; gap: 8px; align-items: center; }
.crumbs a { color: var(--primary); font-weight: 500; }
.crumbs a:hover { text-decoration: underline; }
.sol-page-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.sol-page-copy h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); margin: 22px 0 18px; text-wrap: balance; }
.sol-page-copy .lead { max-width: 560px; margin-bottom: 34px; }
.sol-page-img { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 70px rgba(20,20,43,.16); }
.sol-page-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.sol-page-img::after { content: ''; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255,255,255,.4); pointer-events: none; }
.sol-page-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.sol-page-feat { display: flex; gap: 16px; align-items: flex-start; padding: 22px 24px; background: #fff; border: 1px solid var(--border); border-radius: 16px; box-shadow: 0 8px 24px var(--shadow); transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease); }
.sol-page-feat:hover { transform: translateY(-4px); box-shadow: 0 18px 40px var(--shadow); border-color: rgba(111,59,255,.3); }
.sol-page-feat svg { width: 22px; height: 22px; flex: none; color: var(--primary); margin-top: 2px; }
.sol-page-feat strong { font-family: var(--font-head); font-size: 16px; color: var(--dark); display: block; margin-bottom: 4px; }
.sol-page-feat small { font-size: 14px; color: var(--text); line-height: 1.6; }
@media (max-width: 1024px) {
  .sol-page-grid { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 640px) {
  .sol-page-feats { grid-template-columns: 1fr; }
  .sol-page-hero { padding-top: calc(var(--header-h) + 40px); }
}

/* ---------- 27c. Sidebar ---------- */
.blog-single { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
@media (max-width: 960px) { .blog-single { grid-template-columns: 1fr; } }
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card { padding: 28px 26px; }
.sidebar-title { font-size: 17px; margin-bottom: 18px; position: relative; padding-bottom: 12px; }
.sidebar-title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 34px; height: 2.5px; background: var(--gradient); border-radius: 2px; }
.sidebar-list li + li { border-top: 1px solid var(--border); }
.sidebar-list a { display: flex; align-items: flex-start; gap: 12px; padding: 13px 0; }
.sidebar-list a:hover strong { color: var(--primary); }
.sidebar-list a.active strong { color: var(--primary); }
.sb-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gradient); flex: none; margin-top: 7px; opacity: .5; }
.sidebar-list a:hover .sb-dot, .sidebar-list a.active .sb-dot { opacity: 1; }
.sb-text strong { font-family: var(--font-head); font-weight: 600; font-size: 14.5px; color: var(--dark); line-height: 1.45; display: block; transition: color .3s; }
.sb-text small { font-size: 12px; color: var(--text-light); }
.sidebar-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.sidebar-tags a {
  font-family: var(--font-head); font-weight: 500; font-size: 13px; color: var(--text);
  padding: 8px 16px; border-radius: 99px; background: var(--bg-alt); border: 1px solid var(--border);
  transition: all .3s var(--ease);
}
.sidebar-tags a:hover { background: var(--gradient); color: #fff; border-color: transparent; transform: translateY(-2px); }
.sidebar-cta h4 { font-size: 19px; margin: 14px 0 10px; }
.sidebar-cta p { font-size: 14px; margin-bottom: 20px; }

/* ---------- 28. Responsive ---------- */
@media (max-width: 1280px) {
  :root { --section-pad: 110px; }
  .container, .container-sm { padding: 0 36px; }
  .fc-1 { left: -2%; } .fc-3 { left: -3%; }
  .float-card.fc-a { left: -10px; } .float-card.fc-b { right: -6px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .solutions-grid { grid-template-columns: repeat(3, 1fr); }
  .tech-grid { grid-template-columns: repeat(4, 1fr); }
  /* What We Do */
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-panel { grid-template-columns: repeat(4, 1fr); }
  .wp-intro { grid-column: 1 / -1; border-bottom: 1px solid var(--border); }
  .wp-intro + .wp-feat { border-left: none; }
}

@media (max-width: 1024px) {
  :root { --section-pad: 96px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding-top: calc(var(--header-h) + 40px); align-items: flex-start; }
  .hero-copy { max-width: 720px; margin: 0 auto; text-align: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-meta { justify-content: center; }
  .hero-visual { min-height: 620px; margin-top: 20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  /* What We Do */
  .why-panel { grid-template-columns: repeat(2, 1fr); }
  .wp-intro { grid-column: 1 / -1; }
  .wp-intro + .wp-feat { border-left: none; }
  .wp-feat:nth-child(4) { border-left: none; border-top: 1px solid var(--border); }
  .wp-feat:nth-child(5) { border-top: 1px solid var(--border); }
  .cta-strip { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 24px; }
  .cs-actions { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 70px; }
  .process-steps { grid-template-columns: repeat(4, 1fr); row-gap: 36px; }
  .process-track { display: none; }
  .industries-grid { grid-template-columns: repeat(4, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-slide { flex: 0 0 100%; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand, .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { grid-template-columns: 1fr auto; }
  .footer-credit { display: none; }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .nav-toggle { display: grid; }
  .header-cta .btn { display: none; }
  .portfolio-grid { columns: 2; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root {
    --section-pad: 84px;
    --header-h: 72px;
  }
  body { font-size: 16px; }
  .container, .container-sm { padding: 0 22px; }
  .section-head h2 { font-size: 1.9rem; }
  .section-head { margin-bottom: 48px; }
  /* What We Do */
  .sec-badge { gap: 10px; }
  .sec-badge::before, .sec-badge::after { width: 24px; }
  .why-panel { grid-template-columns: 1fr; }
  .wp-col + .wp-col { border-left: none; border-top: 1px solid var(--border); }
  .cta-strip { padding: 34px 24px; }
  .cs-text p { font-size: 14.5px; }

  .hero { min-height: auto; }
  .hero-title { font-size: 2.15rem; line-height: 1.14; }
  .hero-sub { font-size: 1.02rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 480px; }
  .float-chip { padding: 9px 13px; font-size: 11.5px; border-radius: 13px; }
  .float-chip .fc-icon { width: 30px; height: 30px; border-radius: 9px; }
  .float-chip .fc-icon svg { width: 14px; height: 14px; }
  .fc-1 { left: -2%; top: 2%; } .fc-2 { right: -2%; top: 18%; } .fc-3 { left: -3%; top: 40%; } .fc-4 { right: -2%; top: 62%; } .fc-5 { left: 0; top: 80%; } .fc-6 { right: 4%; top: -2%; }

  .brands-row { gap: 14px 28px; }
  .brand-item { font-size: 17px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 20px; padding: 40px 24px; }
  .stat + .stat::before { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .about-feats { grid-template-columns: 1fr; }
  .about-media .float-card { padding: 12px 16px; }
  .about-media .float-card .fc-badge { width: 38px; height: 38px; }
  .float-card.fc-a { left: 0; top: 20px; }
  .float-card.fc-b { right: 0; bottom: 30px; }
  .about-media .ring-badge { display: none; }

  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
  .solutions-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .tech-item { padding: 16px; }
  .portfolio-grid { columns: 1; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .team-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr; }
  .blog-featured { min-height: 400px; }
  .blog-featured .bf-body { padding: 26px; }
  .blog-card { flex-direction: column; align-items: stretch; }
  .blog-card .bc-img { flex: none; aspect-ratio: 16/10; }
  .cta-panel { padding: 70px 26px; border-radius: 24px; }
  .cta-panel .btn { width: 100%; }
  .contact-form { padding: 32px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-brand, .footer-contact { grid-column: auto; }
  .footer-bottom { grid-template-columns: 1fr; text-align: center; gap: 12px; }
  .footer-bottom .legal { justify-content: center; }
  .back-top { right: 18px; bottom: 18px; }
  .whatsapp-float { right: 18px; bottom: 82px; }
  .dropdown.wide { min-width: 0; }
}

/* ---------- 28b. Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 990;
  background: rgba(255,255,255,.98); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  padding: 28px 24px 48px;
  display: flex; flex-direction: column; gap: 6px;
  transform: translateY(-12px); opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s;
  overflow-y: auto;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  font-family: var(--font-head); font-weight: 600; font-size: 22px; color: var(--dark);
  padding: 14px 8px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  transition: color .3s var(--ease), padding-left .3s var(--ease);
}
.mobile-menu nav a:hover { color: var(--primary); padding-left: 16px; }

/* ---------- 28c. Modals ---------- */
.modal { position: fixed; inset: 0; z-index: 1500; display: grid; place-items: center; padding: 24px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(14,19,48,.6); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); opacity: 0; transition: opacity .4s var(--ease); }
.modal-content {
  position: relative; z-index: 2; width: min(900px, 100%);
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 40px 100px rgba(14,19,48,.35);
  transform: translateY(30px) scale(.96); opacity: 0;
  transition: transform .45s var(--ease), opacity .45s var(--ease);
  max-height: 88vh; overflow-y: auto;
}
.modal.show .modal-backdrop { opacity: 1; }
.modal.show .modal-content { transform: translateY(0) scale(1); opacity: 1; }
.modal:not(.show) { visibility: hidden; pointer-events: none; }
.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.9);
  display: grid; place-items: center; color: var(--dark);
  box-shadow: 0 8px 20px rgba(14,19,48,.15); transition: all .3s var(--ease);
}
.modal-close:hover { background: var(--gradient); color: #fff; transform: rotate(90deg); }
.modal-close svg { width: 20px; height: 20px; }
.video-frame { aspect-ratio: 16/9; background: #000; }
.video-frame iframe { width: 100%; height: 100%; border: 0; }

@media (max-width: 640px) {
  .modal { padding: 14px; }
}

/* Form success */
.form-success { text-align: center; padding: 40px 0; }
.form-success .fs-icon { width: 76px; height: 76px; margin: 0 auto 20px; border-radius: 50%; background: var(--gradient); display: grid; place-items: center; color: #fff; box-shadow: 0 16px 40px var(--glow); animation: popIn .6s var(--ease); }
.form-success .fs-icon svg { width: 34px; height: 34px; }
@keyframes popIn { 0% { transform: scale(0); } 70% { transform: scale(1.15); } 100% { transform: scale(1); } }
.form-success h4 { font-size: 24px; margin-bottom: 10px; }
.form-success p { font-size: 15.5px; max-width: 420px; margin: 0 auto; }

/* ============================================================
   30. SERVICES PAGE
   ============================================================ */
/* -- 30.1 Services hero -- */
.sv-hero { padding: 190px 0 130px; position: relative; overflow: hidden; }
.sv-hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.sv-hero .sec-blob.sh-1 { width: 620px; height: 620px; top: -220px; right: -160px; background: radial-gradient(circle at 40% 40%, rgba(111,59,255,.3), rgba(111,59,255,0) 70%); }
.sv-hero .sec-blob.sh-2 { width: 520px; height: 520px; bottom: -180px; left: -160px; background: radial-gradient(circle at 60% 60%, rgba(59,130,255,.22), rgba(59,130,255,0) 70%); }
.sv-dots { top: auto; bottom: 64px; left: auto; right: 28px; }
.sv-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; position: relative; z-index: 1; }
.sv-hero-copy h1 { font-size: clamp(2.35rem, 4.4vw, 3.4rem); line-height: 1.12; margin: 26px 0 22px; text-wrap: balance; }
.sv-hero-copy > p { max-width: 560px; font-size: 1.05rem; }
.sv-pills { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 36px; }
.sv-pill { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--dark); background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 9px 16px; box-shadow: 0 4px 14px var(--shadow); transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease); }
.sv-pill svg { width: 15px; height: 15px; color: var(--primary); }
.sv-pill:hover { transform: translateY(-3px); border-color: rgba(111,59,255,.4); box-shadow: 0 10px 26px var(--glow); }

/* hero visual */
.sv-hero-visual { position: relative; min-height: 560px; }
.svh-glow { position: absolute; inset: 8% 0 0; background: radial-gradient(ellipse at 50% 42%, rgba(111,59,255,.2), rgba(59,130,255,.1) 45%, transparent 72%); filter: blur(26px); z-index: 0; }
.svh-orbit { position: absolute; top: 50%; left: 50%; width: 480px; height: 480px; transform: translate(-50%, -50%); border: 1.5px dashed rgba(111,59,255,.28); border-radius: 50%; animation: spin 46s linear infinite; z-index: 0; }
.svh-monitor { position: relative; z-index: 1; width: 400px; margin: 40px auto 0; padding: 10px 10px 0; border-radius: 20px; background: #fff; border: 1px solid var(--border); box-shadow: 0 36px 80px var(--shadow), 0 0 0 1px rgba(111,59,255,.06); animation: chipFloat 7s ease-in-out infinite; }
.svh-chrome { display: flex; align-items: center; gap: 6px; padding: 6px 8px 10px; }
.svh-chrome span { width: 9px; height: 9px; border-radius: 50%; background: #E8ECF5; }
.svh-chrome span:nth-child(1) { background: #FF5F57; }
.svh-chrome span:nth-child(2) { background: #FEBC2E; }
.svh-chrome span:nth-child(3) { background: #28C840; }
.svh-chrome small { margin-left: auto; font-size: 11px; color: var(--text-light); letter-spacing: .02em; }
.svh-screen { background: linear-gradient(180deg, #FBFBFE, #F4F6FD); border: 1px solid var(--border); border-radius: 14px; padding: 18px; }
.svh-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.svh-kpis > div { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 12px; box-shadow: 0 4px 12px rgba(20,20,43,.05); }
.svh-kpis small { display: block; font-size: 10px; color: var(--text-light); margin-bottom: 4px; }
.svh-kpis strong { display: block; font-family: var(--font-head); font-size: 17px; color: var(--dark); }
.svh-kpis em { display: block; font-style: normal; font-size: 10.5px; font-weight: 700; color: #16A34A; margin-top: 2px; }
.svh-bars { display: flex; align-items: flex-end; gap: 7px; height: 128px; margin-top: 16px; }
.svh-bars i { flex: 1; border-radius: 4px 4px 1px 1px; background: linear-gradient(180deg, var(--primary), var(--secondary)); opacity: .9; animation: svhGrow 1.2s var(--ease) both; }
.svh-bars i:nth-child(odd) { background: linear-gradient(180deg, #A78BFA, #6F3BFF); }
.svh-bars i:nth-child(1) { height: 38%; animation-delay: .05s; } .svh-bars i:nth-child(2) { height: 52%; animation-delay: .12s; } .svh-bars i:nth-child(3) { height: 44%; animation-delay: .2s; } .svh-bars i:nth-child(4) { height: 66%; animation-delay: .28s; } .svh-bars i:nth-child(5) { height: 58%; animation-delay: .36s; } .svh-bars i:nth-child(6) { height: 78%; animation-delay: .44s; } .svh-bars i:nth-child(7) { height: 62%; animation-delay: .52s; } .svh-bars i:nth-child(8) { height: 88%; animation-delay: .6s; } .svh-bars i:nth-child(9) { height: 70%; animation-delay: .68s; } .svh-bars i:nth-child(10) { height: 94%; animation-delay: .76s; } .svh-bars i:nth-child(11) { height: 82%; animation-delay: .84s; } .svh-bars i:nth-child(12) { height: 100%; animation-delay: .92s; }
@keyframes svhGrow { from { height: 6%; opacity: .2; } }
.svh-base { position: relative; z-index: 1; width: 190px; height: 24px; margin: -2px auto 0; background: linear-gradient(180deg, #fff, #EEF1FA); border: 1px solid var(--border); border-top: none; border-radius: 0 0 16px 16px; box-shadow: 0 16px 36px rgba(20,20,43,.12); }

/* floating chips */
.svh-chip { position: absolute; z-index: 2; display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 15px; background: rgba(255,255,255,.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid var(--border); box-shadow: 0 18px 44px var(--shadow); animation: chipFloat 6s ease-in-out infinite; }
.svh-chip strong { display: block; font-family: var(--font-head); font-size: 13px; color: var(--dark); line-height: 1.2; }
.svh-chip small { font-size: 11px; color: var(--text-light); }
.ch-ico { width: 38px; height: 38px; border-radius: 12px; background: var(--gradient); color: #fff; display: grid; place-items: center; box-shadow: 0 8px 20px var(--glow); }
.ch-ico svg { width: 18px; height: 18px; }
.ch-1 { left: -4%; top: 5%; animation-delay: 0s; }
.ch-2 { right: -6%; top: 18%; animation-delay: .9s; }
.ch-3 { left: -8%; top: 40%; animation-delay: .4s; }
.ch-4 { right: -4%; top: 54%; animation-delay: 1.4s; }
.ch-5 { left: -2%; top: 70%; animation-delay: .6s; }
.ch-6 { right: -8%; bottom: 3%; animation-delay: 1.8s; }

/* -- 30.2 Statistics bar -- */
.sv-stats-section { position: relative; z-index: 5; margin-top: -64px; }
.sv-stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; background: rgba(255,255,255,.92); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border: 1px solid var(--border); border-radius: 24px; box-shadow: 0 30px 70px var(--shadow); padding: 30px 12px; position: relative; overflow: hidden; }
.sv-stats::before { content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(135deg, rgba(111,59,255,.35), rgba(59,130,255,.35)); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.sv-stat { text-align: center; padding: 8px 10px; position: relative; }
.sv-stat + .sv-stat::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 52px; background: var(--border); }
.svs-ico { width: 46px; height: 46px; margin: 0 auto 12px; border-radius: 50%; background: var(--gradient); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 24px var(--glow); animation: chipFloat 5s ease-in-out infinite; }
.svs-ico svg { width: 20px; height: 20px; }
.svs-num { font-family: var(--font-head); font-size: clamp(1.65rem, 3vw, 2.1rem); font-weight: 800; color: var(--dark); line-height: 1; }
.sv-stat small { display: block; margin-top: 8px; font-size: 13px; color: var(--text-light); }

/* -- 30.3 Catalog + filters -- */
.svc-section { position: relative; overflow: hidden; }
.svc-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.svc-bg .sec-blob.sc-1 { width: 560px; height: 560px; top: -180px; left: -140px; background: radial-gradient(circle at 40% 40%, rgba(111,59,255,.24), rgba(111,59,255,0) 70%); }
.svc-bg .sec-blob.sc-2 { width: 480px; height: 480px; bottom: -160px; right: -130px; background: radial-gradient(circle at 60% 60%, rgba(59,130,255,.18), rgba(59,130,255,0) 70%); }
.svc-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: -8px 0 48px; position: relative; z-index: 1; }
.svc-tab { font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--text); background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 10px 22px; cursor: pointer; transition: all .35s var(--ease); position: relative; overflow: hidden; }
.svc-tab:hover { transform: translateY(-2px); border-color: rgba(111,59,255,.4); color: var(--primary); box-shadow: 0 10px 26px var(--glow); }
.svc-tab.active { background: var(--gradient); color: #fff; border-color: transparent; box-shadow: 0 12px 30px var(--glow); }
.sv-anchor { display: block; position: relative; top: -120px; visibility: hidden; height: 0; }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 1; }
.svc-card { display: flex; flex-direction: column; padding: 30px 26px; background: #fff; border: 1px solid var(--border); border-radius: 22px; box-shadow: 0 4px 20px var(--shadow); text-decoration: none; color: inherit; transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease); position: relative; overflow: hidden; scroll-margin-top: 120px; }
.svc-card::before { content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(135deg, rgba(111,59,255,.6), rgba(59,130,255,.6)); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .45s var(--ease); pointer-events: none; }
.svc-card:hover { transform: translateY(-10px); box-shadow: 0 28px 60px var(--shadow), 0 14px 44px var(--glow); }
.svc-card:hover::before { opacity: 1; }
.svc-ico { width: 56px; height: 56px; border-radius: 16px; background: var(--gradient); color: #fff; display: grid; place-items: center; box-shadow: 0 12px 28px var(--glow); margin-bottom: 20px; transition: transform .45s var(--ease); }
.svc-ico svg { width: 26px; height: 26px; }
.svc-card:hover .svc-ico { transform: rotate(-8deg) scale(1.06); }
.svc-card h3 { font-size: 19px; margin-bottom: 10px; }
.svc-card > p { font-size: 14.5px; color: var(--text); margin-bottom: 16px; }
.svc-feats { list-style: none; display: grid; gap: 9px; margin-bottom: 20px; }
.svc-feats li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--text); }
.svc-feats li svg { width: 15px; height: 15px; color: var(--primary); flex: none; }
.svc-link { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; font-family: var(--font-head); font-weight: 600; font-size: 14.5px; color: var(--primary); }
.svc-link svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.svc-card:hover .svc-link svg { transform: translateX(6px); }

/* -- 30.4 Why choose our services -- */
.svw-section { position: relative; overflow: hidden; }
.svw-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 70px; align-items: center; }
.svw-media { position: relative; }
.svw-glow { position: absolute; inset: -4% -6%; background: radial-gradient(ellipse at 45% 45%, rgba(111,59,255,.18), transparent 70%); filter: blur(24px); z-index: 0; }
.svw-media img { position: relative; z-index: 1; width: 100%; aspect-ratio: 8/9; object-fit: cover; border-radius: 28px; box-shadow: 0 40px 90px var(--shadow); }
.svw-badge { position: absolute; z-index: 2; left: -22px; bottom: 34px; display: flex; align-items: center; gap: 14px; padding: 14px 20px; border-radius: 18px; background: rgba(255,255,255,.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid var(--border); box-shadow: 0 20px 50px var(--shadow); animation: chipFloat 6s ease-in-out infinite; }
.wb-ico { width: 46px; height: 46px; border-radius: 14px; background: var(--gradient); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 24px var(--glow); }
.wb-ico svg { width: 20px; height: 20px; }
.svw-badge strong { display: block; font-family: var(--font-head); font-size: 16px; color: var(--dark); line-height: 1.2; }
.svw-badge small { font-size: 12px; color: var(--text-light); }
.svw-copy h2 { font-size: clamp(2rem, 3.8vw, 2.9rem); margin: 24px 0 18px; text-wrap: balance; }
.svw-copy > p { max-width: 600px; margin-bottom: 34px; }
.svw-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.svw-feat { display: flex; gap: 14px; align-items: flex-start; padding: 20px 18px; background: #fff; border: 1px solid var(--border); border-radius: 18px; box-shadow: 0 4px 16px var(--shadow); transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease); }
.svw-feat:hover { transform: translateY(-6px); box-shadow: 0 18px 40px var(--shadow), 0 10px 30px var(--glow); border-color: rgba(111,59,255,.22); }
.swf-ico { width: 42px; height: 42px; flex: none; border-radius: 13px; background: var(--gradient); color: #fff; display: grid; place-items: center; box-shadow: 0 8px 20px var(--glow); }
.swf-ico svg { width: 19px; height: 19px; }
.svw-feat h3 { font-size: 15.5px; margin-bottom: 5px; }
.svw-feat p { font-size: 13.5px; color: var(--text); line-height: 1.55; }

/* -- 30.5 Process / Tech / Industries / Testimonials context -- */
.sv-process { position: relative; overflow: hidden; }
.sv-process-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.sv-process-bg .sec-blob.sp-1 { width: 540px; height: 540px; top: -170px; right: -130px; background: radial-gradient(circle at 40% 40%, rgba(111,59,255,.22), rgba(111,59,255,0) 70%); }
.sv-process-bg .sec-blob.sp-2 { width: 480px; height: 480px; bottom: -150px; left: -120px; background: radial-gradient(circle at 60% 60%, rgba(59,130,255,.18), rgba(59,130,255,0) 70%); }
.sv-process .container { position: relative; z-index: 1; }
.sv-process .process-steps { grid-template-columns: repeat(6, 1fr); }
.sv-tech { position: relative; }
.svi-section { position: relative; overflow: hidden; }
.svi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; z-index: 1; }
.svi-card { padding: 28px 24px; text-align: left; }
.svi-card:hover { transform: translateY(-8px); box-shadow: 0 24px 54px var(--shadow), 0 12px 36px var(--glow); border-color: rgba(111,59,255,.2); }
.svi-ico { width: 52px; height: 52px; border-radius: 15px; background: var(--gradient); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 24px var(--glow); margin-bottom: 18px; transition: transform .45s var(--ease); }
.svi-ico svg { width: 24px; height: 24px; }
.svi-card:hover .svi-ico { transform: rotate(-8deg) scale(1.08); }
.svi-card h3 { font-size: 17px; margin-bottom: 8px; }
.svi-card p { font-size: 14px; color: var(--text); }
.sv-testi { position: relative; overflow: hidden; }
.sv-testi-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.sv-testi-bg .sec-blob.st-1 { width: 560px; height: 560px; top: -170px; left: -140px; background: radial-gradient(circle at 40% 40%, rgba(111,59,255,.22), rgba(111,59,255,0) 70%); }
.sv-testi-bg .sec-blob.st-2 { width: 500px; height: 500px; bottom: -150px; right: -130px; background: radial-gradient(circle at 60% 60%, rgba(59,130,255,.18), rgba(59,130,255,0) 70%); }
.sv-testi .testi-slider { position: relative; z-index: 1; }

/* -- 30.6 Services responsive -- */
@media (max-width: 1280px) {
  .sv-hero-grid { gap: 44px; }
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .svi-grid { grid-template-columns: repeat(3, 1fr); }
  .sv-process .process-steps { grid-template-columns: repeat(3, 1fr); }
  .svh-chip { padding: 9px 12px; }
  .svh-chip strong { font-size: 12px; }
}
@media (max-width: 1024px) {
  .sv-hero { padding: 170px 0 110px; }
  .sv-hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .sv-hero-copy { text-align: center; }
  .sv-hero-copy > p { margin: 0 auto; }
  .sv-pills { justify-content: center; }
  .hero-actions { justify-content: center; }
  .sv-hero-visual { max-width: 560px; margin: 0 auto; }
  .sv-stats-section { margin-top: -40px; }
  .sv-stats { grid-template-columns: repeat(3, 1fr); row-gap: 28px; }
  .sv-stat + .sv-stat::before { display: none; }
  .svw-grid { grid-template-columns: 1fr; gap: 56px; }
  .svw-media { max-width: 560px; margin: 0 auto; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .sv-hero { padding: 150px 0 96px; }
  .sv-hero-visual { min-height: 470px; transform: scale(.94); }
  .svh-orbit { width: 360px; height: 360px; }
  .svh-chip strong { font-size: 12px; }
  .svh-chip small { font-size: 10px; }
  .ch-ico { width: 32px; height: 32px; }
  .ch-ico svg { width: 15px; height: 15px; }
  .sv-stats { grid-template-columns: repeat(2, 1fr); }
  .sv-stats .sv-stat:nth-child(5) { grid-column: 1 / -1; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-filters { gap: 8px; }
  .svc-tab { padding: 9px 16px; font-size: 13px; }
  .svw-feats { grid-template-columns: 1fr; }
  .sv-process .process-steps { grid-template-columns: repeat(2, 1fr); }
  .svi-grid { grid-template-columns: 1fr; }
  .sv-anchor { top: -90px; }
}

/* ============================================================
   31. ABOUT PAGE
   ============================================================ */
/* -- 31.1 Hero -- */
.ab-hero { padding: 190px 0 120px; position: relative; overflow: hidden; min-height: 650px; display: flex; align-items: center; }
.ab-hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.ab-hero .sec-blob.ah-1 { width: 620px; height: 620px; top: -220px; left: -160px; background: radial-gradient(circle at 40% 40%, rgba(111,59,255,.3), rgba(111,59,255,0) 70%); }
.ab-hero .sec-blob.ah-2 { width: 540px; height: 540px; bottom: -180px; right: -140px; background: radial-gradient(circle at 60% 60%, rgba(59,130,255,.22), rgba(59,130,255,0) 70%); }
.ab-dots { top: auto; bottom: 60px; left: 28px; }
.ab-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; position: relative; z-index: 1; }
.ab-hero-copy h1 { font-size: clamp(2.4rem, 4.6vw, 3.5rem); line-height: 1.1; margin: 26px 0 22px; text-wrap: balance; }
.ab-hero-copy > p { max-width: 580px; font-size: 1.05rem; }
.ab-points { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; margin: 30px 0 36px; max-width: 560px; }
.ab-points li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--dark); font-size: 14.5px; }
.ap-ico { width: 28px; height: 28px; flex: none; border-radius: 9px; background: var(--gradient-soft); color: var(--primary); display: grid; place-items: center; }
.ap-ico svg { width: 15px; height: 15px; }

/* hero media */
.ab-hero-media { position: relative; }
.ahm-glow { position: absolute; inset: 6% 0 0; background: radial-gradient(ellipse at 50% 45%, rgba(111,59,255,.2), rgba(59,130,255,.1) 45%, transparent 72%); filter: blur(26px); z-index: 0; }
.ahm-frame { position: relative; z-index: 1; border-radius: 30px; overflow: hidden; box-shadow: 0 40px 90px var(--shadow); border: 1px solid rgba(232,236,245,.9); }
.ahm-frame::before { content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(135deg, rgba(111,59,255,.45), rgba(59,130,255,.45)); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; z-index: 2; }
.ahm-frame img { width: 100%; aspect-ratio: 4/4.6; object-fit: cover; display: block; transition: transform 1.4s var(--ease); }
.ahm-frame:hover img { transform: scale(1.06); }
.ahm-reflection { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(115deg, rgba(255,255,255,.28) 0%, rgba(255,255,255,0) 32%); }
.ahm-chip { position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-radius: 16px; background: rgba(255,255,255,.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid var(--border); box-shadow: 0 18px 44px var(--shadow); animation: chipFloat 6s ease-in-out infinite; }
.ahm-chip strong { display: block; font-family: var(--font-head); font-size: 14px; color: var(--dark); line-height: 1.2; }
.ahm-chip small { font-size: 11.5px; color: var(--text-light); }
.ahm-chip .ch-ico { width: 40px; height: 40px; }
.ahm-chip.c-1 { left: -26px; top: 8%; animation-delay: 0s; }
.ahm-chip.c-2 { right: -22px; bottom: 10%; animation-delay: 1.1s; }

/* -- 31.2 Statistics (reuses .sv-stats) -- */
.ab-stats-section { position: relative; z-index: 5; margin-top: -64px; }

/* -- 31.3 Mission & Vision -- */
.ab-mv-section { position: relative; overflow: hidden; }
.ab-mv-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.ab-mv-bg .sec-blob.mv-1 { width: 560px; height: 560px; top: -170px; left: -130px; background: radial-gradient(circle at 40% 40%, rgba(111,59,255,.22), rgba(111,59,255,0) 70%); }
.ab-mv-bg .sec-blob.mv-2 { width: 500px; height: 500px; bottom: -160px; right: -120px; background: radial-gradient(circle at 60% 60%, rgba(59,130,255,.18), rgba(59,130,255,0) 70%); }
.ab-mv-shell { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto 1fr; gap: 48px; align-items: center; padding: 64px 56px; border-radius: 30px; background: rgba(255,255,255,.92); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border: 1px solid var(--border); box-shadow: 0 30px 70px var(--shadow); overflow: hidden; }
.ab-mv-shell::before { content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(135deg, rgba(111,59,255,.4), rgba(59,130,255,.4)); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.ab-mv-col { position: relative; padding: 20px 8px; }
.ab-mv-ico { width: 62px; height: 62px; border-radius: 18px; background: var(--gradient); color: #fff; display: grid; place-items: center; box-shadow: 0 14px 30px var(--glow); margin-bottom: 22px; animation: chipFloat 5.5s ease-in-out infinite; }
.ab-mv-ico svg { width: 28px; height: 28px; }
.ab-mv-col h2 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); margin-bottom: 14px; }
.ab-mv-col p { font-size: 15px; color: var(--text); line-height: 1.7; max-width: 380px; }
.ab-mv-num { position: absolute; top: 0; right: 0; font-family: var(--font-head); font-weight: 800; font-size: 44px; line-height: 1; background: var(--gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; opacity: .16; }
.ab-mv-peak { position: relative; display: grid; place-items: center; animation: chipFloat 7s ease-in-out infinite; }
.ab-mv-peak svg { filter: drop-shadow(0 18px 40px var(--glow)); }
.ab-mv-float { position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 7px; padding: 9px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--border); box-shadow: 0 12px 30px var(--shadow); font-family: var(--font-head); font-weight: 600; font-size: 12.5px; color: var(--primary); white-space: nowrap; }
.ab-mv-float svg { width: 15px; height: 15px; }

/* -- 31.4 Core values -- */
.ab-values-section { position: relative; }
.ab-values { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; position: relative; z-index: 1; }
.ab-value { padding: 30px 24px; text-align: center; }
.ab-value:hover { transform: translateY(-8px); box-shadow: 0 24px 54px var(--shadow), 0 12px 36px var(--glow); border-color: rgba(111,59,255,.22); }
.abv-ico { width: 54px; height: 54px; margin: 0 auto 18px; border-radius: 16px; background: var(--gradient); color: #fff; display: grid; place-items: center; box-shadow: 0 12px 28px var(--glow); transition: transform .45s var(--ease); }
.abv-ico svg { width: 25px; height: 25px; }
.ab-value:hover .abv-ico { transform: rotate(-8deg) scale(1.08); }
.ab-value h3 { font-size: 17px; margin-bottom: 8px; }
.ab-value p { font-size: 13.5px; color: var(--text); line-height: 1.6; }

/* -- 31.5 Team -- */
.ab-team-section { position: relative; overflow: hidden; }
.ab-team-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.ab-team-bg .sec-blob.tm-1 { width: 560px; height: 560px; top: -170px; right: -140px; background: radial-gradient(circle at 40% 40%, rgba(111,59,255,.22), rgba(111,59,255,0) 70%); }
.ab-team-bg .sec-blob.tm-2 { width: 500px; height: 500px; bottom: -160px; left: -130px; background: radial-gradient(circle at 60% 60%, rgba(59,130,255,.18), rgba(59,130,255,0) 70%); }
.ab-team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 1; }
.ab-team-card { position: relative; border-radius: 24px; overflow: hidden; background: #fff; border: 1px solid var(--border); box-shadow: 0 4px 20px var(--shadow); transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease); }
.ab-team-card:hover { transform: translateY(-10px); box-shadow: 0 28px 60px var(--shadow), 0 0 0 1px rgba(111,59,255,.1), 0 14px 44px var(--glow); }
.abt-photo { position: relative; aspect-ratio: 4/4.4; overflow: hidden; }
.abt-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.ab-team-card:hover .abt-photo img { transform: scale(1.08); }
.abt-overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: center; gap: 12px; padding-bottom: 22px; background: linear-gradient(180deg, transparent 40%, rgba(19,26,52,.72)); opacity: 0; transition: opacity .45s var(--ease); }
.ab-team-card:hover .abt-overlay { opacity: 1; }
.abt-overlay a { width: 42px; height: 42px; border-radius: 50%; background: #fff; color: var(--primary); display: grid; place-items: center; box-shadow: 0 8px 20px rgba(0,0,0,.25); transform: translateY(14px); transition: transform .4s var(--ease), background .3s var(--ease), color .3s var(--ease); }
.ab-team-card:hover .abt-overlay a { transform: translateY(0); }
.abt-overlay a:nth-child(2) { transition-delay: .06s; }
.abt-overlay a:hover { background: var(--gradient); color: #fff; }
.abt-overlay a svg { width: 19px; height: 19px; }
.abt-body { padding: 20px 22px 26px; text-align: center; }
.abt-body h3 { font-size: 18px; }
.abt-role { display: inline-block; margin: 4px 0 10px; font-family: var(--font-head); font-weight: 600; font-size: 12.5px; color: var(--primary); letter-spacing: .04em; }
.abt-body p { font-size: 13.5px; color: var(--text); line-height: 1.6; }

/* -- 31.6 Journey timeline -- */
.ab-journey-section { position: relative; }
.ab-journey { position: relative; max-width: 860px; margin: 0 auto; }
.ab-jn-line { position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%); width: 2px; background: var(--border); border-radius: 2px; }
.ab-jn-fill { position: absolute; top: 0; left: 0; width: 100%; height: 0; background: var(--gradient); border-radius: 2px; box-shadow: 0 0 16px var(--glow); }
.ab-jn-steps { position: relative; z-index: 1; display: grid; gap: 40px; }
.ab-jn-step { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.ab-jn-step .ab-jn-card { grid-column: 1; }
.ab-jn-step.right .ab-jn-card { grid-column: 2; grid-row: 1; }
.ab-jn-node { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); z-index: 2; width: 56px; height: 56px; border-radius: 50%; background: #fff; border: 1px solid var(--border); display: grid; place-items: center; box-shadow: 0 10px 26px var(--shadow); font-family: var(--font-head); font-weight: 800; font-size: 12.5px; color: var(--primary); transition: all .4s var(--ease); }
.ab-jn-step.left .ab-jn-node { background: var(--gradient); color: #fff; border-color: transparent; box-shadow: 0 12px 30px var(--glow); }
.ab-jn-card { padding: 24px 26px; border-radius: 20px; background: #fff; border: 1px solid var(--border); box-shadow: 0 12px 34px var(--shadow); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.ab-jn-card:hover { transform: translateY(-5px); box-shadow: 0 22px 48px var(--shadow), 0 10px 30px var(--glow); }
.ab-jn-year { display: inline-block; font-family: var(--font-head); font-weight: 800; font-size: 12px; letter-spacing: .08em; color: #fff; background: var(--gradient); padding: 5px 12px; border-radius: 999px; margin-bottom: 12px; }
.ab-jn-card h3 { font-size: 17px; margin-bottom: 6px; }
.ab-jn-card p { font-size: 13.5px; color: var(--text); line-height: 1.6; }

/* -- 31.7 Why choose us -- */
.ab-why-section { position: relative; }
.ab-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; z-index: 1; }
.ab-why-card { padding: 28px 26px; border-radius: 22px; background: #fff; border: 1px solid var(--border); box-shadow: 0 4px 18px var(--shadow); transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease); }
.ab-why-card:hover { transform: translateY(-8px); box-shadow: 0 24px 52px var(--shadow), 0 12px 36px var(--glow); border-color: rgba(111,59,255,.22); }
.awy-ico { width: 50px; height: 50px; border-radius: 14px; background: var(--gradient); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 24px var(--glow); margin-bottom: 18px; transition: transform .45s var(--ease); }
.awy-ico svg { width: 23px; height: 23px; }
.ab-why-card:hover .awy-ico { transform: rotate(-8deg) scale(1.08); }
.ab-why-card h3 { font-size: 16.5px; margin-bottom: 8px; }
.ab-why-card p { font-size: 13.5px; color: var(--text); line-height: 1.6; }

/* -- 31.8 Gallery -- */
.ab-gallery-section { position: relative; }
.ab-gallery { columns: 3; column-gap: 18px; position: relative; z-index: 1; }
.ab-g-item { position: relative; display: block; width: 100%; margin: 0 0 18px; padding: 0; border: 0; cursor: pointer; break-inside: avoid; border-radius: 20px; overflow: hidden; background: #fff; box-shadow: 0 6px 22px var(--shadow); transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.ab-g-item:nth-child(3n+1) img { aspect-ratio: 4/3; }
.ab-g-item:nth-child(3n+2) img { aspect-ratio: 3/3.4; }
.ab-g-item:nth-child(3n) img { aspect-ratio: 4/2.9; }
.ab-g-item:hover { transform: translateY(-6px); box-shadow: 0 24px 54px var(--shadow), 0 12px 36px var(--glow); }
.ab-g-item img { width: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.ab-g-item:hover img { transform: scale(1.09); }
.ab-g-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 52%, rgba(19,26,52,.55)); opacity: 0; transition: opacity .45s var(--ease); }
.ab-g-item:hover::after { opacity: 1; }
.ab-g-zoom { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(.6); z-index: 2; width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.95); color: var(--primary); display: grid; place-items: center; box-shadow: 0 12px 30px rgba(0,0,0,.25); opacity: 0; transition: all .4s var(--ease); }
.ab-g-item:hover .ab-g-zoom { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.ab-g-zoom svg { width: 22px; height: 22px; }
.ab-g-cap { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 2; text-align: left; color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 14.5px; opacity: 0; transform: translateY(8px); transition: all .4s var(--ease); }
.ab-g-item:hover .ab-g-cap { opacity: 1; transform: translateY(0); }

/* -- 31.9 Quote card (large testimonial variant) -- */
.ab-quote-section { position: relative; overflow: hidden; }
.ab-quote-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.ab-quote-bg .sec-blob.qt-1 { width: 560px; height: 560px; top: -170px; left: -130px; background: radial-gradient(circle at 40% 40%, rgba(111,59,255,.22), rgba(111,59,255,0) 70%); }
.ab-quote-bg .sec-blob.qt-2 { width: 500px; height: 500px; bottom: -160px; right: -130px; background: radial-gradient(circle at 60% 60%, rgba(59,130,255,.18), rgba(59,130,255,0) 70%); }
.ab-quote-card { min-height: 300px; }
.ab-quote-card blockquote { font-size: 1.02rem; }
.ab-quote-section .testi-slider { position: relative; z-index: 1; }

/* -- 31.10 Lightbox -- */
.lb { position: fixed; inset: 0; z-index: 1200; display: grid; place-items: center; background: rgba(19,26,52,.88); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 24px; }
.lb[hidden] { display: none; }
.lb-close { position: absolute; top: 22px; right: 22px; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: #fff; display: grid; place-items: center; cursor: pointer; transition: all .3s var(--ease); }
.lb-close:hover { background: var(--gradient); border-color: transparent; transform: rotate(90deg); }
.lb-close svg { width: 20px; height: 20px; }
.lb-figure { max-width: 960px; width: 100%; margin: 0; text-align: center; }
.lb-figure img { width: 100%; max-height: 78vh; object-fit: contain; border-radius: 18px; box-shadow: 0 40px 90px rgba(0,0,0,.5); }
.lb-figure figcaption { margin-top: 16px; color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 15px; letter-spacing: .02em; }

/* -- 31.11 About responsive -- */
@media (max-width: 1280px) {
  .ab-hero-grid { gap: 48px; }
  .ab-values { grid-template-columns: repeat(3, 1fr); }
  .ab-team-grid { grid-template-columns: repeat(2, 1fr); }
  .ab-mv-shell { grid-template-columns: 1fr auto 1fr; gap: 28px; padding: 48px 36px; }
  .ab-gallery { columns: 2; }
  .ab-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .ab-hero { padding: 160px 0 100px; min-height: 0; }
  .ab-hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .ab-hero-copy { text-align: center; }
  .ab-hero-copy > p { margin: 0 auto; }
  .ab-points { margin: 30px auto 36px; text-align: left; }
  .hero-actions { justify-content: center; }
  .ab-hero-media { max-width: 520px; margin: 0 auto; }
  .ahm-chip.c-1 { left: -14px; } .ahm-chip.c-2 { right: -14px; }
  .ab-stats-section { margin-top: -40px; }
  .ab-mv-shell { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .ab-mv-col p { margin: 0 auto; }
  .ab-mv-num { right: auto; left: 50%; transform: translateX(-50%); top: -6px; }
  .ab-jn-step { grid-template-columns: 1fr; gap: 14px; padding-left: 84px; }
  .ab-jn-step .ab-jn-card, .ab-jn-step.right .ab-jn-card { grid-column: 1; grid-row: auto; }
  .ab-jn-node { left: 28px; transform: translateX(0); }
  .ab-jn-line { left: 28px; transform: none; }
  .ab-gallery { columns: 2; }
}
@media (max-width: 640px) {
  .ab-hero { padding: 140px 0 90px; }
  .ab-hero-media { max-width: 420px; }
  .ahm-frame img { aspect-ratio: 4/4.8; }
  .ahm-chip { padding: 10px 12px; }
  .ahm-chip .ch-ico { width: 34px; height: 34px; }
  .ahm-chip.c-1 { left: -6px; } .ahm-chip.c-2 { right: -6px; }
  .ab-values { grid-template-columns: 1fr; }
  .ab-team-grid { grid-template-columns: 1fr; }
  .ab-why-grid { grid-template-columns: 1fr; }
  .ab-gallery { columns: 1; }
  .ab-mv-shell { padding: 40px 22px; }
  .ab-points { grid-template-columns: 1fr; }
}

/* ============================================================
   32. CASE STUDIES PAGE
   ============================================================ */
/* -- 32.1 Hero -- */
.cst-hero { padding: 190px 0 120px; position: relative; overflow: hidden; min-height: 650px; display: flex; align-items: center; }
.cst-hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cst-hero .sec-blob.ch-1 { width: 620px; height: 620px; top: -220px; left: -160px; background: radial-gradient(circle at 40% 40%, rgba(111,59,255,.3), rgba(111,59,255,0) 70%); }
.cst-hero .sec-blob.ch-2 { width: 540px; height: 540px; bottom: -180px; right: -140px; background: radial-gradient(circle at 60% 60%, rgba(59,130,255,.22), rgba(59,130,255,0) 70%); }
.cst-dots { top: auto; bottom: 60px; left: 28px; }
.cst-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; position: relative; z-index: 1; }
.cst-hero-copy h1 { font-size: clamp(2.4rem, 4.6vw, 3.5rem); line-height: 1.1; margin: 26px 0 22px; text-wrap: balance; }
.cst-hero-copy > p { max-width: 580px; font-size: 1.05rem; }
.cst-points { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; margin: 30px 0 36px; max-width: 560px; }
.cst-points li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--dark); font-size: 14.5px; }
.cp-ico { width: 28px; height: 28px; flex: none; border-radius: 9px; background: var(--gradient-soft); color: var(--primary); display: grid; place-items: center; }
.cp-ico svg { width: 15px; height: 15px; }

/* hero visual — monitor composition */
.cst-hero-visual { position: relative; min-height: 560px; }
.csth-glow { position: absolute; inset: 8% 0 0; background: radial-gradient(ellipse at 50% 42%, rgba(111,59,255,.2), rgba(59,130,255,.1) 45%, transparent 72%); filter: blur(26px); z-index: 0; }
.csth-orbit { position: absolute; top: 50%; left: 50%; width: 480px; height: 480px; transform: translate(-50%, -50%); border: 1.5px dashed rgba(111,59,255,.28); border-radius: 50%; animation: spin 46s linear infinite; z-index: 0; }
.csth-monitor { position: relative; z-index: 1; width: 400px; margin: 40px auto 0; padding: 10px 10px 0; border-radius: 20px; background: #fff; border: 1px solid var(--border); box-shadow: 0 36px 80px var(--shadow), 0 0 0 1px rgba(111,59,255,.06); animation: chipFloat 7s ease-in-out infinite; }
.csth-chrome { display: flex; align-items: center; gap: 6px; padding: 6px 8px 10px; }
.csth-chrome span { width: 9px; height: 9px; border-radius: 50%; background: #E8ECF5; }
.csth-chrome span:nth-child(1) { background: #FF5F57; }
.csth-chrome span:nth-child(2) { background: #FEBC2E; }
.csth-chrome span:nth-child(3) { background: #28C840; }
.csth-chrome small { margin-left: auto; font-size: 11px; color: var(--text-light); letter-spacing: .02em; }
.csth-screen { background: linear-gradient(180deg, #FBFBFE, #F4F6FD); border: 1px solid var(--border); border-radius: 14px; padding: 18px; }
.csth-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.csth-kpis > div { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 12px; box-shadow: 0 4px 12px rgba(20,20,43,.05); }
.csth-kpis small { display: block; font-size: 10px; color: var(--text-light); margin-bottom: 4px; }
.csth-kpis strong { display: block; font-family: var(--font-head); font-size: 17px; color: var(--dark); }
.csth-kpis em { display: block; font-style: normal; font-size: 10.5px; font-weight: 700; color: #16A34A; margin-top: 2px; }
.csth-bars { display: flex; align-items: flex-end; gap: 7px; height: 128px; margin-top: 16px; }
.csth-bars i { flex: 1; border-radius: 4px 4px 1px 1px; background: linear-gradient(180deg, var(--primary), var(--secondary)); opacity: .9; animation: svhGrow 1.2s var(--ease) both; }
.csth-bars i:nth-child(odd) { background: linear-gradient(180deg, #A78BFA, #6F3BFF); }
.csth-bars i:nth-child(1) { height: 38%; animation-delay: .05s; } .csth-bars i:nth-child(2) { height: 52%; animation-delay: .12s; } .csth-bars i:nth-child(3) { height: 44%; animation-delay: .2s; } .csth-bars i:nth-child(4) { height: 66%; animation-delay: .28s; } .csth-bars i:nth-child(5) { height: 58%; animation-delay: .36s; } .csth-bars i:nth-child(6) { height: 78%; animation-delay: .44s; } .csth-bars i:nth-child(7) { height: 62%; animation-delay: .52s; } .csth-bars i:nth-child(8) { height: 88%; animation-delay: .6s; } .csth-bars i:nth-child(9) { height: 70%; animation-delay: .68s; } .csth-bars i:nth-child(10) { height: 94%; animation-delay: .76s; } .csth-bars i:nth-child(11) { height: 82%; animation-delay: .84s; } .csth-bars i:nth-child(12) { height: 100%; animation-delay: .92s; }
.csth-base { position: relative; z-index: 1; width: 190px; height: 24px; margin: -2px auto 0; background: linear-gradient(180deg, #fff, #EEF1FA); border: 1px solid var(--border); border-top: none; border-radius: 0 0 16px 16px; box-shadow: 0 16px 36px rgba(20,20,43,.12); }
.csth-chip { position: absolute; z-index: 2; display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 15px; background: rgba(255,255,255,.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid var(--border); box-shadow: 0 18px 44px var(--shadow); animation: chipFloat 6s ease-in-out infinite; }
.csth-chip strong { display: block; font-family: var(--font-head); font-size: 13px; color: var(--dark); line-height: 1.2; }
.csth-chip small { font-size: 11px; color: var(--text-light); }
.csth-chip .ch-ico { width: 38px; height: 38px; border-radius: 12px; background: var(--gradient); color: #fff; display: grid; place-items: center; box-shadow: 0 8px 20px var(--glow); }
.csth-chip .ch-ico svg { width: 18px; height: 18px; }
.csth-chip.k-1 { left: -4%; top: 5%; animation-delay: 0s; }
.csth-chip.k-2 { right: -6%; top: 18%; animation-delay: .9s; }
.csth-chip.k-3 { left: -8%; top: 40%; animation-delay: .4s; }
.csth-chip.k-4 { right: -4%; top: 56%; animation-delay: 1.4s; }

/* -- 32.2 Statistics (reuses .sv-stats) -- */
.cst-stats-section { position: relative; z-index: 5; margin-top: -64px; }

/* -- 32.3 Grid + filter (tabs reuse .svc-tab) -- */
.cst-grid-section { position: relative; overflow: hidden; }
.cst-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cst-bg .sec-blob.cg-1 { width: 560px; height: 560px; top: -180px; left: -140px; background: radial-gradient(circle at 40% 40%, rgba(111,59,255,.24), rgba(111,59,255,0) 70%); }
.cst-bg .sec-blob.cg-2 { width: 480px; height: 480px; bottom: -160px; right: -130px; background: radial-gradient(circle at 60% 60%, rgba(59,130,255,.18), rgba(59,130,255,0) 70%); }
.cst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 1; }
.svc-empty { grid-column: 1 / -1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; padding: 64px 32px; background: #fff; border: 1px dashed var(--border); border-radius: var(--radius); box-shadow: 0 18px 50px rgba(20,20,43,.06); }
.svc-empty[hidden] { display: none; }
.svc-empty i { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: var(--gradient); color: #fff; box-shadow: 0 12px 30px var(--glow); }
.svc-empty h3 { font-size: 22px; margin: 0; color: var(--ink); }
.svc-empty p { max-width: 460px; margin: 0; color: var(--text); }
.cst-card { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border); border-radius: 22px; overflow: hidden; box-shadow: 0 4px 20px var(--shadow); text-decoration: none; color: inherit; transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease); }
.cst-card:hover { transform: translateY(-10px); box-shadow: 0 28px 60px var(--shadow), 0 0 0 1px rgba(111,59,255,.1), 0 14px 44px var(--glow); border-color: rgba(111,59,255,.28); }
.cst-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.cst-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.cst-card:hover .cst-img img { transform: scale(1.09); }
.cst-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(19,26,52,.4)); }
.cst-badge { position: absolute; top: 14px; left: 14px; z-index: 2; font-family: var(--font-head); font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 6px 13px; border-radius: 99px; background: rgba(255,255,255,.92); color: var(--dark); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.cst-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.cst-body h3 { font-size: 19px; margin-bottom: 8px; }
.cst-body > p { font-size: 13.5px; color: var(--text); margin-bottom: 18px; flex: 1; }
.cst-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 18px; }
.cst-results > div { padding: 12px 8px; border-radius: 12px; background: var(--bg-alt); border: 1px solid var(--border); text-align: center; transition: all .35s var(--ease); }
.cst-card:hover .cst-results > div { background: #fff; border-color: rgba(111,59,255,.25); box-shadow: 0 8px 20px var(--shadow); }
.cst-results strong { display: block; font-family: var(--font-head); font-size: 16px; font-weight: 800; color: var(--primary); }
.cst-results small { font-size: 10px; color: var(--text-light); line-height: 1.3; display: block; margin-top: 2px; }
.cst-link { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--primary); }
.cst-link svg { width: 15px; height: 15px; transition: transform .35s var(--ease); }
.cst-card:hover .cst-link svg { transform: translateX(6px); }

/* -- 32.4 Success metrics -- */
.cst-metrics-section { position: relative; overflow: hidden; }
.cst-metrics-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cst-metrics-bg .sec-blob.cm-1 { width: 560px; height: 560px; top: -170px; left: -130px; background: radial-gradient(circle at 40% 40%, rgba(111,59,255,.22), rgba(111,59,255,0) 70%); }
.cst-metrics-bg .sec-blob.cm-2 { width: 500px; height: 500px; bottom: -160px; right: -120px; background: radial-gradient(circle at 60% 60%, rgba(59,130,255,.18), rgba(59,130,255,0) 70%); }
.cst-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; z-index: 1; }
.cst-metric { padding: 28px 26px; border-radius: 22px; background: #fff; border: 1px solid var(--border); box-shadow: 0 4px 18px var(--shadow); transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease); }
.cst-metric:hover { transform: translateY(-8px); box-shadow: 0 24px 52px var(--shadow), 0 12px 36px var(--glow); border-color: rgba(111,59,255,.22); }
.csm-ico { width: 50px; height: 50px; border-radius: 14px; background: var(--gradient); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 24px var(--glow); margin-bottom: 16px; transition: transform .45s var(--ease); }
.csm-ico svg { width: 23px; height: 23px; }
.cst-metric:hover .csm-ico { transform: rotate(-8deg) scale(1.08); }
.csm-num { font-family: var(--font-head); font-size: clamp(1.7rem, 2.8vw, 2.2rem); font-weight: 800; color: var(--dark); line-height: 1; }
.cst-metric h3 { font-size: 16.5px; margin: 10px 0 6px; }
.cst-metric p { font-size: 13.5px; color: var(--text); line-height: 1.6; margin-bottom: 16px; }
.csm-bar { display: block; height: 6px; border-radius: 99px; background: var(--bg-alt); overflow: hidden; }
.csm-bar i { display: block; height: 100%; border-radius: 99px; background: var(--gradient); width: 0; box-shadow: 0 0 12px var(--glow); }

/* -- 32.5 Stories / tech / process reuse existing testi-*, tech-*, process-* -- */
.cst-stories-section { position: relative; }
.cst-tech-section { position: relative; }
.cst-process-section { position: relative; overflow: hidden; }
.cst-process-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cst-process-bg .sec-blob.cp-1 { width: 540px; height: 540px; top: -170px; right: -130px; background: radial-gradient(circle at 40% 40%, rgba(111,59,255,.22), rgba(111,59,255,0) 70%); }
.cst-process-bg .sec-blob.cp-2 { width: 480px; height: 480px; bottom: -150px; left: -120px; background: radial-gradient(circle at 60% 60%, rgba(59,130,255,.18), rgba(59,130,255,0) 70%); }
.cst-process-section .container { position: relative; z-index: 1; }
.cst-process-section .process-steps { grid-template-columns: repeat(7, 1fr); }

/* -- 32.6 Case study details -- */
.csd-hero { padding: 190px 0 110px; position: relative; overflow: hidden; }
.csd-hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.csd-hero .sec-blob.cdh-1 { width: 620px; height: 620px; top: -220px; left: -160px; background: radial-gradient(circle at 40% 40%, rgba(111,59,255,.3), rgba(111,59,255,0) 70%); }
.csd-hero .sec-blob.cdh-2 { width: 540px; height: 540px; bottom: -180px; right: -140px; background: radial-gradient(circle at 60% 60%, rgba(59,130,255,.22), rgba(59,130,255,0) 70%); }
.csd-dots { top: auto; bottom: 50px; left: 28px; }
.csd-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; position: relative; z-index: 1; }
.csd-hero-copy h1 { font-size: clamp(2.2rem, 4.2vw, 3.2rem); line-height: 1.12; margin: 26px 0 20px; text-wrap: balance; }
.csd-hero-copy > p { max-width: 580px; font-size: 1.05rem; }
.csd-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 32px; }
.csd-tags span { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--dark); background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 8px 15px; box-shadow: 0 4px 14px var(--shadow); }
.csd-tags svg { width: 15px; height: 15px; color: var(--primary); }
.csd-hero-media { position: relative; }
.csdm-glow { position: absolute; inset: 6% 0 0; background: radial-gradient(ellipse at 50% 45%, rgba(111,59,255,.2), rgba(59,130,255,.1) 45%, transparent 72%); filter: blur(26px); z-index: 0; }
.csdm-frame { position: relative; z-index: 1; border-radius: 24px; overflow: hidden; box-shadow: 0 36px 80px var(--shadow); border: 1px solid rgba(232,236,245,.9); }
.csdm-frame img { width: 100%; aspect-ratio: 16/10.5; object-fit: cover; display: block; transition: transform 1.2s var(--ease); }
.csdm-frame:hover img { transform: scale(1.05); }
.csdm-float { position: absolute; z-index: 2; display: flex; align-items: center; gap: 11px; padding: 12px 15px; border-radius: 16px; background: rgba(255,255,255,.94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid var(--border); box-shadow: 0 18px 44px var(--shadow); animation: chipFloat 6s ease-in-out infinite; }
.csdm-float strong { display: block; font-family: var(--font-head); font-size: 15px; color: var(--dark); line-height: 1.2; }
.csdm-float small { font-size: 11px; color: var(--text-light); }
.csdm-float .ch-ico { width: 40px; height: 40px; border-radius: 12px; }
.csdm-float.f-1 { left: -22px; top: 8%; animation-delay: 0s; }
.csdm-float.f-2 { right: -20px; bottom: 10%; animation-delay: 1.1s; }

/* challenge / solution */
.csd-cs-section { position: relative; }
.csd-cs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.csd-block { position: relative; padding: 40px 36px; border-radius: 24px; background: #fff; border: 1px solid var(--border); box-shadow: 0 10px 34px var(--shadow); overflow: hidden; }
.csd-block.grad { background: var(--gradient); border-color: transparent; color: #fff; box-shadow: 0 24px 60px var(--glow); }
.csd-block-ico { width: 56px; height: 56px; border-radius: 16px; background: var(--gradient); color: #fff; display: grid; place-items: center; box-shadow: 0 12px 28px var(--glow); margin-bottom: 20px; animation: chipFloat 5.5s ease-in-out infinite; }
.csd-block.grad .csd-block-ico { background: rgba(255,255,255,.18); box-shadow: 0 12px 28px rgba(19,26,52,.25); }
.csd-block-ico svg { width: 26px; height: 26px; }
.csd-label { display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--primary); margin-bottom: 10px; }
.csd-block.grad .csd-label { color: rgba(255,255,255,.85); }
.csd-block h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 14px; }
.csd-block p { font-size: 15px; line-height: 1.75; }

/* tech + results */
.csd-tr-section { position: relative; }
.csd-tr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.csd-tech-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.csd-tech-chip { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--border); box-shadow: 0 4px 14px var(--shadow); font-family: var(--font-head); font-weight: 600; font-size: 13px; color: var(--dark); transition: all .35s var(--ease); }
.csd-tech-chip svg { width: 15px; height: 15px; color: var(--primary); }
.csd-tech-chip:hover { transform: translateY(-3px); border-color: rgba(111,59,255,.35); box-shadow: 0 10px 26px var(--glow); color: var(--primary); }
.csd-results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 26px; }
.csd-result { padding: 22px 18px; border-radius: 18px; background: #fff; border: 1px solid var(--border); box-shadow: 0 4px 16px var(--shadow); transition: all .4s var(--ease); }
.csd-result:hover { transform: translateY(-6px); box-shadow: 0 18px 40px var(--shadow), 0 10px 30px var(--glow); border-color: rgba(111,59,255,.22); }
.csdr-ico { width: 38px; height: 38px; border-radius: 11px; background: var(--gradient-soft); color: var(--primary); display: grid; place-items: center; margin-bottom: 12px; }
.csdr-ico svg { width: 18px; height: 18px; }
.csdr-num { font-family: var(--font-head); font-size: clamp(1.4rem, 2.4vw, 1.8rem); font-weight: 800; color: var(--dark); line-height: 1; }
.csd-result small { display: block; margin-top: 6px; font-size: 12.5px; color: var(--text-light); }

/* screenshots */
.csd-shots-section { position: relative; }
.csd-shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.csd-shot { position: relative; display: block; width: 100%; padding: 0; border: 0; cursor: pointer; border-radius: 18px; overflow: hidden; background: #fff; box-shadow: 0 6px 22px var(--shadow); transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.csd-shot:hover { transform: translateY(-6px); box-shadow: 0 24px 54px var(--shadow), 0 12px 36px var(--glow); }
.csd-shot img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; transition: transform .9s var(--ease); }
.csd-shot:hover img { transform: scale(1.07); }
.csd-shot-zoom { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(.6); width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,.95); color: var(--primary); display: grid; place-items: center; box-shadow: 0 12px 30px rgba(0,0,0,.25); opacity: 0; transition: all .4s var(--ease); }
.csd-shot:hover .csd-shot-zoom { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.csd-shot-zoom svg { width: 21px; height: 21px; }

/* quote */
.csd-quote-section { position: relative; }
.csd-quote { position: relative; max-width: 820px; margin: 0 auto; padding: 48px 44px; border-radius: 26px; background: #fff; border: 1px solid var(--border); box-shadow: 0 24px 60px var(--shadow); text-align: center; }
.csd-quote-ico { width: 62px; height: 62px; margin: 0 auto 20px; border-radius: 50%; background: var(--gradient); color: #fff; display: grid; place-items: center; box-shadow: 0 14px 32px var(--glow); animation: chipFloat 5.5s ease-in-out infinite; }
.csd-quote-ico svg { width: 26px; height: 26px; }
.csd-quote blockquote { font-size: clamp(1.15rem, 2vw, 1.45rem); line-height: 1.7; color: var(--dark); margin-bottom: 24px; }
.csd-quote .t-who { justify-content: center; }

/* -- 32.7 Case studies responsive -- */
@media (max-width: 1280px) {
  .cst-hero-grid { gap: 48px; }
  .cst-grid { grid-template-columns: repeat(2, 1fr); }
  .cst-metrics { grid-template-columns: repeat(2, 1fr); }
  .cst-process-section .process-steps { grid-template-columns: repeat(4, 1fr); }
  .csd-hero-grid { gap: 48px; }
  .csd-tr-grid { gap: 44px; }
  .csd-shots { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .cst-hero { padding: 160px 0 100px; min-height: 0; }
  .cst-hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .cst-hero-copy { text-align: center; }
  .cst-hero-copy > p { margin: 0 auto; }
  .cst-points { margin: 30px auto 36px; text-align: left; }
  .hero-actions { justify-content: center; }
  .cst-hero-visual { max-width: 560px; margin: 0 auto; }
  .cst-stats-section { margin-top: -40px; }
  .csd-hero { padding: 160px 0 100px; }
  .csd-hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .csd-hero-copy { text-align: center; }
  .csd-hero-copy > p { margin: 0 auto; }
  .csd-tags { justify-content: center; }
  .hero-actions { justify-content: center; }
  .csd-hero-media { max-width: 560px; margin: 0 auto; }
  .csd-cs-grid { grid-template-columns: 1fr; }
  .csd-tr-grid { grid-template-columns: 1fr; gap: 56px; }
  .cst-metrics { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .cst-hero { padding: 140px 0 90px; }
  .cst-hero-visual { min-height: 460px; transform: scale(.94); }
  .csth-orbit { width: 360px; height: 360px; }
  .csth-chip { padding: 9px 12px; }
  .csth-chip strong { font-size: 12px; }
  .csth-chip small { font-size: 10px; }
  .cst-points { grid-template-columns: 1fr; }
  .cst-grid { grid-template-columns: 1fr; }
  .cst-results { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .cst-metrics { grid-template-columns: 1fr; }
  .cst-process-section .process-steps { grid-template-columns: repeat(2, 1fr); }
  .csd-hero { padding: 140px 0 90px; }
  .csd-hero-media { max-width: 420px; }
  .csdm-float { padding: 10px 12px; }
  .csdm-float .ch-ico { width: 34px; height: 34px; }
  .csdm-float.f-1 { left: -4px; } .csdm-float.f-2 { right: -4px; }
  .csd-block { padding: 32px 24px; }
  .csd-results-grid { grid-template-columns: 1fr; }
  .csd-shots { grid-template-columns: 1fr; }
  .csd-quote { padding: 36px 22px; }
}

/* ---------- 29. Reduced motion ---------- */
/* ============================================================
   SOLUTIONS PAGE — premium listing + detail
   ============================================================ */
.sln-hero { padding: 190px 0 120px; position: relative; overflow: hidden; min-height: 650px; display: flex; align-items: center; }
.sln-hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.sln-hero .sec-blob.sh-1 { width: 620px; height: 620px; top: -220px; left: -160px; background: radial-gradient(circle at 40% 40%, rgba(111,59,255,.3), rgba(111,59,255,0) 70%); }
.sln-hero .sec-blob.sh-2 { width: 540px; height: 540px; bottom: -180px; right: -140px; background: radial-gradient(circle at 60% 60%, rgba(59,130,255,.22), rgba(59,130,255,0) 70%); }
.sln-dots { top: auto; bottom: 60px; left: 28px; }
.sln-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; position: relative; z-index: 1; }
.sln-hero-copy h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); line-height: 1.16; margin: 22px 0 18px; text-wrap: balance; }
.sln-hero-copy > p { max-width: 620px; color: var(--text); font-size: 16.5px; line-height: 1.75; }
.sln-points { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 18px; margin: 30px 0 36px; max-width: 600px; }
.sln-points li { display: flex; align-items: center; gap: 9px; font-weight: 600; color: var(--dark); font-size: 13.5px; }
.sp-ico { width: 30px; height: 30px; flex: none; border-radius: 9px; background: var(--gradient-soft); color: var(--primary); display: grid; place-items: center; }
.sp-ico svg { width: 15px; height: 15px; }

.sln-hero-visual { position: relative; }
.slnh-glow { position: absolute; inset: 8% 0 0; background: radial-gradient(ellipse at 50% 42%, rgba(111,59,255,.2), rgba(59,130,255,.1) 45%, transparent 72%); filter: blur(26px); z-index: 0; }
.slnh-orbit { position: absolute; top: 50%; left: 50%; width: 480px; height: 480px; transform: translate(-50%, -50%); border: 1.5px dashed rgba(111,59,255,.28); border-radius: 50%; animation: spin 46s linear infinite; z-index: 0; }
.slnh-monitor { position: relative; z-index: 1; width: 400px; margin: 40px auto 0; padding: 10px 10px 0; border-radius: 20px; background: #fff; border: 1px solid var(--border); box-shadow: 0 36px 80px var(--shadow), 0 0 0 1px rgba(111,59,255,.06); animation: chipFloat 7s ease-in-out infinite; }
.slnh-chrome { display: flex; align-items: center; gap: 6px; padding: 6px 8px 10px; }
.slnh-chrome span { width: 9px; height: 9px; border-radius: 50%; background: #E8ECF5; }
.slnh-chrome span:nth-child(1) { background: #FF5F57; }
.slnh-chrome span:nth-child(2) { background: #FEBC2E; }
.slnh-chrome span:nth-child(3) { background: #28C840; }
.slnh-chrome small { margin-left: auto; font-size: 11px; color: var(--text-light); letter-spacing: .02em; }
.slnh-screen { background: linear-gradient(180deg, #FBFBFE, #F4F6FD); border: 1px solid var(--border); border-radius: 14px; padding: 18px; }
.slnh-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.slnh-kpis > div { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 12px; box-shadow: 0 4px 12px rgba(20,20,43,.05); }
.slnh-kpis small { display: block; font-size: 10.5px; color: var(--text-light); text-transform: uppercase; letter-spacing: .06em; }
.slnh-kpis strong { display: block; font-family: var(--font-head); font-size: 16px; color: var(--dark); margin: 3px 0 1px; }
.slnh-kpis em { font-style: normal; font-size: 11px; font-weight: 600; color: var(--primary); }
.slnh-bars { display: flex; align-items: flex-end; gap: 7px; height: 128px; margin-top: 16px; }
.slnh-bars i { flex: 1; border-radius: 4px 4px 1px 1px; background: linear-gradient(180deg, var(--primary), var(--secondary)); opacity: .9; animation: svhGrow 1.2s var(--ease) both; }
.slnh-bars i:nth-child(odd) { background: linear-gradient(180deg, #A78BFA, #6F3BFF); }
.slnh-bars i:nth-child(1) { height: 38%; animation-delay: .05s; } .slnh-bars i:nth-child(2) { height: 52%; animation-delay: .12s; } .slnh-bars i:nth-child(3) { height: 44%; animation-delay: .2s; } .slnh-bars i:nth-child(4) { height: 66%; animation-delay: .28s; } .slnh-bars i:nth-child(5) { height: 58%; animation-delay: .36s; } .slnh-bars i:nth-child(6) { height: 78%; animation-delay: .44s; } .slnh-bars i:nth-child(7) { height: 62%; animation-delay: .52s; } .slnh-bars i:nth-child(8) { height: 88%; animation-delay: .6s; } .slnh-bars i:nth-child(9) { height: 70%; animation-delay: .68s; } .slnh-bars i:nth-child(10) { height: 94%; animation-delay: .76s; } .slnh-bars i:nth-child(11) { height: 82%; animation-delay: .84s; } .slnh-bars i:nth-child(12) { height: 100%; animation-delay: .92s; }
.slnh-base { position: relative; z-index: 1; width: 190px; height: 24px; margin: -2px auto 0; background: linear-gradient(180deg, #fff, #EEF1FA); border: 1px solid var(--border); border-top: none; border-radius: 0 0 16px 16px; box-shadow: 0 16px 36px rgba(20,20,43,.12); }
.slnh-chip { position: absolute; z-index: 2; display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 15px; background: rgba(255,255,255,.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid var(--border); box-shadow: 0 18px 44px var(--shadow); animation: chipFloat 6s ease-in-out infinite; }
.slnh-chip strong { display: block; font-family: var(--font-head); font-size: 13px; color: var(--dark); line-height: 1.2; }
.slnh-chip small { font-size: 11px; color: var(--text-light); }
.slnh-chip .sh-ico { width: 38px; height: 38px; border-radius: 12px; background: var(--gradient); color: #fff; display: grid; place-items: center; box-shadow: 0 8px 20px var(--glow); }
.slnh-chip .sh-ico svg { width: 18px; height: 18px; }
.slnh-chip.k-1 { left: -4%; top: 5%; animation-delay: 0s; }
.slnh-chip.k-2 { right: -6%; top: 18%; animation-delay: .9s; }
.slnh-chip.k-3 { left: -8%; top: 40%; animation-delay: .4s; }
.slnh-chip.k-4 { right: -4%; top: 56%; animation-delay: 1.4s; }
.slnh-chip.k-5 { left: -2%; bottom: 4%; animation-delay: .7s; }
.slnh-chip.k-6 { right: -8%; bottom: 14%; animation-delay: 1.1s; }

.sln-stats-section { position: relative; z-index: 5; margin-top: -64px; }

.sln-grid-section { position: relative; overflow: hidden; }
.sln-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.sln-bg .sec-blob.sg-1 { width: 560px; height: 560px; top: -180px; left: -140px; background: radial-gradient(circle at 40% 40%, rgba(111,59,255,.24), rgba(111,59,255,0) 70%); }
.sln-bg .sec-blob.sg-2 { width: 480px; height: 480px; bottom: -160px; right: -120px; background: radial-gradient(circle at 60% 60%, rgba(59,130,255,.18), rgba(59,130,255,0) 70%); }
.sln-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.sln-card { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border); border-radius: 24px; padding: 26px 24px; box-shadow: 0 4px 20px var(--shadow); text-decoration: none; color: inherit; transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease); overflow: hidden; }
.sln-card::before { content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(135deg, rgba(111,59,255,.55), rgba(59,130,255,.55)); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .45s var(--ease); pointer-events: none; }
.sln-card:hover { transform: translateY(-10px); box-shadow: 0 28px 60px var(--shadow), 0 14px 44px var(--glow); }
.sln-card:hover::before { opacity: 1; }
.sln-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.sln-ico { width: 54px; height: 54px; flex: none; border-radius: 16px; background: var(--gradient); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 24px var(--glow); transition: transform .45s var(--ease); }
.sln-ico svg { width: 25px; height: 25px; }
.sln-card:hover .sln-ico { transform: rotate(-8deg) scale(1.08); }
.sln-time { display: inline-flex; align-items: center; gap: 5px; font-size: 11.5px; font-weight: 600; color: var(--primary); background: var(--gradient-soft); border-radius: 99px; padding: 6px 11px; white-space: nowrap; }
.sln-card h3 { font-size: 17.5px; margin-bottom: 9px; color: var(--dark); line-height: 1.3; }
.sln-card > p { font-size: 13.5px; color: var(--text); line-height: 1.65; margin-bottom: 16px; flex: 1; }
.sln-tech { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.sln-tech span { font-size: 11px; font-weight: 600; color: var(--text); background: var(--bg-alt); border: 1px solid var(--border); border-radius: 8px; padding: 4px 9px; }
.sln-inds { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.sln-inds span { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; color: var(--text-light); }
.sln-inds svg { color: var(--primary); }
.sln-link { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--primary); }
.sln-link svg { transition: transform .35s var(--ease); }
.sln-card:hover .sln-link svg { transform: translateX(6px); }

.sln-ind-section { position: relative; }

.sln-why-section { position: relative; overflow: hidden; }
.sln-why-shell { position: relative; background: linear-gradient(180deg, #FBFBFE, #F7F8FD); border: 1px solid var(--border); border-radius: 32px; padding: 64px 48px; box-shadow: 0 30px 70px var(--shadow); }
.sln-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.sln-why-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 26px 22px; box-shadow: 0 4px 18px var(--shadow); transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease); }
.sln-why-card:hover { transform: translateY(-8px); box-shadow: 0 24px 54px var(--shadow), 0 12px 36px var(--glow); border-color: rgba(111,59,255,.22); }
.slw-ico { width: 50px; height: 50px; border-radius: 15px; background: var(--gradient); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 24px var(--glow); margin-bottom: 16px; transition: transform .45s var(--ease); }
.slw-ico svg { width: 23px; height: 23px; }
.sln-why-card:hover .slw-ico { transform: rotate(-8deg) scale(1.08); }
.sln-why-card h3 { font-size: 16.5px; margin-bottom: 8px; }
.sln-why-card p { font-size: 13px; color: var(--text); line-height: 1.6; }

.sln-tech-section { position: relative; }
.sln-process-section { position: relative; }
.sln-faq-section { position: relative; }
.sln-cta-section { position: relative; }
.sln-trust-section { position: relative; }
.sln-trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; background: #fff; border: 1px solid var(--border); border-radius: 24px; padding: 34px 30px; box-shadow: 0 18px 50px var(--shadow); }
.sln-trust-item { display: flex; align-items: center; gap: 14px; padding: 6px 10px; }
.slt-ico { width: 46px; height: 46px; flex: none; border-radius: 14px; background: var(--gradient); color: #fff; display: grid; place-items: center; box-shadow: 0 8px 20px var(--glow); transition: transform .45s var(--ease); }
.slt-ico svg { width: 21px; height: 21px; }
.sln-trust-item:hover .slt-ico { transform: rotate(-8deg) scale(1.1); }
.sln-trust-item strong { display: block; font-size: 15px; color: var(--dark); line-height: 1.25; }
.sln-trust-item small { display: block; font-size: 12.5px; color: var(--text-light); margin-top: 3px; line-height: 1.45; }
.sld-process-section { position: relative; }
.sld-cases-section { position: relative; }

/* -- Solutions detail page (.sld-*) -- */
.sld-hero-media { position: relative; }
.sld-img-frame { position: relative; border-radius: 30px; overflow: hidden; box-shadow: 0 30px 70px var(--shadow); transform: translateZ(0); }
.sld-img-frame::before { content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(135deg, rgba(111,59,255,.5), rgba(59,130,255,.5)); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; z-index: 1; }
.sld-img-frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform .9s var(--ease); }
.sld-hero-media:hover .sld-img-frame img { transform: scale(1.05); }
.sld-img-frame::after { content: ''; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255,255,255,.4); pointer-events: none; }
.sld-chip { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 11px 15px; border-radius: 15px; background: rgba(255,255,255,.94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid var(--border); box-shadow: 0 18px 44px var(--shadow); animation: chipFloat 6s ease-in-out infinite; }
.sld-chip strong { display: block; font-family: var(--font-head); font-size: 13px; color: var(--dark); line-height: 1.2; }
.sld-chip small { font-size: 11px; color: var(--text-light); }
.slc-ico { width: 38px; height: 38px; border-radius: 12px; background: var(--gradient); color: #fff; display: grid; place-items: center; box-shadow: 0 8px 20px var(--glow); }
.slc-ico svg { width: 18px; height: 18px; }
.sld-chip.c-1 { left: -6%; top: 8%; animation-delay: 0s; }
.sld-chip.c-2 { right: -6%; bottom: 10%; animation-delay: 1s; }

.sld-chal-section { position: relative; }
.sld-chal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sld-chal { display: flex; align-items: flex-start; gap: 13px; background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 20px; box-shadow: 0 4px 16px var(--shadow); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.sld-chal:hover { transform: translateY(-5px); box-shadow: 0 18px 40px var(--shadow); }
.slch-ico { width: 40px; height: 40px; flex: none; border-radius: 12px; background: var(--gradient-soft); color: var(--primary); display: grid; place-items: center; }
.slch-ico svg { width: 19px; height: 19px; }
.sld-chal p { font-size: 14px; font-weight: 600; color: var(--dark); line-height: 1.5; margin: 2px 0 0; }

.sld-feat-section { position: relative; }
.sld-feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.sld-feat { display: flex; align-items: flex-start; gap: 14px; background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 22px; box-shadow: 0 4px 16px var(--shadow); transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease); }
.sld-feat:hover { transform: translateY(-5px); box-shadow: 0 18px 40px var(--shadow); border-color: rgba(111,59,255,.2); }
.slf-ico { width: 44px; height: 44px; flex: none; border-radius: 13px; background: var(--gradient); color: #fff; display: grid; place-items: center; box-shadow: 0 8px 20px var(--glow); }
.slf-ico svg { width: 21px; height: 21px; }
.sld-feat strong { display: block; font-size: 15.5px; color: var(--dark); margin-bottom: 4px; }
.sld-feat p { font-size: 13.5px; color: var(--text); line-height: 1.6; margin: 0; }

.sld-ben-section { position: relative; }
.sld-ben-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sld-ben { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 26px 22px; box-shadow: 0 4px 18px var(--shadow); transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease); }
.sld-ben:hover { transform: translateY(-8px); box-shadow: 0 24px 54px var(--shadow), 0 12px 36px var(--glow); border-color: rgba(111,59,255,.22); }
.slb-ico { width: 50px; height: 50px; border-radius: 15px; background: var(--gradient); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 24px var(--glow); margin-bottom: 15px; transition: transform .45s var(--ease); }
.slb-ico svg { width: 23px; height: 23px; }
.sld-ben:hover .slb-ico { transform: rotate(-8deg) scale(1.08); }
.sld-ben h3 { font-size: 16.5px; margin-bottom: 8px; }
.sld-ben p { font-size: 13px; color: var(--text); line-height: 1.6; margin: 0; }

.sld-tech-section { position: relative; }
.sld-tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.sld-tech { display: flex; align-items: center; gap: 11px; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 14px 16px; box-shadow: 0 3px 12px var(--shadow); font-weight: 600; font-size: 14px; color: var(--dark); transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease); }
.sld-tech:hover { transform: translateY(-4px); border-color: rgba(111,59,255,.25); box-shadow: 0 14px 32px var(--shadow); }
.sld-tech svg { width: 19px; height: 19px; color: var(--primary); }
.sld-inds-row { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 42px; padding-top: 30px; border-top: 1px solid var(--border); }
.sld-inds-label { font-family: var(--font-head); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); }
.sld-inds { display: flex; flex-wrap: wrap; gap: 10px; }
.sld-ind { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--dark); background: #fff; border: 1px solid var(--border); border-radius: 99px; padding: 8px 15px; }
.sld-ind svg { color: var(--primary); }

.sld-faq-section { position: relative; }
.sld-related-section { position: relative; }
.sld-cta-section { position: relative; }

/* -- Solutions responsive -- */
@media (max-width: 1200px) {
  .sln-grid { grid-template-columns: repeat(3, 1fr); }
  .sln-why-grid { grid-template-columns: repeat(2, 1fr); }
  .sld-ben-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .sln-hero { padding: 160px 0 100px; min-height: 0; }
  .sln-hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .sln-points { grid-template-columns: repeat(2, 1fr); }
  .sln-grid { grid-template-columns: repeat(2, 1fr); }
  .sln-why-shell { padding: 48px 28px; }
  .slnh-monitor { width: 360px; }
  .sld-feat-grid { grid-template-columns: 1fr; }
  .sln-trust { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .sln-hero { padding: 140px 0 90px; }
  .sln-points { grid-template-columns: 1fr; }
  .sln-grid { grid-template-columns: 1fr; }
  .sln-why-grid { grid-template-columns: 1fr; }
  .slnh-monitor { width: 300px; }
  .slnh-chip { padding: 9px 11px; }
  .slnh-chip .sh-ico { width: 32px; height: 32px; }
  .slnh-chip .sh-ico svg { width: 15px; height: 15px; }
  .slnh-chip.k-1 { left: -2%; top: 4%; }
  .slnh-chip.k-2 { right: -2%; top: 16%; }
  .slnh-chip.k-3 { left: -2%; top: 40%; }
  .slnh-chip.k-4 { right: -2%; top: 56%; }
  .slnh-chip.k-5 { left: 0; bottom: 4%; }
  .slnh-chip.k-6 { right: -2%; bottom: 14%; }
  .sld-chal-grid { grid-template-columns: 1fr; }
  .sld-ben-grid { grid-template-columns: 1fr; }
  .sld-tech-grid { grid-template-columns: 1fr; }
  .sld-chip.c-1 { left: -2%; top: 6%; }
  .sld-chip.c-2 { right: -2%; bottom: 8%; }
  .sld-inds-row { gap: 10px; }
  .sln-trust { grid-template-columns: 1fr; padding: 28px 22px; }
  .sln-trust-item { padding: 4px 0; }
}

/* ============================================================
   PORTFOLIO PAGE (.pfw-*)
============================================================ */
.pfw-hero { padding: 190px 0 120px; position: relative; overflow: hidden; min-height: 650px; display: flex; align-items: center; }
.pfw-hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.pfw-hero .sec-blob.ph-1 { width: 620px; height: 620px; top: -220px; left: -160px; background: radial-gradient(circle at 40% 40%, rgba(111,59,255,.3), rgba(111,59,255,0) 70%); }
.pfw-hero .sec-blob.ph-2 { width: 540px; height: 540px; bottom: -180px; right: -140px; background: radial-gradient(circle at 60% 60%, rgba(59,130,255,.22), rgba(59,130,255,0) 70%); }
.pfw-dots { top: auto; bottom: 60px; left: 28px; }
.pfw-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; position: relative; z-index: 1; }
.pfw-hero-copy h1 { font-size: clamp(2.4rem, 4.6vw, 3.5rem); line-height: 1.1; margin: 26px 0 22px; text-wrap: balance; }
.pfw-hero-copy > p { max-width: 580px; font-size: 1.05rem; }
.pfw-points { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; margin: 30px 0 36px; max-width: 560px; }
.pfw-points li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--dark); font-size: 14.5px; }
.pfp-ico { width: 28px; height: 28px; flex: none; border-radius: 9px; background: var(--gradient-soft); color: var(--primary); display: grid; place-items: center; }
.pfp-ico svg { width: 15px; height: 15px; }

/* hero visual — monitor composition */
.pfw-hero-visual { position: relative; min-height: 560px; }
.pfw-glow { position: absolute; inset: 8% 0 0; background: radial-gradient(ellipse at 50% 42%, rgba(111,59,255,.2), rgba(59,130,255,.1) 45%, transparent 72%); filter: blur(26px); z-index: 0; }
.pfw-orbit { position: absolute; top: 50%; left: 50%; width: 480px; height: 480px; transform: translate(-50%, -50%); border: 1.5px dashed rgba(111,59,255,.28); border-radius: 50%; animation: spin 46s linear infinite; z-index: 0; }
.pfw-monitor { position: relative; z-index: 1; width: 400px; margin: 40px auto 0; padding: 10px 10px 0; border-radius: 20px; background: #fff; border: 1px solid var(--border); box-shadow: 0 36px 80px var(--shadow), 0 0 0 1px rgba(111,59,255,.06); animation: chipFloat 7s ease-in-out infinite; }
.pfw-chrome { display: flex; align-items: center; gap: 6px; padding: 6px 8px 10px; }
.pfw-chrome span { width: 9px; height: 9px; border-radius: 50%; background: #E8ECF5; }
.pfw-chrome span:nth-child(1) { background: #FF5F57; }
.pfw-chrome span:nth-child(2) { background: #FEBC2E; }
.pfw-chrome span:nth-child(3) { background: #28C840; }
.pfw-chrome small { margin-left: auto; font-size: 11px; color: var(--text-light); letter-spacing: .02em; }
.pfw-screen { background: linear-gradient(180deg, #FBFBFE, #F4F6FD); border: 1px solid var(--border); border-radius: 14px; padding: 18px; }
.pfw-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.pfw-kpis > div { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 12px; box-shadow: 0 4px 12px rgba(20,20,43,.05); }
.pfw-kpis small { display: block; font-size: 10px; color: var(--text-light); margin-bottom: 4px; }
.pfw-kpis strong { display: block; font-family: var(--font-head); font-size: 17px; color: var(--dark); }
.pfw-kpis em { display: block; font-style: normal; font-size: 10.5px; font-weight: 700; color: #16A34A; margin-top: 2px; }
.pfw-bars { display: flex; align-items: flex-end; gap: 7px; height: 128px; margin-top: 16px; }
.pfw-bars i { flex: 1; border-radius: 4px 4px 1px 1px; background: linear-gradient(180deg, var(--primary), var(--secondary)); opacity: .9; animation: svhGrow 1.2s var(--ease) both; }
.pfw-bars i:nth-child(odd) { background: linear-gradient(180deg, #A78BFA, #6F3BFF); }
.pfw-bars i:nth-child(1) { height: 38%; animation-delay: .05s; } .pfw-bars i:nth-child(2) { height: 52%; animation-delay: .12s; } .pfw-bars i:nth-child(3) { height: 44%; animation-delay: .2s; } .pfw-bars i:nth-child(4) { height: 66%; animation-delay: .28s; } .pfw-bars i:nth-child(5) { height: 58%; animation-delay: .36s; } .pfw-bars i:nth-child(6) { height: 78%; animation-delay: .44s; } .pfw-bars i:nth-child(7) { height: 62%; animation-delay: .52s; } .pfw-bars i:nth-child(8) { height: 88%; animation-delay: .6s; } .pfw-bars i:nth-child(9) { height: 70%; animation-delay: .68s; } .pfw-bars i:nth-child(10) { height: 94%; animation-delay: .76s; } .pfw-bars i:nth-child(11) { height: 82%; animation-delay: .84s; } .pfw-bars i:nth-child(12) { height: 100%; animation-delay: .92s; }
.pfw-base { position: relative; z-index: 1; width: 190px; height: 24px; margin: -2px auto 0; background: linear-gradient(180deg, #fff, #EEF1FA); border: 1px solid var(--border); border-top: none; border-radius: 0 0 16px 16px; box-shadow: 0 16px 36px rgba(20,20,43,.12); }
.pfw-chip { position: absolute; z-index: 2; display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 15px; background: rgba(255,255,255,.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid var(--border); box-shadow: 0 18px 44px var(--shadow); animation: chipFloat 6s ease-in-out infinite; }
.pfw-chip strong { display: block; font-family: var(--font-head); font-size: 13px; color: var(--dark); line-height: 1.2; }
.pfw-chip small { font-size: 11px; color: var(--text-light); }
.pfw-chip .pfw-ico { width: 38px; height: 38px; border-radius: 12px; background: var(--gradient); color: #fff; display: grid; place-items: center; box-shadow: 0 8px 20px var(--glow); }
.pfw-chip .pfw-ico svg { width: 18px; height: 18px; }
.pfw-chip.pk-1 { left: -4%; top: 5%; animation-delay: 0s; }
.pfw-chip.pk-2 { right: -6%; top: 18%; animation-delay: .9s; }
.pfw-chip.pk-3 { left: -8%; top: 40%; animation-delay: .4s; }
.pfw-chip.pk-4 { right: -4%; top: 56%; animation-delay: 1.4s; }

/* stats (reuses .sv-stats) */
.pfw-stats-section { position: relative; z-index: 5; margin-top: -64px; }

/* grid + filter */
.pfw-grid-section { position: relative; overflow: hidden; }
.pfw-grid-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.pfw-grid-bg .sec-blob.pg-1 { width: 560px; height: 560px; top: -180px; left: -140px; background: radial-gradient(circle at 40% 40%, rgba(111,59,255,.24), rgba(111,59,255,0) 70%); }
.pfw-grid-bg .sec-blob.pg-2 { width: 480px; height: 480px; bottom: -160px; right: -130px; background: radial-gradient(circle at 60% 60%, rgba(59,130,255,.18), rgba(59,130,255,0) 70%); }
.pfw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 1; }
.pfw-card { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border); border-radius: 22px; overflow: hidden; box-shadow: 0 4px 20px var(--shadow); text-decoration: none; color: inherit; transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease); }
.pfw-card:hover { transform: translateY(-10px); box-shadow: 0 28px 60px var(--shadow), 0 0 0 1px rgba(111,59,255,.1), 0 14px 44px var(--glow); border-color: rgba(111,59,255,.28); }
.pfw-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.pfw-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.pfw-card:hover .pfw-img img { transform: scale(1.09); }
.pfw-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(19,26,52,.4)); }
.pfw-badge { position: absolute; top: 14px; left: 14px; z-index: 2; font-family: var(--font-head); font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 6px 13px; border-radius: 99px; background: rgba(255,255,255,.92); color: var(--dark); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.pfw-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.pfw-body h3 { font-size: 19px; margin-bottom: 8px; }
.pfw-body > p { font-size: 13.5px; color: var(--text); margin-bottom: 16px; flex: 1; }
.pfw-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.pfw-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 600; color: var(--dark); background: var(--bg-alt); border: 1px solid var(--border); border-radius: 99px; padding: 5px 11px; }
.pfw-tag svg { color: var(--primary); }
.pfw-tech { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }
.pfw-tech span { font-size: 11px; font-weight: 600; color: var(--primary); background: var(--gradient-soft); border-radius: 8px; padding: 4px 9px; }
.pfw-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 18px; }
.pfw-results > div { padding: 12px 8px; border-radius: 12px; background: var(--bg-alt); border: 1px solid var(--border); text-align: center; transition: all .35s var(--ease); }
.pfw-card:hover .pfw-results > div { background: #fff; border-color: rgba(111,59,255,.25); box-shadow: 0 8px 20px var(--shadow); }
.pfw-results strong { display: block; font-family: var(--font-head); font-size: 16px; font-weight: 800; color: var(--primary); }
.pfw-results small { font-size: 10px; color: var(--text-light); line-height: 1.3; display: block; margin-top: 2px; }
.pfw-link { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--primary); }
.pfw-link svg { width: 15px; height: 15px; transition: transform .35s var(--ease); }
.pfw-card:hover .pfw-link svg { transform: translateX(6px); }

/* showcase carousel */
.pfw-show-section { position: relative; overflow: hidden; }
.pfw-show-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.pfw-show-bg .sec-blob.ps-1 { width: 560px; height: 560px; top: -170px; right: -130px; background: radial-gradient(circle at 40% 40%, rgba(111,59,255,.22), rgba(111,59,255,0) 70%); }
.pfw-show-bg .sec-blob.ps-2 { width: 480px; height: 480px; bottom: -150px; left: -120px; background: radial-gradient(circle at 60% 60%, rgba(59,130,255,.18), rgba(59,130,255,0) 70%); }
.pfw-showcase { position: relative; z-index: 1; }
.pfw-show-viewport { overflow: hidden; padding: 10px 0 34px; cursor: grab; touch-action: pan-y; user-select: none; -webkit-user-select: none; }
.pfw-show-viewport.dragging { cursor: grabbing; }
.pfw-show-track { display: flex; will-change: transform; }
.pfw-show-slide { flex: 0 0 33.3333%; padding: 0 12px; }
.pfw-show-card { position: relative; display: block; background: #fff; border: 1px solid var(--border); border-radius: 22px; overflow: hidden; box-shadow: 0 4px 20px var(--shadow); text-decoration: none; color: inherit; transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease); }
.pfw-show-card:hover { transform: translateY(-10px); box-shadow: 0 28px 60px var(--shadow), 0 0 0 1px rgba(111,59,255,.1), 0 14px 44px var(--glow); border-color: rgba(111,59,255,.28); }
.pfws-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.pfws-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.pfw-show-card:hover .pfws-img img { transform: scale(1.08); }
.pfws-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(19,26,52,.4)); }
.pfws-cat { position: absolute; top: 14px; left: 14px; z-index: 2; font-family: var(--font-head); font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: 99px; background: rgba(255,255,255,.92); color: var(--dark); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.pfws-body { padding: 22px 22px 24px; }
.pfws-body h3 { font-size: 18px; margin-bottom: 4px; }
.pfws-ind { font-size: 12px; font-weight: 600; color: var(--text-light); margin-bottom: 14px; }
.pfws-link { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 600; font-size: 13.5px; color: var(--primary); }
.pfws-link svg { width: 15px; height: 15px; transition: transform .35s var(--ease); }
.pfw-show-card:hover .pfws-link svg { transform: translateX(6px); }
.pfw-show-nav { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 34px; }
.pfws-dots { display: flex; gap: 8px; }
.pfws-dot { width: 9px; height: 9px; border-radius: 99px; background: #D4DAEA; transition: all .4s var(--ease); cursor: pointer; border: none; padding: 0; }
.pfws-dot.active { width: 30px; background: var(--gradient); }
.pfws-arrow { width: 52px; height: 52px; border-radius: 50%; background: #fff; border: 1.5px solid var(--border); color: var(--primary); display: grid; place-items: center; cursor: pointer; transition: all .35s var(--ease); box-shadow: 0 8px 22px var(--shadow); }
.pfws-arrow:hover { background: var(--gradient); color: #fff; border-color: transparent; transform: translateY(-3px); box-shadow: 0 14px 32px var(--glow); }
.pfws-arrow svg { width: 20px; height: 20px; }

/* industries + tech + testimonials reuse .svi-grid/.tech-grid/.testi-* */
.pfw-ind-section { position: relative; }
.pfw-tech-section { position: relative; }
.pfw-testi-section { position: relative; }

/* ============================================================
   PORTFOLIO DETAILS (.pfd-*)
============================================================ */
.pfd-hero { padding: 190px 0 110px; position: relative; overflow: hidden; }
.pfd-hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.pfd-hero .sec-blob.pdh-1 { width: 620px; height: 620px; top: -220px; left: -160px; background: radial-gradient(circle at 40% 40%, rgba(111,59,255,.3), rgba(111,59,255,0) 70%); }
.pfd-hero .sec-blob.pdh-2 { width: 540px; height: 540px; bottom: -180px; right: -140px; background: radial-gradient(circle at 60% 60%, rgba(59,130,255,.22), rgba(59,130,255,0) 70%); }
.pfd-dots { top: auto; bottom: 50px; left: 28px; }
.pfd-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; position: relative; z-index: 1; }
.pfd-hero-copy h1 { font-size: clamp(2.2rem, 4.2vw, 3.2rem); line-height: 1.12; margin: 26px 0 20px; text-wrap: balance; }
.pfd-hero-copy > p { max-width: 580px; font-size: 1.05rem; }
.pfd-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 32px; }
.pfd-tags span { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--dark); background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 8px 15px; box-shadow: 0 4px 14px var(--shadow); }
.pfd-tags svg { width: 15px; height: 15px; color: var(--primary); }
.pfd-hero-media { position: relative; }
.pfdm-glow { position: absolute; inset: 6% 0 0; background: radial-gradient(ellipse at 50% 45%, rgba(111,59,255,.2), rgba(59,130,255,.1) 45%, transparent 72%); filter: blur(26px); z-index: 0; }
.pfdm-frame { position: relative; z-index: 1; border-radius: 24px; overflow: hidden; box-shadow: 0 36px 80px var(--shadow); border: 1px solid rgba(232,236,245,.9); }
.pfdm-frame img { width: 100%; aspect-ratio: 16/10.5; object-fit: cover; display: block; transition: transform 1.2s var(--ease); }
.pfdm-frame:hover img { transform: scale(1.05); }
.pfdm-float { position: absolute; z-index: 2; display: flex; align-items: center; gap: 11px; padding: 12px 15px; border-radius: 16px; background: rgba(255,255,255,.94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid var(--border); box-shadow: 0 18px 44px var(--shadow); animation: chipFloat 6s ease-in-out infinite; }
.pfdm-float strong { display: block; font-family: var(--font-head); font-size: 15px; color: var(--dark); line-height: 1.2; }
.pfdm-float small { font-size: 11px; color: var(--text-light); }
.pfdm-float .ch-ico { width: 40px; height: 40px; border-radius: 12px; }
.pfdm-float.f-1 { left: -22px; top: 8%; animation-delay: 0s; }
.pfdm-float.f-2 { right: -20px; bottom: 10%; animation-delay: 1.1s; }

/* challenge / solution */
.pfd-cs-section { position: relative; }
.pfd-cs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pfd-block { position: relative; padding: 40px 36px; border-radius: 24px; background: #fff; border: 1px solid var(--border); box-shadow: 0 10px 34px var(--shadow); overflow: hidden; }
.pfd-block.grad { background: var(--gradient); border-color: transparent; color: #fff; box-shadow: 0 24px 60px var(--glow); }
.pfd-block-ico { width: 56px; height: 56px; border-radius: 16px; background: var(--gradient); color: #fff; display: grid; place-items: center; box-shadow: 0 12px 28px var(--glow); margin-bottom: 20px; animation: chipFloat 5.5s ease-in-out infinite; }
.pfd-block.grad .pfd-block-ico { background: rgba(255,255,255,.18); box-shadow: 0 12px 28px rgba(19,26,52,.25); }
.pfd-block-ico svg { width: 26px; height: 26px; }
.pfd-label { display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--primary); margin-bottom: 10px; }
.pfd-block.grad .pfd-label { color: rgba(255,255,255,.85); }
.pfd-block h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 14px; }
.pfd-block p { font-size: 15px; line-height: 1.75; }

/* tech + results */
.pfd-tr-section { position: relative; }
.pfd-tr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.pfd-tech-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.pfd-tech-chip { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--border); box-shadow: 0 4px 14px var(--shadow); font-family: var(--font-head); font-weight: 600; font-size: 13px; color: var(--dark); transition: all .35s var(--ease); }
.pfd-tech-chip svg { width: 15px; height: 15px; color: var(--primary); }
.pfd-tech-chip:hover { transform: translateY(-3px); border-color: rgba(111,59,255,.35); box-shadow: 0 10px 26px var(--glow); color: var(--primary); }
.pfd-results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 26px; }
.pfd-result { padding: 22px 18px; border-radius: 18px; background: #fff; border: 1px solid var(--border); box-shadow: 0 4px 16px var(--shadow); transition: all .4s var(--ease); }
.pfd-result:hover { transform: translateY(-6px); box-shadow: 0 18px 40px var(--shadow), 0 10px 30px var(--glow); border-color: rgba(111,59,255,.22); }
.pfdr-ico { width: 38px; height: 38px; border-radius: 11px; background: var(--gradient-soft); color: var(--primary); display: grid; place-items: center; margin-bottom: 12px; }
.pfdr-ico svg { width: 18px; height: 18px; }
.pfdr-num { font-family: var(--font-head); font-size: clamp(1.4rem, 2.4vw, 1.8rem); font-weight: 800; color: var(--dark); line-height: 1; }
.pfd-result small { display: block; margin-top: 6px; font-size: 12.5px; color: var(--text-light); }

/* gallery */
.pfd-shots-section { position: relative; }
.pfd-shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pfd-shot { position: relative; display: block; width: 100%; padding: 0; border: 0; cursor: pointer; border-radius: 18px; overflow: hidden; background: #fff; box-shadow: 0 6px 22px var(--shadow); transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.pfd-shot:hover { transform: translateY(-6px); box-shadow: 0 24px 54px var(--shadow), 0 12px 36px var(--glow); }
.pfd-shot img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; transition: transform .9s var(--ease); }
.pfd-shot:hover img { transform: scale(1.07); }
.pfd-shot-zoom { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(.6); width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,.95); color: var(--primary); display: grid; place-items: center; box-shadow: 0 12px 30px rgba(0,0,0,.25); opacity: 0; transition: all .4s var(--ease); }
.pfd-shot:hover .pfd-shot-zoom { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.pfd-shot-zoom svg { width: 21px; height: 21px; }

/* quote */
.pfd-quote-section { position: relative; }
.pfd-quote { position: relative; max-width: 820px; margin: 0 auto; padding: 48px 44px; border-radius: 26px; background: #fff; border: 1px solid var(--border); box-shadow: 0 24px 60px var(--shadow); text-align: center; }
.pfd-quote-ico { width: 62px; height: 62px; margin: 0 auto 20px; border-radius: 50%; background: var(--gradient); color: #fff; display: grid; place-items: center; box-shadow: 0 14px 32px var(--glow); animation: chipFloat 5.5s ease-in-out infinite; }
.pfd-quote-ico svg { width: 26px; height: 26px; }
.pfd-quote blockquote { font-size: clamp(1.15rem, 2vw, 1.45rem); line-height: 1.7; color: var(--dark); margin-bottom: 24px; }
.pfd-quote .t-who { justify-content: center; }

/* ============================================================
   PORTFOLIO RESPONSIVE
============================================================ */
@media (max-width: 1280px) {
  .pfw-hero-grid { gap: 48px; }
  .pfw-grid { grid-template-columns: repeat(2, 1fr); }
  .pfw-show-slide { flex-basis: 50%; }
  .pfd-hero-grid { gap: 48px; }
  .pfd-tr-grid { gap: 44px; }
  .pfd-shots { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .pfw-hero { padding: 160px 0 100px; min-height: 0; }
  .pfw-hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .pfw-hero-copy { text-align: center; }
  .pfw-hero-copy > p { margin: 0 auto; }
  .pfw-points { margin: 30px auto 36px; text-align: left; }
  .pfw-hero-visual { max-width: 560px; margin: 0 auto; }
  .pfw-stats-section { margin-top: -40px; }
  .pfd-hero { padding: 160px 0 100px; }
  .pfd-hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .pfd-hero-copy { text-align: center; }
  .pfd-hero-copy > p { margin: 0 auto; }
  .pfd-tags { justify-content: center; }
  .pfd-hero-media { max-width: 560px; margin: 0 auto; }
  .pfd-cs-grid { grid-template-columns: 1fr; }
  .pfd-tr-grid { grid-template-columns: 1fr; gap: 56px; }
}
@media (max-width: 640px) {
  .pfw-hero { padding: 140px 0 90px; }
  .pfw-hero-visual { min-height: 460px; transform: scale(.94); }
  .pfw-orbit { width: 360px; height: 360px; }
  .pfw-chip { padding: 9px 12px; }
  .pfw-chip strong { font-size: 12px; }
  .pfw-chip small { font-size: 10px; }
  .pfw-points { grid-template-columns: 1fr; }
  .pfw-grid { grid-template-columns: 1fr; }
  .pfw-results { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .pfw-show-slide { flex-basis: 100%; }
  .pfd-hero { padding: 140px 0 90px; }
  .pfd-hero-media { max-width: 420px; }
  .pfdm-float { padding: 10px 12px; }
  .pfdm-float .ch-ico { width: 34px; height: 34px; }
  .pfdm-float.f-1 { left: -4px; } .pfdm-float.f-2 { right: -4px; }
  .pfd-block { padding: 32px 24px; }
  .pfd-results-grid { grid-template-columns: 1fr; }
  .pfd-shots { grid-template-columns: 1fr; }
}

/* ============================================================
   INSIGHTS PAGE (.blg-*)
============================================================ */
.blg-hero { padding: 190px 0 120px; position: relative; overflow: hidden; min-height: 650px; display: flex; align-items: center; }
.blg-hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blg-hero .sec-blob.bh-1 { width: 620px; height: 620px; top: -220px; left: -160px; background: radial-gradient(circle at 40% 40%, rgba(111,59,255,.3), rgba(111,59,255,0) 70%); }
.blg-hero .sec-blob.bh-2 { width: 540px; height: 540px; bottom: -180px; right: -140px; background: radial-gradient(circle at 60% 60%, rgba(59,130,255,.22), rgba(59,130,255,0) 70%); }
.blg-dots { top: auto; bottom: 60px; left: 28px; }
.blg-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; position: relative; z-index: 1; }
.blg-hero-copy h1 { font-size: clamp(2.4rem, 4.6vw, 3.5rem); line-height: 1.1; margin: 26px 0 22px; text-wrap: balance; }
.blg-hero-copy > p { max-width: 600px; font-size: 1.05rem; }

/* search */
.blg-search { position: relative; max-width: 560px; margin-top: 34px; display: flex; align-items: center; gap: 10px; padding: 8px 8px 8px 18px; border-radius: 18px; background: #fff; border: 1px solid var(--border); box-shadow: 0 18px 46px var(--shadow); transition: border-color .35s var(--ease), box-shadow .35s var(--ease); }
.blg-search:focus-within { border-color: rgba(111,59,255,.35); box-shadow: 0 22px 54px var(--shadow), 0 0 0 4px rgba(111,59,255,.08); }
.blg-search-ico { color: var(--primary); flex: none; }
.blg-search-ico svg { width: 20px; height: 20px; }
.blg-search input { flex: 1; border: 0; outline: 0; background: transparent; font: inherit; font-size: 15px; color: var(--dark); min-width: 0; }
.blg-search input::placeholder { color: var(--text-light); }
.blg-search-btn { display: inline-flex; align-items: center; gap: 7px; padding: 12px 20px; border: 0; border-radius: 13px; background: var(--gradient); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 14px; cursor: pointer; box-shadow: 0 10px 26px var(--glow); transition: all .35s var(--ease); }
.blg-search-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px var(--glow); }
.blg-search-btn svg { width: 15px; height: 15px; transition: transform .35s var(--ease); }
.blg-search-btn:hover svg { transform: translateX(4px); }
.blg-search-suggest { position: absolute; top: calc(100% + 10px); left: 0; right: 0; z-index: 20; padding: 14px; border-radius: 16px; background: #fff; border: 1px solid var(--border); box-shadow: 0 24px 60px var(--shadow); }
.blgs-label { display: flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-light); margin: 0 6px 8px; }
.blgs-label svg { color: var(--primary); }
.blgs-item { display: block; width: 100%; text-align: left; padding: 10px 12px; border: 0; border-radius: 10px; background: transparent; cursor: pointer; font: inherit; font-size: 13.5px; color: var(--dark); transition: background .25s var(--ease), color .25s var(--ease); }
.blgs-item:hover { background: var(--gradient-soft); color: var(--primary); }

/* hero visual — window composition */
.blg-hero-visual { position: relative; min-height: 560px; }
.blg-glow { position: absolute; inset: 8% 0 0; background: radial-gradient(ellipse at 50% 42%, rgba(111,59,255,.2), rgba(59,130,255,.1) 45%, transparent 72%); filter: blur(26px); z-index: 0; }
.blg-orbit { position: absolute; top: 50%; left: 50%; width: 470px; height: 470px; transform: translate(-50%, -50%); border: 1.5px dashed rgba(111,59,255,.26); border-radius: 50%; animation: spin 46s linear infinite; z-index: 0; }
.blg-window { position: relative; z-index: 1; width: 400px; margin: 40px auto 0; border-radius: 20px; background: #fff; border: 1px solid var(--border); box-shadow: 0 36px 80px var(--shadow), 0 0 0 1px rgba(111,59,255,.06); animation: chipFloat 7s ease-in-out infinite; overflow: hidden; }
.blg-window-bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; border-bottom: 1px solid var(--border); background: #FBFBFE; }
.blg-window-bar span { width: 9px; height: 9px; border-radius: 50%; background: #E8ECF5; }
.blg-window-bar span:nth-child(1) { background: #FF5F57; }
.blg-window-bar span:nth-child(2) { background: #FEBC2E; }
.blg-window-bar span:nth-child(3) { background: #28C840; }
.blg-window-bar small { margin-left: auto; font-size: 11px; color: var(--text-light); }
.blg-window-body { padding: 18px; display: grid; gap: 14px; }
.blgw-art { padding: 16px; border-radius: 14px; background: #fff; border: 1px solid var(--border); box-shadow: 0 4px 14px rgba(20,20,43,.05); }
.blgw-art-2 { transform: translateX(14px); }
.blgw-cat { display: inline-block; font-family: var(--font-head); font-size: 9.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--primary); background: var(--gradient-soft); padding: 4px 10px; border-radius: 99px; margin-bottom: 10px; }
.blgw-art h4 { font-size: 14.5px; line-height: 1.4; margin-bottom: 6px; }
.blgw-art p { font-size: 11.5px; color: var(--text-light); margin-bottom: 10px; }
.blgw-meta { display: flex; gap: 12px; font-size: 10.5px; color: var(--text-light); }
.blgw-meta span { display: inline-flex; align-items: center; gap: 5px; }
.blgw-meta svg { width: 12px; height: 12px; color: var(--primary); }
.blgw-chart { display: flex; align-items: flex-end; gap: 6px; height: 56px; padding: 0 14px; }
.blgw-chart i { flex: 1; border-radius: 4px 4px 1px 1px; background: linear-gradient(180deg, var(--primary), var(--secondary)); opacity: .9; animation: svhGrow 1.2s var(--ease) both; }
.blgw-chart i:nth-child(odd) { background: linear-gradient(180deg, #A78BFA, #6F3BFF); }
.blgw-chart i:nth-child(1) { height: 40%; } .blgw-chart i:nth-child(2) { height: 62%; } .blgw-chart i:nth-child(3) { height: 48%; } .blgw-chart i:nth-child(4) { height: 80%; } .blgw-chart i:nth-child(5) { height: 60%; } .blgw-chart i:nth-child(6) { height: 90%; } .blgw-chart i:nth-child(7) { height: 72%; }
.blg-base { position: relative; z-index: 1; width: 170px; height: 20px; margin: -2px auto 0; background: linear-gradient(180deg, #fff, #EEF1FA); border: 1px solid var(--border); border-top: none; border-radius: 0 0 14px 14px; box-shadow: 0 16px 36px rgba(20,20,43,.12); }
.blg-chip { position: absolute; z-index: 2; display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 15px; background: rgba(255,255,255,.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid var(--border); box-shadow: 0 18px 44px var(--shadow); animation: chipFloat 6s ease-in-out infinite; }
.blg-chip strong { display: block; font-family: var(--font-head); font-size: 13px; color: var(--dark); line-height: 1.2; }
.blg-chip small { font-size: 11px; color: var(--text-light); }
.blg-chip .blg-ico { width: 38px; height: 38px; border-radius: 12px; background: var(--gradient); color: #fff; display: grid; place-items: center; box-shadow: 0 8px 20px var(--glow); }
.blg-chip .blg-ico svg { width: 18px; height: 18px; }
.blg-chip.bk-1 { left: -6%; top: 6%; animation-delay: 0s; }
.blg-chip.bk-2 { right: -7%; top: 30%; animation-delay: .9s; }
.blg-chip.bk-3 { left: -4%; bottom: 8%; animation-delay: .45s; }

/* filter section */
.blg-filter-section { position: relative; overflow: hidden; }
.blg-filter-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blg-filter-bg .sec-blob.bf-1 { width: 560px; height: 560px; top: -180px; left: -140px; background: radial-gradient(circle at 40% 40%, rgba(111,59,255,.22), rgba(111,59,255,0) 70%); }
.blg-filter-bg .sec-blob.bf-2 { width: 480px; height: 480px; bottom: -160px; right: -130px; background: radial-gradient(circle at 60% 60%, rgba(59,130,255,.16), rgba(59,130,255,0) 70%); }
.blg-filters { flex-wrap: wrap; justify-content: center; }

/* featured */
.blg-featured { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 1; margin-bottom: 44px; }
.blg-feature { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border); border-radius: 24px; overflow: hidden; box-shadow: 0 4px 20px var(--shadow); text-decoration: none; color: inherit; transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease); }
.blg-feature:hover { transform: translateY(-10px); box-shadow: 0 28px 60px var(--shadow), 0 0 0 1px rgba(111,59,255,.1), 0 14px 44px var(--glow); border-color: rgba(111,59,255,.28); }
.blgf-img { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.blgf-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.blg-feature:hover .blgf-img img { transform: scale(1.08); }
.blgf-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(19,26,52,.45)); }
.blgf-trend { position: absolute; top: 14px; right: 14px; z-index: 2; display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-head); font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: linear-gradient(120deg, var(--primary), var(--secondary)); padding: 6px 12px; border-radius: 99px; box-shadow: 0 8px 20px rgba(111,59,255,.35); }
.blgf-trend svg { width: 12px; height: 12px; }
.blgf-cat { position: absolute; top: 14px; left: 14px; z-index: 2; font-family: var(--font-head); font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: 99px; background: rgba(255,255,255,.92); color: var(--dark); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.blgf-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.blgf-meta { display: flex; gap: 16px; font-size: 12px; color: var(--text-light); margin-bottom: 12px; }
.blgf-meta span { display: inline-flex; align-items: center; gap: 6px; }
.blgf-meta svg { width: 14px; height: 14px; color: var(--primary); }
.blgf-body h3 { font-size: 19px; line-height: 1.35; margin-bottom: 10px; }
.blgf-body > p { font-size: 13.5px; color: var(--text); margin-bottom: 18px; flex: 1; }
.blgf-who { display: flex; align-items: center; gap: 10px; }
.blgf-who img { border-radius: 50%; object-fit: cover; border: 2px solid #fff; box-shadow: 0 4px 12px var(--shadow); }
.blgf-who span { font-family: var(--font-head); font-weight: 600; font-size: 13.5px; color: var(--dark); }
.blgf-read { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-style: normal; font-family: var(--font-head); font-weight: 600; font-size: 13px; color: var(--primary); }
.blgf-read svg { width: 14px; height: 14px; transition: transform .35s var(--ease); }
.blg-feature:hover .blgf-read svg { transform: translateX(5px); }

/* grid cards */
.blg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 1; }
.blg-card { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border); border-radius: 24px; overflow: hidden; box-shadow: 0 4px 20px var(--shadow); text-decoration: none; color: inherit; transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease); }
.blg-card:hover { transform: translateY(-10px); box-shadow: 0 28px 60px var(--shadow), 0 0 0 1px rgba(111,59,255,.1), 0 14px 44px var(--glow); border-color: rgba(111,59,255,.28); }
.blg-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.blg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.blg-card:hover .blg-img img { transform: scale(1.08); }
.blg-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(19,26,52,.35)); }
.blg-badge { position: absolute; top: 14px; left: 14px; z-index: 2; font-family: var(--font-head); font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: 99px; background: rgba(255,255,255,.92); color: var(--dark); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.blg-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.blg-meta { display: flex; gap: 14px; font-size: 11.5px; color: var(--text-light); margin-bottom: 10px; }
.blg-meta span { display: inline-flex; align-items: center; gap: 5px; }
.blg-meta svg { width: 13px; height: 13px; color: var(--primary); }
.blg-body h3 { font-size: 17.5px; line-height: 1.4; margin-bottom: 8px; }
.blg-body > p { font-size: 13px; color: var(--text); margin-bottom: 16px; flex: 1; }
.blg-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 14px; border-top: 1px solid var(--border); }
.blg-who { display: flex; align-items: center; gap: 9px; min-width: 0; }
.blg-who img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; border: 2px solid #fff; box-shadow: 0 4px 12px var(--shadow); }
.blg-who div { min-width: 0; }
.blg-who strong { display: block; font-family: var(--font-head); font-size: 12.5px; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.blg-who small { display: inline-flex; align-items: center; gap: 4px; font-size: 10.5px; color: var(--text-light); }
.blg-who small svg { color: var(--primary); }
.blg-link { flex: none; display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-weight: 600; font-size: 12.5px; color: var(--primary); }
.blg-link svg { width: 14px; height: 14px; transition: transform .35s var(--ease); }
.blg-card:hover .blg-link svg { transform: translateX(5px); }
.blg-hidden { display: none !important; }
.blg-page-hide { display: none !important; }

/* pagination */
.blg-pagination { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 44px; position: relative; z-index: 1; }
.blgp-arrow { width: 48px; height: 48px; border-radius: 50%; background: #fff; border: 1.5px solid var(--border); color: var(--primary); display: grid; place-items: center; cursor: pointer; transition: all .35s var(--ease); box-shadow: 0 8px 22px var(--shadow); }
.blgp-arrow:hover:not(:disabled) { background: var(--gradient); color: #fff; border-color: transparent; transform: translateY(-3px); box-shadow: 0 14px 32px var(--glow); }
.blgp-arrow:disabled { opacity: .45; cursor: not-allowed; }
.blgp-arrow svg { width: 19px; height: 19px; }
.blgp-nums { display: flex; gap: 8px; }
.blgp-num { width: 44px; height: 44px; border-radius: 14px; background: #fff; border: 1.5px solid var(--border); color: var(--dark); font-family: var(--font-head); font-weight: 600; font-size: 14px; cursor: pointer; transition: all .35s var(--ease); }
.blgp-num:hover { border-color: rgba(111,59,255,.4); color: var(--primary); transform: translateY(-2px); }
.blgp-num.active { background: var(--gradient); color: #fff; border-color: transparent; box-shadow: 0 10px 26px var(--glow); }

/* newsletter panel */
.blg-news-section { position: relative; }
.blg-news-panel { position: relative; overflow: hidden; border-radius: 30px; background: linear-gradient(120deg, #7C4BFF 0%, #6F3BFF 45%, #3B82FF 100%); padding: 64px 60px; box-shadow: 0 36px 90px var(--glow); }
.blg-news-waves { position: absolute; inset: 0; pointer-events: none; }
.blg-news-waves svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.blg-news-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 220px 1fr; gap: 48px; align-items: center; }
.blg-news-ico { position: relative; height: 160px; }
.bn-core { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 92px; height: 92px; border-radius: 28px; background: rgba(255,255,255,.16); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.3); display: grid; place-items: center; color: #fff; box-shadow: 0 24px 54px rgba(19,26,52,.3); animation: chipFloat 6s ease-in-out infinite; }
.bn-core svg { width: 40px; height: 40px; }
.bn-float { position: absolute; width: 46px; height: 46px; border-radius: 14px; background: rgba(255,255,255,.92); color: var(--primary); display: grid; place-items: center; box-shadow: 0 14px 30px rgba(19,26,52,.28); animation: chipFloat 5s ease-in-out infinite; }
.bn-float svg { width: 21px; height: 21px; }
.bn-float.f1 { top: 0; left: 14%; animation-delay: .4s; }
.bn-float.f2 { bottom: 4px; right: 10%; animation-delay: 1s; }
.blg-news-copy h2 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 12px; }
.blg-news-copy h2 .grad-text { background: linear-gradient(120deg, #fff, #D8E4FF); -webkit-background-clip: text; background-clip: text; color: transparent; }
.blg-news-copy > p { color: rgba(255,255,255,.85); font-size: 15px; line-height: 1.7; margin-bottom: 24px; max-width: 620px; }
.blg-news-form { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.blg-news-input { position: relative; flex: 1; min-width: 260px; display: flex; align-items: center; gap: 10px; padding: 6px 8px 6px 16px; border-radius: 15px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); transition: all .35s var(--ease); }
.blg-news-input:focus-within { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.5); }
.blg-news-input svg { color: rgba(255,255,255,.85); width: 18px; height: 18px; flex: none; }
.blg-news-input input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; font: inherit; font-size: 14.5px; color: #fff; padding: 11px 0; }
.blg-news-input input::placeholder { color: rgba(255,255,255,.65); }
.blg-news-form .btn-white { white-space: nowrap; }
.blg-news-note { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.7); font-size: 12px; margin-top: 14px; }
.blg-news-note svg { width: 14px; height: 14px; }
.blg-news-note.ok { color: #D1FAE5; }
.blg-news-note.err { color: #FECACA; }

/* ============================================================
   BLOG DETAILS (.bld-*)
============================================================ */
.bld-hero { padding: 190px 0 70px; position: relative; overflow: hidden; }
.bld-hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.bld-hero .sec-blob.bdh-1 { width: 620px; height: 620px; top: -220px; left: -160px; background: radial-gradient(circle at 40% 40%, rgba(111,59,255,.28), rgba(111,59,255,0) 70%); }
.bld-hero .sec-blob.bdh-2 { width: 540px; height: 540px; bottom: -180px; right: -140px; background: radial-gradient(circle at 60% 60%, rgba(59,130,255,.2), rgba(59,130,255,0) 70%); }
.bld-dots { top: auto; bottom: 40px; left: 28px; }
.bld-hero-inner { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; text-align: center; }
.bld-hero-inner .crumbs { justify-content: center; }
.bld-hero-copy-h { font-size: clamp(1.9rem, 3.6vw, 2.9rem); line-height: 1.15; margin: 26px 0 24px; text-wrap: balance; }
.bld-meta { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.bld-meta > img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid #fff; box-shadow: 0 4px 14px var(--shadow); }
.bld-who { text-align: left; }
.bld-who strong { display: block; font-family: var(--font-head); font-size: 14px; color: var(--dark); }
.bld-who small { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; color: var(--text-light); }
.bld-who small svg { width: 13px; height: 13px; color: var(--primary); }
.bld-views { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-light); padding: 7px 14px; border-radius: 99px; background: #fff; border: 1px solid var(--border); box-shadow: 0 4px 14px var(--shadow); }
.bld-views svg { width: 14px; height: 14px; color: var(--primary); }
.bld-share { display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 28px; flex-wrap: wrap; }
.bld-share > span { font-size: 12.5px; font-weight: 600; color: var(--text-light); margin-right: 4px; }
.bld-share a, .bld-copy { width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 1px solid var(--border); color: var(--dark); display: grid; place-items: center; cursor: pointer; box-shadow: 0 6px 18px var(--shadow); transition: all .35s var(--ease); }
.bld-share a:hover, .bld-copy:hover { background: var(--gradient); color: #fff; border-color: transparent; transform: translateY(-3px); box-shadow: 0 12px 28px var(--glow); }
.bld-share svg { width: 17px; height: 17px; }

/* article layout */
.bld-article-section { position: relative; }
.bld-layout { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
.bld-article { min-width: 0; }
.bld-cover { border-radius: 26px; overflow: hidden; box-shadow: 0 30px 70px var(--shadow); margin-bottom: 36px; border: 1px solid rgba(232,236,245,.9); }
.bld-cover img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.bld-content { font-size: 1.06rem; line-height: 1.95; color: var(--text); }
.bld-content p { margin-bottom: 1.4em; }
.bld-content h2 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); color: var(--dark); margin: 1.8em 0 .7em; line-height: 1.3; }
.bld-article-foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 40px; padding: 22px 0; border-top: 1px solid var(--border); }
.bld-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.bld-tags span { font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--primary); background: var(--gradient-soft); padding: 7px 14px; border-radius: 99px; }
.bld-tags span.hot { background: var(--gradient); color: #fff; box-shadow: 0 6px 18px var(--glow); }
.bld-share-foot { margin-top: 0; }

/* author */
.bld-author { display: flex; gap: 20px; align-items: flex-start; padding: 28px; border-radius: 22px; background: #fff; border: 1px solid var(--border); box-shadow: 0 10px 30px var(--shadow); margin-top: 20px; }
.bld-author > img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex: none; border: 2px solid #fff; box-shadow: 0 6px 18px var(--shadow); }
.bld-author span { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--primary); }
.bld-author h3 { font-size: 17px; margin: 4px 0 6px; }
.bld-author p { font-size: 13.5px; color: var(--text); line-height: 1.7; margin: 0; }

/* comments */
.bld-comments { margin-top: 48px; }
.bld-comments > h3 { font-size: 20px; margin-bottom: 22px; }
.bld-ccount { color: var(--primary); font-size: 15px; }
.bld-comment-list { display: grid; gap: 14px; margin-bottom: 34px; }
.bld-comment { display: flex; gap: 14px; padding: 20px; border-radius: 18px; background: #fff; border: 1px solid var(--border); box-shadow: 0 4px 16px var(--shadow); }
.bldc-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--gradient-soft); color: var(--primary); display: grid; place-items: center; flex: none; }
.bldc-avatar svg { width: 19px; height: 19px; }
.bld-comment strong { display: block; font-family: var(--font-head); font-size: 14px; color: var(--dark); }
.bld-comment small { font-size: 11px; color: var(--text-light); }
.bld-comment p { font-size: 13.5px; color: var(--text); margin: 6px 0 0; line-height: 1.7; }
.bld-comment-form { padding: 28px; border-radius: 22px; background: #fff; border: 1px solid var(--border); box-shadow: 0 10px 30px var(--shadow); }
.bld-comment-form h4 { font-size: 17px; margin-bottom: 18px; }
.bld-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.bld-comment-form input, .bld-comment-form textarea { width: 100%; border: 1px solid var(--border); border-radius: 13px; padding: 13px 16px; font: inherit; font-size: 14px; color: var(--dark); background: #fff; transition: all .3s var(--ease); }
.bld-comment-form input:focus, .bld-comment-form textarea:focus { outline: 0; border-color: rgba(111,59,255,.4); box-shadow: 0 0 0 4px rgba(111,59,255,.08); }
.bld-comment-form textarea { resize: vertical; margin-bottom: 14px; }
.bld-form-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.bld-form-note { font-size: 12px; color: var(--text-light); }

/* related sidebar */
.bld-related { position: sticky; top: 120px; }
.bld-related > h3 { font-size: 22px; margin: 12px 0 20px; }
.bld-related-list { display: grid; gap: 12px; }
.bld-related-card { display: flex; gap: 12px; align-items: center; padding: 12px; border-radius: 16px; background: #fff; border: 1px solid var(--border); box-shadow: 0 4px 16px var(--shadow); text-decoration: none; color: inherit; transition: all .35s var(--ease); }
.bld-related-card:hover { transform: translateX(6px); border-color: rgba(111,59,255,.3); box-shadow: 0 12px 30px var(--shadow), 0 8px 24px var(--glow); }
.bld-related-card img { width: 78px; height: 58px; border-radius: 11px; object-fit: cover; flex: none; }
.bld-related-card span { font-size: 9.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--primary); }
.bld-related-card h4 { font-size: 13px; line-height: 1.4; margin: 2px 0 4px; }
.bld-related-card small { font-size: 10.5px; color: var(--text-light); }
.bld-mini-cta { margin-top: 22px; padding: 26px 24px; border-radius: 22px; background: linear-gradient(150deg, #F7F5FF, #F2F7FF); border: 1px solid var(--border); text-align: center; }
.bldm-ico { width: 52px; height: 52px; margin: 0 auto 14px; border-radius: 16px; background: var(--gradient); color: #fff; display: grid; place-items: center; box-shadow: 0 12px 28px var(--glow); }
.bldm-ico svg { width: 24px; height: 24px; }
.bld-mini-cta h4 { font-size: 17px; margin-bottom: 6px; }
.bld-mini-cta p { font-size: 12.5px; color: var(--text); margin-bottom: 16px; }

/* ============================================================
   INSIGHTS RESPONSIVE
============================================================ */
@media (max-width: 1280px) {
  .blg-hero-grid { gap: 48px; }
  .blg-featured { grid-template-columns: repeat(3, 1fr); }
  .blg-grid { grid-template-columns: repeat(2, 1fr); }
  .bld-layout { grid-template-columns: 1fr 300px; gap: 44px; }
  .blg-news-grid { grid-template-columns: 180px 1fr; gap: 36px; }
}
@media (max-width: 1024px) {
  .blg-hero { padding: 160px 0 100px; min-height: 0; }
  .blg-hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .blg-hero-copy { text-align: center; }
  .blg-hero-copy > p { margin: 0 auto; }
  .blg-search { margin: 34px auto 0; }
  .blg-hero-visual { max-width: 520px; margin: 0 auto; }
  .blg-featured { grid-template-columns: 1fr; }
  .blg-feature { flex-direction: row; }
  .blgf-img { flex: 0 0 45%; }
  .blg-news-panel { padding: 48px 40px; }
  .blg-news-grid { grid-template-columns: 1fr; text-align: center; }
  .blg-news-ico { height: 120px; margin-bottom: 10px; }
  .blg-news-form { justify-content: center; }
  .blg-news-copy > p { margin: 0 auto 24px; }
  .bld-hero { padding: 160px 0 60px; }
  .bld-layout { grid-template-columns: 1fr; }
  .bld-related { position: static; }
  .bld-related-list { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .blg-hero { padding: 140px 0 90px; }
  .blg-hero-visual { min-height: 440px; transform: scale(.93); }
  .blg-orbit { width: 350px; height: 350px; }
  .blg-chip { padding: 9px 12px; }
  .blg-chip strong { font-size: 12px; }
  .blg-chip small { font-size: 10px; }
  .blg-search { flex-wrap: wrap; padding: 12px; }
  .blg-search-btn { width: 100%; justify-content: center; }
  .blg-search-suggest { left: 0; right: 0; }
  .blg-feature { flex-direction: column; }
  .blgf-img { flex: none; }
  .blg-grid { grid-template-columns: 1fr; }
  .blg-pagination { gap: 10px; flex-wrap: wrap; }
  .blg-news-panel { padding: 40px 24px; border-radius: 24px; }
  .blg-news-input { min-width: 100%; }
  .blg-news-form .btn-white { width: 100%; justify-content: center; }
  .bld-hero { padding: 140px 0 50px; }
  .bld-meta { gap: 10px; }
  .bld-share a, .bld-copy { width: 36px; height: 36px; }
  .bld-form-row { grid-template-columns: 1fr; }
  .bld-related-list { grid-template-columns: 1fr; }
  .bld-author { flex-direction: column; text-align: center; align-items: center; }
  .bld-article-foot { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   CONTACT PAGE (.ctc-*)
============================================================ */
.ctc-hero { padding: 190px 0 120px; position: relative; overflow: hidden; min-height: 650px; display: flex; align-items: center; }
.ctc-hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.ctc-hero .sec-blob.chh-1 { width: 620px; height: 620px; top: -220px; left: -160px; background: radial-gradient(circle at 40% 40%, rgba(111,59,255,.3), rgba(111,59,255,0) 70%); }
.ctc-hero .sec-blob.chh-2 { width: 540px; height: 540px; bottom: -180px; right: -140px; background: radial-gradient(circle at 60% 60%, rgba(59,130,255,.22), rgba(59,130,255,0) 70%); }
.ctc-dots { top: auto; bottom: 60px; left: 28px; }
.ctc-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; position: relative; z-index: 1; }
.ctc-hero-copy h1 { font-size: clamp(2.4rem, 4.6vw, 3.5rem); line-height: 1.1; margin: 26px 0 22px; text-wrap: balance; }
.ctc-hero-copy > p { max-width: 620px; font-size: 1.05rem; }
.ctc-points { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; margin: 30px 0 36px; max-width: 560px; }
.ctc-points li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--dark); font-size: 14.5px; }
.ctcp-ico { width: 28px; height: 28px; flex: none; border-radius: 9px; background: var(--gradient-soft); color: var(--primary); display: grid; place-items: center; }
.ctcp-ico svg { width: 15px; height: 15px; }

/* hero media — office image */
.ctc-hero-media { position: relative; min-height: 520px; }
.ctcm-glow { position: absolute; inset: 8% 0 0; background: radial-gradient(ellipse at 50% 45%, rgba(111,59,255,.22), rgba(59,130,255,.1) 45%, transparent 72%); filter: blur(26px); z-index: 0; }
.ctcm-frame { position: relative; z-index: 1; border-radius: 30px; overflow: hidden; box-shadow: 0 40px 90px var(--shadow); border: 1px solid rgba(232,236,245,.9); }
.ctcm-frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform 1.2s var(--ease); }
.ctcm-frame:hover img { transform: scale(1.05); }
.ctcm-frame::after { content: ''; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255,255,255,.35); pointer-events: none; }
.ctcm-glass { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,0) 38%, rgba(19,26,52,.18) 100%); pointer-events: none; }
.ctcm-badge { position: absolute; left: 18px; bottom: 18px; z-index: 2; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; font-size: 12.5px; color: #fff; padding: 10px 16px; border-radius: 99px; background: rgba(19,26,52,.45); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.22); }
.ctcm-badge svg { width: 15px; height: 15px; }
.ctcm-chip { position: absolute; z-index: 2; display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 15px; background: rgba(255,255,255,.94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid var(--border); box-shadow: 0 18px 44px var(--shadow); animation: chipFloat 6s ease-in-out infinite; }
.ctcm-chip strong { display: block; font-family: var(--font-head); font-size: 13px; color: var(--dark); line-height: 1.2; }
.ctcm-chip small { font-size: 11px; color: var(--text-light); }
.ctcm-chip .ctcm-ico { width: 38px; height: 38px; border-radius: 12px; background: var(--gradient); color: #fff; display: grid; place-items: center; box-shadow: 0 8px 20px var(--glow); }
.ctcm-chip .ctcm-ico svg { width: 18px; height: 18px; }
.ctcm-chip.ck-1 { left: -6%; top: 6%; animation-delay: 0s; }
.ctcm-chip.ck-2 { right: -7%; top: 30%; animation-delay: .9s; }
.ctcm-chip.ck-3 { left: -5%; bottom: 10%; animation-delay: .45s; }

/* contact section */
.ctc-contact-section { position: relative; overflow: hidden; }
.ctc-contact-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.ctc-contact-bg .sec-blob.ccs-1 { width: 560px; height: 560px; top: -170px; left: -140px; background: radial-gradient(circle at 40% 40%, rgba(111,59,255,.22), rgba(111,59,255,0) 70%); }
.ctc-contact-bg .sec-blob.ccs-2 { width: 500px; height: 500px; bottom: -160px; right: -120px; background: radial-gradient(circle at 60% 60%, rgba(59,130,255,.18), rgba(59,130,255,0) 70%); }
.ctc-panel { position: relative; z-index: 1; border-radius: 30px; background: #fff; border: 1px solid var(--border); box-shadow: 0 30px 70px var(--shadow); padding: 52px 56px; }
.ctc-grid { display: grid; grid-template-columns: 35% 1fr; gap: 56px; align-items: start; }
.ctc-info > h3 { font-size: 26px; margin-bottom: 8px; }
.ctc-info > p { font-size: 15px; color: var(--text); margin-bottom: 26px; }
.ctc-book { display: flex; align-items: center; gap: 14px; margin-top: 8px; padding: 18px 20px; border-radius: 18px; background: linear-gradient(150deg, #F7F5FF, #F2F7FF); border: 1px solid var(--border); text-decoration: none; color: inherit; transition: all .4s var(--ease); }
.ctc-book:hover { transform: translateY(-4px); border-color: rgba(111,59,255,.32); box-shadow: 0 16px 40px var(--shadow), 0 10px 28px var(--glow); }
.ctcb-ico { width: 48px; height: 48px; flex: none; border-radius: 14px; background: var(--gradient); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 24px var(--glow); }
.ctcb-ico svg { width: 22px; height: 22px; }
.ctc-book strong { display: block; font-family: var(--font-head); font-size: 15.5px; color: var(--dark); }
.ctc-book small { font-size: 12.5px; color: var(--text-light); }
.ctcb-arrow { margin-left: auto; color: var(--primary); transition: transform .35s var(--ease); }
.ctcb-arrow svg { width: 18px; height: 18px; }
.ctc-book:hover .ctcb-arrow { transform: translateX(5px); }
.ctc-form { padding: 0; }
.ctc-form-head { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.ctcf-ico { width: 54px; height: 54px; flex: none; border-radius: 16px; background: var(--gradient); color: #fff; display: grid; place-items: center; box-shadow: 0 12px 28px var(--glow); }
.ctcf-ico svg { width: 25px; height: 25px; }
.ctc-form-head h3 { font-size: 22px; margin-bottom: 3px; }
.ctc-form-head p { font-size: 13.5px; color: var(--text); }
.ctc-consent { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text); cursor: pointer; font-weight: 400; }
.ctc-consent input { width: 17px; height: 17px; margin-top: 2px; padding: 0; border: 0; border-radius: 0; background: none; accent-color: var(--primary); box-shadow: none; }
.ctc-consent a { color: var(--primary); text-decoration: underline; }

/* map */
.ctc-map-section { position: relative; }
.ctc-map-shell { position: relative; border-radius: 30px; overflow: hidden; box-shadow: 0 30px 70px var(--shadow); border: 1px solid var(--border); }
.ctc-map-frame { display: block; width: 100%; height: 480px; border: 0; filter: saturate(.92); }
.ctc-map-card { position: absolute; top: 24px; left: 24px; max-width: 300px; padding: 26px 26px 22px; border-radius: 22px; background: rgba(255,255,255,.95); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid var(--border); box-shadow: 0 24px 60px var(--shadow); }
.ctcmc-ico { width: 48px; height: 48px; margin-bottom: 14px; border-radius: 14px; background: var(--gradient); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 24px var(--glow); }
.ctcmc-ico svg { width: 22px; height: 22px; }
.ctc-map-card h3 { font-size: 17px; margin-bottom: 6px; }
.ctc-map-card p { font-size: 13.5px; color: var(--text); line-height: 1.65; margin-bottom: 12px; }
.ctcmc-hours { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--text-light); }
.ctcmc-hours svg { color: var(--primary); }

/* faq */
.ctc-faq-section { position: relative; overflow: hidden; }
.ctc-faq-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.ctc-faq-bg .sec-blob.cf-1 { width: 540px; height: 540px; top: -170px; right: -130px; background: radial-gradient(circle at 40% 40%, rgba(111,59,255,.2), rgba(111,59,255,0) 70%); }
.ctc-faq-bg .sec-blob.cf-2 { width: 480px; height: 480px; bottom: -150px; left: -120px; background: radial-gradient(circle at 60% 60%, rgba(59,130,255,.16), rgba(59,130,255,0) 70%); }
.ctc-faq-section .faq-wrap { position: relative; z-index: 1; }

/* ============================================================
   CONTACT RESPONSIVE
============================================================ */
@media (max-width: 1280px) {
  .ctc-hero-grid { gap: 48px; }
  .ctc-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 1024px) {
  .ctc-hero { padding: 160px 0 100px; min-height: 0; }
  .ctc-hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .ctc-hero-copy { text-align: center; }
  .ctc-hero-copy > p { margin: 0 auto; }
  .ctc-points { margin: 30px auto 36px; text-align: left; }
  .ctc-hero-media { max-width: 560px; margin: 0 auto; }
  .ctc-panel { padding: 40px 34px; }
  .ctc-map-frame { height: 420px; }
}
@media (max-width: 640px) {
  .ctc-hero { padding: 140px 0 90px; }
  .ctc-hero-media { min-height: 420px; transform: scale(.94); }
  .ctcm-chip { padding: 9px 12px; }
  .ctcm-chip strong { font-size: 12px; }
  .ctcm-chip small { font-size: 10px; }
  .ctc-points { grid-template-columns: 1fr; }
  .ctc-panel { padding: 30px 20px; border-radius: 24px; }
  .ctc-map-card { max-width: none; margin: -60px 16px 16px; position: relative; z-index: 2; }
  .ctc-map-frame { height: 320px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .cursor-dot, .cursor-ring, .scroll-progress { display: none; }
}
