/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input { font-family: inherit; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #3b82f6, #a855f7); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #2563eb, #9333ea); }

/* ===== GRADIENT TEXT / BG UTILITIES ===== */
.grad-text {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.grad-blue-purple-pink { background-image: linear-gradient(90deg,#3b82f6,#a855f7,#ec4899); }
.grad-blue-purple { background-image: linear-gradient(90deg,#60a5fa,#c084fc); }
.grad-bpp { background-image: linear-gradient(90deg,#60a5fa,#c084fc,#f472b6); }
.grad-purple-pink { background-image: linear-gradient(90deg,#c084fc,#f472b6); }
.grad-cyan { background-image: linear-gradient(90deg,#22d3ee,#06b6d4); }
.grad-emerald { background-image: linear-gradient(90deg,#34d399,#14b8a6); }
.grad-violet { background-image: linear-gradient(90deg,#a78bfa,#818cf8); }
.grad-orange { background-image: linear-gradient(90deg,#fb923c,#f472b6); }
.grad-cyan-blue { background-image: linear-gradient(90deg,#22d3ee,#3b82f6); }
.grad-emerald-cyan { background-image: linear-gradient(90deg,#34d399,#22d3ee); }
.grad-yellow-orange { background-image: linear-gradient(90deg,#eab308,#f97316); }

.grad-bg-cyan { background: linear-gradient(135deg,#3b82f6,#06b6d4); }
.grad-bg-orange { background: linear-gradient(135deg,#f97316,#ef4444); }
.grad-bg-emerald { background: linear-gradient(135deg,#10b981,#14b8a6); }
.grad-bg-violet { background: linear-gradient(135deg,#8b5cf6,#6366f1); }
.grad-bg-purplepink { background: linear-gradient(135deg,#a855f7,#ec4899); }
.grad-bg-greenemerald { background: linear-gradient(135deg,#22c55e,#10b981); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  transition: all .3s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: scale(1.05); }
.btn:active { transform: scale(0.95); }
.btn-gradient {
  background: linear-gradient(90deg,#2563eb,#9333ea);
  color: #fff;
}
.btn-gradient:hover { box-shadow: 0 10px 40px rgba(59,130,246,.5); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-ghost {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
  padding: 1rem 2rem;
}
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-white {
  background: #fff;
  color: #7e22ce;
  padding: 1rem 2rem;
  font-weight: 700;
}
.btn-white:hover { box-shadow: 0 20px 50px rgba(255,255,255,.4); }
.btn-outline-white {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  padding: 1rem 2rem;
  font-weight: 500;
}
.btn-outline-white:hover { background: rgba(255,255,255,.2); }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all .3s ease;
  background: transparent;
}
.header.scrolled {
  background: rgba(0,0,0,.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo { display: flex; align-items: center; gap: .75rem; transition: transform .2s; }
.logo:hover { transform: scale(1.05); }
.logo-ring {
  position: relative;
  display: block;
  border-radius: 999px;
  padding: 2px;
  background: linear-gradient(135deg,#3b82f6,#a855f7,#ec4899);
  flex-shrink: 0;
}
.logo-ring img {
  height: 40px; width: 40px;
  object-fit: cover;
  border-radius: 999px;
  display: block;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.logo-word {
  font-weight: 900;
  font-size: 15px;
  letter-spacing: .12em;
  background-image: linear-gradient(90deg,#fff,#fff,#bfdbfe);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo-word-lg { font-size: 24px; letter-spacing: .1em; }
.logo-sub {
  font-weight: 500;
  font-size: 9px;
  letter-spacing: .35em;
  text-transform: uppercase;
  background-image: linear-gradient(90deg,#60a5fa,#c084fc);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-desktop { display: none; align-items: center; gap: 2rem; }
.nav-desktop a { color: #d1d5db; position: relative; transition: color .2s; }
.nav-desktop a:hover { color: #fff; }
.nav-desktop a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: linear-gradient(90deg,#3b82f6,#a855f7);
  transition: width .3s;
}
.nav-desktop a:hover::after { width: 100%; }
.header-cta { display: none; }
.menu-btn { display: block; padding: .5rem; color: #fff; }
@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .header-cta { display: flex; align-items: center; gap: 1rem; }
  .menu-btn { display: none; }
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 1rem;
  background: rgba(0,0,0,.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #d1d5db; padding: .5rem 0; }
.mobile-menu a:hover { color: #fff; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.blob { position: absolute; border-radius: 999px; filter: blur(90px); animation: pulse 3s ease-in-out infinite; }
.blob-blue { top: 25%; left: -25%; width: 24rem; height: 24rem; background: rgba(59,130,246,.2); }
.blob-purple { bottom: 25%; right: -25%; width: 24rem; height: 24rem; background: rgba(168,85,247,.2); }
.blob-pink { top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 600px; background: rgba(236,72,153,.1); }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .5; } }
.grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 4rem 4rem;
}
.hero-inner { position: relative; z-index: 10; max-width: 64rem; margin: 0 auto; text-align: center; }
.badge-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1rem; border-radius: 999px;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.1);
  margin-bottom: 1.5rem;
  font-size: .875rem; color: #d1d5db;
}
.dot-pulse { width: 8px; height: 8px; border-radius: 999px; background: #22c55e; animation: pulse 2s ease-in-out infinite; }
.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background-image: linear-gradient(90deg,#fff,#e5e7eb,#9ca3af);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 768px) { .hero-title { font-size: 5rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 6rem; } }
.hero-sub { font-size: 1.25rem; color: #9ca3af; margin-bottom: 2.5rem; max-width: 48rem; margin-left: auto; margin-right: auto; }
@media (min-width: 768px) { .hero-sub { font-size: 1.5rem; } }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 5rem;
  max-width: 56rem;
  margin-left: auto; margin-right: auto;
}
@media (min-width: 768px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }
.stat-value { font-size: 1.875rem; font-weight: 800; margin-bottom: .5rem; }
@media (min-width: 768px) { .stat-value { font-size: 2.25rem; } }
.stat-label { font-size: .875rem; color: #6b7280; }
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); }
.scroll-pill { width: 24px; height: 40px; border: 2px solid rgba(255,255,255,.2); border-radius: 999px; display: flex; justify-content: center; padding-top: 8px; }
.scroll-dot { width: 6px; height: 6px; background: #fff; border-radius: 999px; animation: scrollDot 1.5s infinite; }
@keyframes scrollDot { 0% { transform: translateY(0); } 50% { transform: translateY(12px); } 100% { transform: translateY(0); } }

/* ===== SECTION HEAD (shared) ===== */
.section-head { text-align: center; margin-bottom: 4rem; }
.tag { display: inline-block; padding: .5rem 1rem; border-radius: 999px; margin-bottom: 1rem; font-size: .875rem; }
.tag-blue { background: rgba(59,130,246,.1); border: 1px solid rgba(59,130,246,.2); color: #60a5fa; }
.tag-purple { background: rgba(168,85,247,.1); border: 1px solid rgba(168,85,247,.2); color: #c084fc; }
.tag-cyan { background: rgba(34,211,238,.1); border: 1px solid rgba(34,211,238,.2); color: #22d3ee; }
.tag-emerald { background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.2); color: #34d399; }
.tag-yellow { background: rgba(234,179,8,.1); border: 1px solid rgba(234,179,8,.2); color: #facc15; }
.section-title { font-size: 2.25rem; font-weight: 700; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .section-title { font-size: 3.75rem; } }
.section-sub { font-size: 1.25rem; color: #9ca3af; max-width: 42rem; margin: 0 auto; }

/* ===== TRUSTED BY ===== */
.trusted { padding: 6rem 0; position: relative; overflow: hidden; border-top: 1px solid rgba(255,255,255,.05); }
.trusted-bg-wash { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(59,130,246,.05), rgba(168,85,247,.05), rgba(236,72,153,.05)); }
.trusted-head { position: relative; z-index: 10; text-align: center; margin-bottom: 3.5rem; padding: 0 1rem; }
.eyebrow-row { display: inline-flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.eyebrow-line { height: 1px; width: 4rem; background: linear-gradient(90deg, transparent, rgba(59,130,246,.6)); }
.eyebrow { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .3em; color: #60a5fa; }
.trusted-title { font-size: 1.5rem; font-weight: 300; color: rgba(255,255,255,.6); }
.marquee-wrap { position: relative; overflow: hidden; }
.marquee-fade { position: absolute; top: 0; bottom: 0; width: 8rem; z-index: 10; pointer-events: none; }
.marquee-fade-l { left: 0; background: linear-gradient(90deg, #0a0a0a, transparent); }
.marquee-fade-r { right: 0; background: linear-gradient(270deg, #0a0a0a, transparent); }
.marquee-track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.logo-card { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: .75rem; width: 8rem; margin: 0 1rem; cursor: pointer; }
.logo-card-icon {
  width: 72px; height: 72px; border-radius: 22px; background: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
  transition: transform .3s;
}
.logo-card:hover .logo-card-icon { transform: scale(1.1); }
.logo-card-name { font-size: 11px; font-weight: 500; letter-spacing: .02em; color: #6b7280; transition: color .3s; }
.logo-card:hover .logo-card-name { color: #fff; }
.trusted-pills { position: relative; z-index: 10; margin-top: 3.5rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2rem; padding: 0 1rem; }
.pill-item { display: flex; align-items: center; gap: .5rem; font-size: .75rem; color: #4b5563; letter-spacing: .02em; }
.pill-dot { width: 6px; height: 6px; border-radius: 999px; background: linear-gradient(90deg,#3b82f6,#a855f7); }

/* ===== SERVICES ===== */
.services { padding: 8rem 0; position: relative; overflow: hidden; }
.glow-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 800px; height: 800px; background: rgba(59,130,246,.05); border-radius: 999px; filter: blur(90px); }
.services-grid { position: relative; z-index: 10; display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 64rem; margin: 0 auto; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
.service-card {
  position: relative; padding: 2rem; border-radius: 1rem;
  background: rgba(255,255,255,.04); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.1);
  transition: all .3s; overflow: hidden;
}
.service-card:hover { border-color: rgba(255,255,255,.2); transform: translateY(-6px); }
.card-accent {
  position: absolute; top: 0; left: 2rem; right: 2rem; height: 2px;
  border-radius: 999px; opacity: 0; transition: opacity .3s;
}
.service-card:hover .card-accent, .bento-card:hover .card-accent, .service-card:hover .bento-fill { opacity: 1; }
.card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.5rem; }
.icon-box { width: 56px; height: 56px; border-radius: 1rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(0,0,0,.3); transition: transform .3s; }
.service-card:hover .icon-box { transform: scale(1.1); }
.card-num { font-size: 3rem; font-weight: 900; color: rgba(255,255,255,.04); line-height: 1; user-select: none; transition: color .3s; }
.service-card:hover .card-num { color: rgba(255,255,255,.08); }
.card-title { font-size: 1.25rem; font-weight: 700; margin-bottom: .75rem; }
.card-desc { color: #9ca3af; font-size: .9rem; line-height: 1.6; }
.card-link { margin-top: 1.5rem; display: flex; align-items: center; gap: .5rem; color: #4b5563; font-size: .875rem; font-weight: 500; transition: color .3s; }
.service-card:hover .card-link { color: #60a5fa; }
.arrow { transition: transform .3s; display: inline-block; }
.service-card:hover .arrow { transform: translateX(4px); }

/* ===== WHY CHOOSE US ===== */
.whyus { padding: 8rem 0; position: relative; overflow: hidden; }
.whyus-blob { position: absolute; width: 24rem; height: 24rem; border-radius: 999px; filter: blur(90px); }
.whyus-blob-r { top: 25%; right: 0; background: rgba(168,85,247,.1); }
.whyus-blob-l { bottom: 25%; left: 0; background: rgba(59,130,246,.1); }
.bento-grid { position: relative; z-index: 10; display: grid; grid-template-columns: 1fr; gap: 1.25rem; max-width: 72rem; margin: 0 auto; }
@media (min-width: 768px) { .bento-grid { grid-template-columns: repeat(3, 1fr); } }
.bento-card {
  position: relative; padding: 2rem; border-radius: 1rem; height: 100%;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(6px); transition: all .3s; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between; gap: 1.5rem;
}
.bento-card:hover { border-color: rgba(255,255,255,.2); transform: translateY(-6px); }
@media (min-width: 768px) { .bento-large { grid-column: span 2; } }
.bento-fill { position: absolute; inset: 0; opacity: 0; transition: opacity .5s; border-radius: 1rem; filter: opacity(.07); mix-blend-mode: normal; }
.bento-card:hover .bento-fill { opacity: .07; }
.icon-box-md { width: 48px; height: 48px; border-radius: .75rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; box-shadow: 0 8px 24px rgba(0,0,0,.3); transition: transform .3s; }
.bento-card:hover .icon-box-md { transform: scale(1.1); }
.bento-title { font-size: 1.25rem; font-weight: 700; margin-bottom: .75rem; }
.bento-desc { color: #9ca3af; font-size: .9rem; line-height: 1.6; }
.bento-stat { display: flex; align-items: flex-end; gap: .75rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.1); position: relative; z-index: 2; }
.bento-stat span:first-child { font-size: 1.875rem; font-weight: 900; }
.bento-stat-label { font-size: .75rem; color: #6b7280; margin-bottom: .25rem; }
.pillars-strip { position: relative; z-index: 10; margin-top: 2rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 72rem; margin-left: auto; margin-right: auto; }
@media (min-width: 768px) { .pillars-strip { grid-template-columns: repeat(4, 1fr); } }
.pillar-item { display: flex; align-items: center; gap: .75rem; padding: 1rem; border-radius: .75rem; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.1); }
.pillar-icon { width: 32px; height: 32px; border-radius: .5rem; background: linear-gradient(135deg, rgba(168,85,247,.2), rgba(236,72,153,.2)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pillar-item span { font-size: .875rem; color: #d1d5db; font-weight: 500; }
.stats-row { position: relative; z-index: 10; margin-top: 1.5rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 72rem; margin-left: auto; margin-right: auto; }
@media (min-width: 768px) { .stats-row { grid-template-columns: repeat(4, 1fr); } }
.stat-box { text-align: center; padding: 1.5rem; border-radius: .75rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); }
.stat-box-value { font-size: 1.875rem; font-weight: 900; margin-bottom: .25rem; }
@media (min-width: 768px) { .stat-box-value { font-size: 2.25rem; } }
.stat-box-label { font-size: .75rem; color: #6b7280; text-transform: uppercase; letter-spacing: .05em; }

/* ===== CASE STUDIES ===== */
.case-studies { padding: 8rem 0; position: relative; overflow: hidden; }
.cs-blob { position: absolute; width: 24rem; height: 24rem; border-radius: 999px; filter: blur(90px); }
.cs-blob-l { top: 0; left: 25%; background: rgba(34,211,238,.1); }
.cs-blob-r { bottom: 0; right: 25%; background: rgba(236,72,153,.1); }
.cases-grid { position: relative; z-index: 10; display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 64rem; margin: 0 auto; }
@media (min-width: 768px) { .cases-grid { grid-template-columns: repeat(2, 1fr); } }
.case-card { cursor: pointer; }
.case-card > .case-img-wrap { border-radius: 1rem 1rem 0 0; }
.case-content, .case-img-wrap { background: rgba(255,255,255,.05); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.1); }
.case-img-wrap { position: relative; height: 16rem; overflow: hidden; border-bottom: none; }
.case-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.case-card:hover .case-img { transform: scale(1.1); }
.case-card:hover .case-img-wrap, .case-card:hover .case-content { border-color: rgba(255,255,255,.2); }
.case-img-fade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.8), transparent); }
.case-tags { position: absolute; top: 1rem; left: 1rem; display: flex; flex-direction: column; gap: .5rem; }
.case-tag { padding: .25rem .75rem; border-radius: 999px; font-size: .75rem; font-weight: 600; color: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.3); width: fit-content; }
.case-tag-outline { padding: .25rem .75rem; border-radius: 999px; background: rgba(255,255,255,.1); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.2); font-size: .75rem; color: rgba(255,255,255,.8); width: fit-content; }
.case-content { border-top: none; border-radius: 0 0 1rem 1rem; padding: 1.5rem; }
.case-title { font-size: 1.5rem; margin-bottom: .5rem; }
.case-challenge { font-size: .875rem; color: #9ca3af; margin-bottom: 1rem; }
.case-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.1); }
.case-result { text-align: center; }
.case-metric { font-size: 1.25rem; margin-bottom: .25rem; font-weight: 700; }
.case-metric-label { font-size: .7rem; color: #6b7280; }
.cs-viewall { text-align: center; margin-top: 3rem; }

/* ===== PROCESS ===== */
.process { padding: 8rem 0; position: relative; overflow: hidden; background: linear-gradient(to bottom, transparent, rgba(255,255,255,.05), transparent); }
.process-grid { position: relative; z-index: 10; display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step { position: relative; }
.process-num-wrap { display: flex; justify-content: center; margin-bottom: 2rem; }
.process-num { width: 64px; height: 64px; border-radius: 999px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; font-weight: 700; position: relative; }
.process-card { padding: 1.5rem; border-radius: 1rem; background: rgba(255,255,255,.05); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.1); transition: all .3s; }
.process-step:hover .process-card { border-color: rgba(255,255,255,.2); transform: translateY(-8px); }
.process-title { font-size: 1.5rem; margin-bottom: .75rem; }
.process-desc { color: #9ca3af; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 8rem 0; position: relative; overflow: hidden; }
.test-blob { position: absolute; width: 24rem; height: 24rem; border-radius: 999px; filter: blur(90px); }
.test-blob-l { top: 33%; left: 0; background: rgba(234,179,8,.1); }
.test-blob-r { bottom: 33%; right: 0; background: rgba(236,72,153,.1); }
.testimonials-grid { position: relative; z-index: 10; display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  position: relative; padding: 2rem; border-radius: 1rem; height: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,.1), rgba(255,255,255,.05));
  backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.1);
  transition: all .3s; display: flex; flex-direction: column;
}
.testimonial-card:hover { border-color: rgba(234,179,8,.3); transform: translateY(-8px); }
.quote-mark { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 4rem; color: rgba(234,179,8,.1); line-height: 1; }
.stars { color: #eab308; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-quote { color: #d1d5db; margin-bottom: 1.5rem; font-style: italic; flex-grow: 1; position: relative; z-index: 10; font-size: .95rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar { width: 48px; height: 48px; border-radius: 999px; object-fit: cover; box-shadow: 0 0 0 2px rgba(255,255,255,.1); }
.author-name { font-weight: 600; }
.author-role { font-size: .875rem; color: #9ca3af; }
.trust-indicators { position: relative; z-index: 10; margin-top: 4rem; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2rem; text-align: center; }
.trust-item { display: flex; align-items: center; gap: .5rem; color: #9ca3af; }
.trust-divider { width: 1px; height: 1.5rem; background: rgba(255,255,255,.1); }

/* ===== CTA ===== */
.cta-section { padding: 8rem 0; position: relative; overflow: hidden; }
.cta-bg-wash { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(37,99,235,.2), rgba(147,51,234,.2), rgba(219,39,119,.2)); }
.cta-blob { position: absolute; width: 24rem; height: 24rem; border-radius: 999px; filter: blur(90px); animation: pulse 3s ease-in-out infinite; }
.cta-blob-1 { top: 0; left: 25%; background: rgba(59,130,246,.3); }
.cta-blob-2 { bottom: 0; right: 25%; background: rgba(168,85,247,.3); }
.cta-blob-3 { top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 600px; background: rgba(236,72,153,.1); }
.cta-box { position: relative; max-width: 56rem; margin: 0 auto; }
.cta-content, .cta-box { border-radius: 1.5rem; }
.cta-box { padding: 3rem 1.5rem; background: linear-gradient(135deg,#2563eb,#9333ea,#4338ca); overflow: hidden; position: relative; z-index: 10; }
@media (min-width: 768px) { .cta-box { padding: 4rem; } }
.cta-blob-deco { position: absolute; width: 18rem; height: 18rem; border-radius: 999px; filter: blur(60px); }
.cta-blob-deco-1 { top: 0; right: 0; background: rgba(255,255,255,.1); }
.cta-blob-deco-2 { bottom: 0; left: 0; background: rgba(236,72,153,.2); }
.cta-content { position: relative; z-index: 10; text-align: center; }
.service-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-bottom: 2rem; }
.service-pill { display: flex; align-items: center; gap: .4rem; padding: .4rem .8rem; border-radius: 999px; background: rgba(255,255,255,.15); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.2); font-size: .875rem; color: rgba(255,255,255,.9); }
.cta-title { font-size: 2.25rem; font-weight: 700; margin-bottom: 1rem; line-height: 1.2; }
@media (min-width: 768px) { .cta-title { font-size: 3.75rem; } }
.cta-yellow { color: #fde047; }
.cta-sub { font-size: 1.1rem; color: rgba(255,255,255,.85); margin-bottom: 2.5rem; max-width: 42rem; margin-left: auto; margin-right: auto; line-height: 1.6; }
@media (min-width: 768px) { .cta-sub { font-size: 1.25rem; } }
.cta-buttons { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
@media (min-width: 640px) { .cta-buttons { flex-direction: row; } }
.cta-trust-badges { margin-top: 2.5rem; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1.5rem; font-size: .875rem; color: rgba(255,255,255,.8); }
.cta-badge { display: flex; align-items: center; gap: .5rem; }

/* ===== FOOTER ===== */
.footer { position: relative; border-top: 1px solid rgba(255,255,255,.1); background: rgba(0,0,0,.5); backdrop-filter: blur(6px); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; padding: 4rem 0 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(5, 1fr); } }
.footer-brand { }
@media (min-width: 1024px) { .footer-brand { grid-column: span 2; } }
.footer-logo { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.footer-logo .logo-ring img { height: 56px; width: 56px; }
.footer-tagline { margin-bottom: 1.5rem; max-width: 24rem; font-weight: 500; }
.footer-contact { display: flex; flex-direction: column; gap: .75rem; font-size: .875rem; color: #9ca3af; }
.footer-contact-item { display: flex; align-items: center; gap: .75rem; }
.footer-contact-item a:hover { color: #fff; }
.footer-col h4 { font-weight: 600; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .75rem; }
.footer-col a { color: #9ca3af; font-size: .875rem; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1); padding-bottom: 2.5rem; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1.5rem; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-copy { font-size: .875rem; color: #6b7280; }
.footer-social { display: flex; align-items: center; gap: 1rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: #9ca3af; transition: all .3s; }
.footer-social a:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #fff; }
.footer-newsletter { display: flex; gap: .5rem; }
.footer-newsletter input { padding: .5rem 1rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 999px; font-size: .875rem; color: #fff; outline: none; transition: border-color .2s; width: 180px; }
.footer-newsletter input:focus { border-color: rgba(59,130,246,.5); }
.footer-newsletter input::placeholder { color: #6b7280; }
.footer-newsletter button { padding: .5rem 1.5rem; background: linear-gradient(90deg,#2563eb,#9333ea); border-radius: 999px; font-size: .875rem; font-weight: 600; color: #fff; transition: box-shadow .3s; }
.footer-newsletter button:hover { box-shadow: 0 10px 30px rgba(59,130,246,.5); }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ===== CONTACT / BLOG PAGES (shared secondary hero) ===== */
.contact-hero { position: relative; min-height: 60vh; display: flex; align-items: center; justify-content: center; overflow: hidden; padding-top: 140px; padding-bottom: 5rem; }
.contact-hero-inner { position: relative; z-index: 10; max-width: 48rem; margin: 0 auto; text-align: center; }
.contact-hero-title { font-size: 2.25rem; font-weight: 800; line-height: 1.15; margin-bottom: 1.25rem; }
@media (min-width: 768px) { .contact-hero-title { font-size: 3.5rem; } }
.contact-hero-sub { font-size: 1.15rem; color: #9ca3af; }
.nav-desktop a.active-link { color: #fff; }

/* ===== CONTACT MAIN ===== */
.contact-main { padding: 2rem 0 6rem; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; max-width: 72rem; margin: 0 auto; }
@media (min-width: 968px) { .contact-grid { grid-template-columns: 0.85fr 1.15fr; } }
.contact-info-title { font-size: 1.875rem; font-weight: 700; margin: 1rem 0 .75rem; }
.contact-info-sub { color: #9ca3af; margin-bottom: 2rem; line-height: 1.6; }
.contact-info-list { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info-icon { width: 44px; height: 44px; border-radius: .75rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 8px 20px rgba(0,0,0,.3); }
.contact-info-label { font-size: .8rem; color: #6b7280; margin-bottom: .15rem; }
.contact-info-value { font-weight: 600; color: #fff; }
a.contact-info-value:hover { color: #60a5fa; }
.contact-social { display: flex; gap: .75rem; }
.contact-social a { width: 40px; height: 40px; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: #9ca3af; transition: all .3s; }
.contact-social a:hover { background: rgba(255,255,255,.1); color: #fff; }

.contact-form-wrap { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 1.25rem; padding: 2rem; backdrop-filter: blur(6px); }
@media (min-width: 640px) { .contact-form-wrap { padding: 2.5rem; } }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: .5rem; }
.form-field:not(.form-row .form-field) { margin-bottom: 1.25rem; }
.form-field label { font-size: .85rem; color: #d1d5db; font-weight: 500; }
.form-field input, .form-field select, .form-field textarea {
  padding: .75rem 1rem; border-radius: .6rem;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.15);
  color: #fff; font-size: .9rem; outline: none; transition: border-color .2s;
  font-family: inherit;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: #6366f1; }
.form-field textarea { resize: vertical; }
.form-field select { cursor: pointer; }
.form-field select option { background: #18181b; color: #fff; }
.form-submit { width: 100%; justify-content: center; margin-top: .5rem; }
.form-status { margin-top: 1rem; font-size: .875rem; text-align: center; }
.form-status-error { color: #f87171; }

/* ===== FAQ ===== */
.contact-faq { padding: 2rem 0 8rem; }
.faq-list { max-width: 42rem; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: .9rem; overflow: hidden; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; text-align: left; font-weight: 600; font-size: .95rem; }
.faq-chevron { transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 1.5rem 1.25rem; color: #9ca3af; font-size: .9rem; line-height: 1.6; }

/* ===== BLOG LISTING ===== */
.blog-section { padding: 2rem 0 6rem; }
.blog-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; max-width: 80rem; margin: 0 auto; }
@media (min-width: 968px) { .blog-layout { grid-template-columns: 1fr 300px; } }
.blog-search { display: flex; gap: .5rem; margin-bottom: 2rem; }
.blog-search input { flex: 1; padding: .75rem 1rem; border-radius: .6rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.15); color: #fff; font-size: .9rem; outline: none; }
.blog-search input:focus { border-color: #6366f1; }
.blog-search button { width: 44px; border-radius: .6rem; background: linear-gradient(90deg,#2563eb,#9333ea); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 1.75rem; }
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
.blog-card { display: block; border-radius: 1rem; overflow: hidden; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); transition: all .3s; }
.blog-card:hover { border-color: rgba(255,255,255,.2); transform: translateY(-6px); }
.blog-card-img-wrap { position: relative; height: 12rem; overflow: hidden; }
.blog-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-card-img-wrap img { transform: scale(1.08); }
.blog-card-tag { position: absolute; top: .85rem; left: .85rem; padding: .25rem .75rem; border-radius: 999px; background: linear-gradient(135deg,#3b82f6,#06b6d4); color: #fff; font-size: .7rem; font-weight: 600; }
.blog-card-body { padding: 1.25rem 1.5rem 1.5rem; }
.blog-card-date { font-size: .75rem; color: #6b7280; margin-bottom: .5rem; }
.blog-card-title { font-size: 1.1rem; font-weight: 700; margin-bottom: .6rem; line-height: 1.35; }
.blog-card-excerpt { font-size: .85rem; color: #9ca3af; line-height: 1.6; margin-bottom: .85rem; }
.blog-card-link { font-size: .8rem; font-weight: 600; color: #60a5fa; }
.blog-empty { text-align: center; padding: 4rem 1rem; color: #9ca3af; }
.blog-pagination { display: flex; justify-content: center; gap: .5rem; margin-top: 2.5rem; }
.blog-pagination a { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: .5rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); font-size: .85rem; color: #d1d5db; }
.blog-pagination a.active { background: linear-gradient(90deg,#2563eb,#9333ea); color: #fff; border-color: transparent; }

.blog-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.blog-widget { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 1rem; padding: 1.5rem; }
.blog-widget h4 { font-size: 1rem; margin-bottom: 1rem; }
.blog-cat-list { display: flex; flex-direction: column; gap: .5rem; }
.blog-cat-list a { display: flex; justify-content: space-between; padding: .5rem .6rem; border-radius: .5rem; color: #9ca3af; font-size: .875rem; }
.blog-cat-list a:hover { background: rgba(255,255,255,.05); color: #fff; }
.blog-cat-list a.active { background: rgba(59,130,246,.1); color: #60a5fa; }
.blog-cat-list a span { color: #6b7280; font-size: .8rem; }
.blog-widget-cta p { font-size: .85rem; color: #9ca3af; margin-bottom: 1rem; }

/* ===== SINGLE BLOG POST ===== */
.post-hero { position: relative; min-height: 40vh; display: flex; align-items: center; overflow: hidden; padding-top: 140px; padding-bottom: 3rem; }
.post-hero-inner { position: relative; z-index: 10; max-width: 48rem; margin: 0 auto; text-align: center; }
.post-title { font-size: 1.9rem; font-weight: 800; line-height: 1.25; margin-bottom: 1rem; }
@media (min-width: 768px) { .post-title { font-size: 2.75rem; } }
.post-meta { display: flex; align-items: center; justify-content: center; gap: .6rem; color: #6b7280; font-size: .875rem; }
.post-meta-dot { opacity: .5; }
.post-body-wrap { max-width: 48rem; margin: 0 auto; padding-bottom: 4rem; }
.post-featured-img { width: 100%; border-radius: 1rem; margin-bottom: 2.5rem; max-height: 26rem; object-fit: cover; }
.post-content { color: #d1d5db; font-size: 1.05rem; line-height: 1.85; }
.post-content h2 { font-size: 1.5rem; font-weight: 700; color: #fff; margin: 2rem 0 1rem; }
.post-content h3 { font-size: 1.25rem; font-weight: 700; color: #fff; margin: 1.75rem 0 .85rem; }
.post-content p { margin-bottom: 1.25rem; }
.post-content a { color: #60a5fa; text-decoration: underline; }
.post-content ul, .post-content ol { margin: 0 0 1.25rem 1.5rem; }
.post-content li { margin-bottom: .5rem; }
.post-content img { border-radius: .75rem; margin: 1.5rem 0; }
.post-content strong { color: #fff; }
.post-back { margin-top: 2.5rem; }
.post-related { max-width: 72rem; margin: 0 auto 6rem; }
.post-related h3 { font-size: 1.5rem; margin-bottom: 1.75rem; text-align: center; }
