/* ============================================================
   CENTRICORE HR — Premium Site Styles
   Direction: Premium Corporate — Gradients, Glass, Motion
   ============================================================ */

:root {
  /* Brand */
  --blue-50:  #f0f5ff;
  --blue-100: #dbe6ff;
  --blue-200: #c0d2ff;
  --blue-400: #5a8bff;
  --blue: #127BFF;
  --blue-600: #1f56cf;
  --blue-700: #1746af;
  --indigo: #4338ca;
  --violet: #6d28d9;

  /* Surfaces */
  --ink: #0a1226;
  --ink-2: #1a2333;
  --text: #2e3645;
  --muted: #5b6473;
  --muted-2: #8088a0;
  --line: #e6e9ef;
  --line-2: #eef1f6;
  --white: #ffffff;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #2c6bf2 0%, #5a8bff 100%);
  --grad-deep:    linear-gradient(135deg, #0a1226 0%, #1a2954 45%, #2c6bf2 100%);
  --grad-rich:    linear-gradient(135deg, #1a2954 0%, #2c6bf2 50%, #5a8bff 100%);
  --grad-soft:    linear-gradient(135deg, #f0f5ff 0%, #e8efff 50%, #f5f8ff 100%);
  --grad-text:    linear-gradient(135deg, #2c6bf2 0%, #5a8bff 50%, #7aa3ff 100%);
  --grad-text-light: linear-gradient(135deg, #ffffff 0%, #c8d8ff 100%);

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(15, 30, 80, 0.04);
  --shadow-md: 0 10px 30px rgba(15, 30, 80, 0.06);
  --shadow-lg: 0 30px 60px rgba(15, 30, 80, 0.10);
  --shadow-blue: 0 14px 32px rgba(44, 107, 242, 0.30);
  --shadow-blue-strong: 0 20px 50px rgba(44, 107, 242, 0.40);
  --shadow-glow: 0 0 60px rgba(44, 107, 242, 0.25);

  /* Layout */
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Fonts */
  --font-display: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Helpers ---------- */
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.grad-text-light {
  background: var(--grad-text-light);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.white-heading { color: #fff; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* Grid pattern (reusable) */
.grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(44, 107, 242, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 107, 242, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.grid-pattern-light {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 20%, transparent 70%);
}

/* Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn i {
  width: 24px; height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
  transition: transform 0.3s ease;
}
.btn:hover i { transform: translateX(3px); }
.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #5a8bff 0%, #2c6bf2 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-blue-strong); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary > * { position: relative; z-index: 1; }

.btn-ghost {
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink-2);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.btn-ghost i { background: var(--blue-50); color: var(--blue); }
.btn-ghost:hover { background: #fff; border-color: var(--blue-200); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-white {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 14px 32px rgba(0,0,0,0.18);
}
.btn-white i { background: var(--blue); color: #fff; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(0,0,0,0.25); }

.btn-glass {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
}
.btn-glass:hover { background: rgba(255, 255, 255, 0.2); border-color: rgba(255, 255, 255, 0.4); }

.btn-block { width: 100%; justify-content: center; }

/* ---------- Announcement Bar ---------- */
.announcement {
  background: var(--grad-deep);
  color: #fff;
  font-size: 13px;
  padding: 10px 0;
  position: relative;
  overflow: hidden;
}
.announcement::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(90, 139, 255, 0.25) 50%, transparent 100%);
  animation: sweep 8s infinite;
}
@keyframes sweep { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}
.announcement strong { color: #b8d0ff; font-weight: 600; }
.pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(230, 233, 239, 0.6);
  transition: all 0.3s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(15, 30, 80, 0.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--ink);
  font-weight: 600;
  line-height: 1;
}
.logo-img {
  display: block;
  height: 38px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
.site-header.scrolled .logo-img { height: 34px; transition: height 0.25s ease; }
.logo-img { transition: height 0.25s ease; }
.logo-mark { display: inline-flex; }
.logo-text strong {
  font-weight: 700;
  background: var(--grad-primary);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-desktop a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  padding: 8px 2px;
  transition: color 0.2s;
}
.nav-desktop a:hover { color: var(--blue); }
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 2px;
}
.nav-desktop a:hover::after { transform: scaleX(1); }
.desktop-cta { padding: 12px 22px; font-size: 14px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.2s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--line-2);
}
.mobile-menu a {
  padding: 12px 8px;
  font-weight: 500;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line-2);
}
.mobile-menu a:last-child { border: none; margin-top: 12px; justify-content: center; }
.mobile-menu.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--grad-soft);
  overflow: hidden;
  padding: 80px 0 60px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg .orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, #c0d2ff 0%, transparent 70%); top: -150px; right: -100px; opacity: 0.7; }
.hero-bg .orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, #a4c0ff 0%, transparent 70%); bottom: -100px; left: -150px; opacity: 0.5; }
.hero-bg .orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, #d6b8ff 0%, transparent 70%); top: 30%; left: 40%; opacity: 0.3; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(44, 107, 242, 0.15);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 14px rgba(44, 107, 242, 0.08);
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  position: relative;
}
.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.4;
  animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.6); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

.hero-text h1 {
  font-size: clamp(34px, 4.8vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
}
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(44, 107, 242, 0.12);
}
.stat-num {
  font-family: var(--font-display);
  color: var(--blue);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  background: var(--grad-text);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.stat-label { font-size: 13px; color: var(--muted); font-weight: 500; }

/* Hero visual — glass dashboard */
.hero-visual { position: relative; }
.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  height: 480px;
}
.glass-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border-radius: 20px;
}
.glass-main {
  top: 40px;
  left: 20px;
  right: 0;
  bottom: 40px;
  padding: 24px;
  animation: float-main 6s ease-in-out infinite;
}
.glass-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 18px;
}
.glass-dots { display: flex; gap: 5px; }
.glass-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(0,0,0,0.12);
}
.glass-dots span:first-child { background: #ff5f57; }
.glass-dots span:nth-child(2) { background: #febc2e; }
.glass-dots span:last-child { background: #28c840; }
.glass-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  margin-left: auto;
  letter-spacing: 0.02em;
}
.metric-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.metric {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.metric-label { display: block; font-size: 11px; color: var(--muted); font-weight: 500; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.04em; }
.metric-val { display: block; font-size: 22px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.metric-val.accent { color: var(--blue); }
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
  padding: 4px 0;
}
.chart-bars span {
  flex: 1;
  background: var(--grad-primary);
  border-radius: 6px 6px 2px 2px;
  height: var(--h);
  transition: height 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  box-shadow: 0 4px 12px rgba(44, 107, 242, 0.25);
}
.chart-bars span::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(180deg, rgba(255,255,255,0.4), transparent);
  border-radius: 6px 6px 0 0;
}
.chart-foot { display: flex; justify-content: space-around; margin-top: 10px; font-size: 11px; color: var(--muted); font-weight: 500; }

.glass-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
}
.glass-mini i {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--grad-primary);
  color: #fff;
  border-radius: 10px;
  font-size: 15px;
  box-shadow: 0 6px 16px rgba(44, 107, 242, 0.3);
}
.mini-title { font-size: 13px; font-weight: 600; color: var(--ink); }
.mini-sub { font-size: 11px; color: var(--muted); }
.check-dot {
  margin-left: auto;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #10b981;
  color: #fff;
  font-size: 10px;
  display: inline-flex; align-items: center; justify-content: center;
}
.glass-mini-1 {
  top: 0; left: 0;
  width: 220px;
  animation: float-1 5s ease-in-out infinite;
}
.glass-mini-2 {
  bottom: 0; right: 30px;
  width: 220px;
  animation: float-2 7s ease-in-out infinite;
}
@keyframes float-main { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes float-1 { 0%,100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(8px) translateX(-4px); } }
@keyframes float-2 { 0%,100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-12px) translateX(6px); } }

/* ============================================================
   VALUE PROPS
   ============================================================ */
.value-props {
  padding: 56px 0;
  background: linear-gradient(180deg, #fff 0%, #f7f9ff 100%);
  position: relative;
}
.value-duo {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  padding: 36px 48px;
  background: #fff;
  border: 1px solid rgba(44, 107, 242, 0.1);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(15, 30, 80, 0.06);
  position: relative;
  overflow: hidden;
}
.value-duo::before {
  content: "";
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(18, 123, 255, 0.06) 0%, transparent 65%);
  pointer-events: none;
}
.value-block {
  display: flex;
  align-items: center;
  gap: 22px;
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.value-block:hover { transform: translateY(-3px); }
.value-icon-wrap {
  position: relative;
  flex-shrink: 0;
}
.value-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--grad-primary);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 10px 24px rgba(18, 123, 255, 0.3);
  position: relative;
  z-index: 2;
}
.value-icon i,
.value-icon svg { color: #fff !important; }
.value-icon-glow {
  position: absolute;
  inset: -10px;
  border-radius: 22px;
  background: var(--grad-primary);
  filter: blur(18px);
  opacity: 0.25;
  z-index: 1;
  transition: opacity 0.4s ease;
}
.value-block:hover .value-icon-glow { opacity: 0.45; }
.value-content h3 {
  font-size: 19px;
  font-weight: 800;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.value-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  max-width: 340px;
}
.value-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent 0%, rgba(44, 107, 242, 0.25) 50%, transparent 100%);
  position: relative;
  z-index: 1;
}

/* ============================================================
   SECTION HEAD
   ============================================================ */
.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 64px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--blue);
  background: rgba(44, 107, 242, 0.08);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
  border: 1px solid rgba(44, 107, 242, 0.12);
}
.eyebrow i { font-size: 11px; }
.eyebrow-on-dark {
  color: #b8d0ff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}
.section-head h2 {
  font-size: clamp(30px, 3.8vw, 48px);
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.025em;
}
.section-head p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
  overflow: hidden;
}
.services-bg { position: absolute; inset: 0; pointer-events: none; }
.orb-svc-1 { width: 500px; height: 500px; background: radial-gradient(circle, #d4e0ff 0%, transparent 70%); top: 10%; right: -200px; }
.orb-svc-2 { width: 400px; height: 400px; background: radial-gradient(circle, #e8d4ff 0%, transparent 70%); bottom: 10%; left: -150px; opacity: 0.4; }

.services-shell {
  position: relative;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.services-tabs { display: flex; flex-direction: column; gap: 8px; }
.service-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  background: transparent;
  position: relative;
  overflow: hidden;
}
.tab-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(44, 107, 242, 0.08);
  color: var(--blue);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.tab-content { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.tab-title { font-size: 15px; font-weight: 700; color: var(--ink); }
.tab-sub { font-size: 12px; color: var(--muted); font-weight: 500; }
.tab-arrow {
  font-size: 12px;
  color: var(--muted-2);
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s ease;
}
.service-tab:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(2px);
}
.service-tab:hover .tab-arrow { opacity: 1; transform: translateX(0); }
.service-tab.active {
  background: var(--grad-primary);
  box-shadow: var(--shadow-blue);
  transform: translateX(4px);
}
.service-tab.active .tab-icon { background: rgba(255, 255, 255, 0.2); color: #fff; }
.service-tab.active .tab-title,
.service-tab.active .tab-sub,
.service-tab.active .tab-arrow { color: #fff; opacity: 1; transform: translateX(0); }
.service-tab.active .tab-sub { color: rgba(255, 255, 255, 0.85); }

.service-panel {
  background: #fff;
  border-radius: 20px;
  padding: 36px 40px;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}
.service-panel::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(44, 107, 242, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.service-content { display: none; position: relative; }
.service-content.active { display: block; animation: contentFade 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes contentFade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.panel-head { margin-bottom: 28px; }
.panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--grad-soft);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  border: 1px solid rgba(44, 107, 242, 0.12);
}
.panel-head h3 {
  font-size: 28px;
  margin-bottom: 12px;
  font-weight: 800;
}
.panel-head > p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}
.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.panel-feature {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  background: #f7f9ff;
  border-radius: 12px;
  border: 1px solid rgba(44, 107, 242, 0.08);
  transition: all 0.3s ease;
}
.panel-feature:hover {
  background: #fff;
  border-color: rgba(44, 107, 242, 0.2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.panel-feature > i {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--grad-primary);
  color: #fff;
  font-size: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(44, 107, 242, 0.25);
}
.panel-feature strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.panel-feature span {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}
.panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  padding: 12px 0;
  transition: all 0.3s ease;
}
.panel-cta:hover { gap: 14px; }
.panel-cta i { font-size: 11px; }

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(180deg, #f7f9ff 0%, #eef3ff 100%);
  overflow: hidden;
}
.process::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(44, 107, 242, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.stepper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
  position: relative;
}
.step {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 12px 18px;
  background: transparent;
  border-radius: 14px;
  transition: all 0.3s ease;
}
.step:hover { background: rgba(255, 255, 255, 0.5); }
.step-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted-2);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.step.active .step-num { color: var(--blue); }
.step-pill {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  border: 1px solid var(--line);
  transition: all 0.3s;
}
.step.active .step-pill {
  background: var(--grad-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(44, 107, 242, 0.3);
}
.step-label { font-weight: 700; font-size: 16px; color: var(--ink-2); }
.step-line {
  flex: 0 0 80px;
  height: 2px;
  background: var(--line);
  margin-top: 38px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.step-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}
.step-line.active::after { transform: scaleX(1); }

.process-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.8);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.process-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.process-decoration {
  position: absolute;
  top: -30px; right: -10px;
  font-size: 220px;
  font-weight: 800;
  font-family: var(--font-display);
  background: linear-gradient(135deg, rgba(44, 107, 242, 0.06) 0%, rgba(44, 107, 242, 0.01) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.05em;
}
.process-icon {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--grad-soft);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 22px;
  margin-bottom: 28px;
  border: 1px solid rgba(44, 107, 242, 0.1);
}
.process-icon .check {
  position: absolute;
  right: -6px; bottom: -6px;
  width: 22px; height: 22px;
  background: var(--grad-primary);
  color: #fff;
  font-size: 10px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(44, 107, 242, 0.3);
}
.process-left { position: relative; z-index: 1; }
.process-left h3 {
  font-size: 26px;
  margin-bottom: 18px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.process-left p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 440px;
}
.process-right {
  position: relative;
  z-index: 1;
  border-left: 2px solid rgba(44, 107, 242, 0.1);
  padding-left: 40px;
}
.outcome-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.outcome-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 22px;
}
.outcome-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--grad-primary);
  box-shadow: 0 4px 10px rgba(44, 107, 242, 0.25);
}
.outcome-list li::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 4px; top: 4px;
  width: 18px; height: 18px;
  font-size: 9px;
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.outcome-list li strong {
  display: block;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 15px;
}
.outcome-list li span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  position: relative;
  padding: 110px 0;
  background: var(--grad-deep);
  overflow: hidden;
}
.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  pointer-events: none;
}
.testimonials::after {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(90, 139, 255, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: blur(60px);
}
.testimonials .container { position: relative; z-index: 1; }

.testimonial-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  padding: 56px 60px 44px;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.testimonial-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.testimonial-bg-shapes span {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 139, 255, 0.3) 0%, transparent 70%);
  filter: blur(40px);
}
.testimonial-bg-shapes span:nth-child(1) { width: 240px; height: 240px; right: -60px; top: -80px; }
.testimonial-bg-shapes span:nth-child(2) { width: 320px; height: 320px; right: 200px; bottom: -160px; opacity: 0.6; }
.testimonial-bg-shapes span:nth-child(3) { width: 100px; height: 100px; right: 30%; top: 40%; }

.big-quote {
  position: absolute;
  top: 36px; left: 50px;
  font-size: 80px;
  color: rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.testimonial-track { position: relative; min-height: 200px; }
.testimonial-item {
  display: none;
  margin: 0;
}
.testimonial-item.active {
  display: block;
  animation: contentFade 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.testimonial-item p {
  font-size: 22px;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 32px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 16px rgba(44, 107, 242, 0.4);
}
.testimonial-author strong { display: block; color: #fff; margin-bottom: 2px; font-size: 15px; font-weight: 700; }
.testimonial-author span { color: rgba(255, 255, 255, 0.6); font-size: 13px; }

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dots .dot {
  width: 30px; height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.testimonial-dots .dot.active {
  background: var(--blue-400);
  box-shadow: 0 0 12px rgba(90, 139, 255, 0.5);
  width: 40px;
}
.testimonial-nav { display: flex; gap: 10px; }
.circle-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
  font-size: 14px;
}
.circle-btn.glass {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  backdrop-filter: blur(10px);
}
.circle-btn.glass:hover { background: rgba(255, 255, 255, 0.18); transform: scale(1.05); }
.circle-btn.solid {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.circle-btn.solid:hover { transform: scale(1.05); box-shadow: var(--shadow-blue-strong); }
.circle-btn.light {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}
.circle-btn.light:hover { transform: scale(1.05); border-color: var(--blue-200); }
.circle-btn.dark { background: var(--ink); color: #fff; }
.circle-btn.dark:hover { background: var(--blue); transform: scale(1.05); }

/* ============================================================
   BLOGS
   ============================================================ */
.blogs { padding: 110px 0; background: #fff; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  border: 1px solid var(--line);
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(44, 107, 242, 0.15);
}
.blog-thumb {
  height: 220px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.blog-thumb[data-thumb="1"] { background: linear-gradient(135deg, #4338ca 0%, #2c6bf2 50%, #5a8bff 100%); }
.blog-thumb[data-thumb="2"] { background: linear-gradient(135deg, #0a1226 0%, #1a2954 60%, #2c6bf2 100%); }
.blog-thumb[data-thumb="3"] { background: linear-gradient(135deg, #2c6bf2 0%, #6d28d9 100%); }
.thumb-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255,255,255,0.08) 0%, transparent 50%);
}
.thumb-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.5;
  pointer-events: none;
}
.thumb-orb-1 {
  width: 130px; height: 130px;
  background: rgba(255, 255, 255, 0.35);
  top: -30px; right: -20px;
}
.thumb-orb-2 {
  width: 100px; height: 100px;
  background: rgba(255, 255, 255, 0.25);
  bottom: -25px; left: -10px;
}
.blog-thumb-svg {
  position: relative;
  z-index: 1;
  width: 92%;
  height: 88%;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.18));
}
.blog-card:hover .blog-thumb-svg { transform: scale(1.05) translateY(-4px); }
/* keep old class so any leftover icon doesn't break */
.blog-thumb-icon {
  font-size: 64px;
  color: rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-thumb-icon { transform: scale(1.1); }
.blog-tag {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
  text-transform: uppercase;
}
.blog-body { padding: 24px 26px 26px; }
.blog-meta {
  display: flex; gap: 8px;
  align-items: center;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 12px;
}
.blog-meta i { font-size: 11px; opacity: 0.6; margin-right: 4px; }
.blog-meta .author { color: var(--blue); font-weight: 600; }
.blog-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.blog-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
}
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  transition: all 0.3s ease;
}
.read-more:hover { gap: 14px; }
.read-more i { font-size: 11px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { padding: 60px 0 100px; background: #fff; }
.cta-inner {
  position: relative;
  background: var(--grad-deep);
  border-radius: var(--radius-xl);
  padding: 80px 40px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(10, 18, 38, 0.3);
}
.cta-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-bg-shapes span {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 139, 255, 0.4) 0%, transparent 70%);
  filter: blur(40px);
}
.cta-bg-shapes span:nth-child(1) { width: 380px; height: 380px; right: -100px; top: -120px; }
.cta-bg-shapes span:nth-child(2) { width: 280px; height: 280px; left: -80px; bottom: -100px; opacity: 0.6; }
.cta-bg-shapes span:nth-child(3) { width: 120px; height: 120px; left: 30%; top: 30%; opacity: 0.7; }
.cta-bg-shapes span:nth-child(4) { width: 80px; height: 80px; right: 25%; bottom: 30%; }

.cta-inner > * { position: relative; z-index: 1; }
.cta-inner h2 {
  color: #fff;
  font-size: clamp(28px, 3.6vw, 46px);
  margin-bottom: 18px;
  font-weight: 800;
  letter-spacing: -0.025em;
}
.cta-inner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: 60px 0 110px; background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { font-size: clamp(28px, 3.4vw, 42px); margin: 16px 0 18px; font-weight: 800; letter-spacing: -0.025em; }
.contact-info > p { color: var(--muted); margin-bottom: 36px; max-width: 420px; line-height: 1.7; font-size: 16px; }
.contact-list { display: flex; flex-direction: column; gap: 16px; }
.contact-list li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 18px;
  background: #f7f9ff;
  border: 1px solid rgba(44, 107, 242, 0.08);
  border-radius: 14px;
  transition: all 0.3s ease;
}
.contact-list li:hover {
  background: #fff;
  border-color: rgba(44, 107, 242, 0.2);
  box-shadow: var(--shadow-sm);
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad-primary);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
  box-shadow: 0 6px 16px rgba(44, 107, 242, 0.25);
}
.contact-icon i,
.contact-icon svg { color: #fff !important; }
.contact-list li strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.contact-list li span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.contact-form {
  position: relative;
  background: #fff;
  border: 1px solid rgba(44, 107, 242, 0.12);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.contact-form > * { position: relative; z-index: 1; }

/* Form header band - now a solid bar at the top */
.form-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(18, 123, 255, 0.05) 0%, rgba(110, 168, 255, 0.04) 100%);
  border-bottom: 1px solid rgba(44, 107, 242, 0.1);
  margin: 0;
}
.form-header-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--grad-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(18, 123, 255, 0.3);
  flex-shrink: 0;
}
.form-header-icon i,
.form-header-icon svg { color: #fff !important; }
.form-header-text { display: flex; flex-direction: column; gap: 3px; }
.contact-form h3 {
  font-size: 20px;
  margin: 0;
  font-weight: 800;
  line-height: 1.2;
}
.form-sub {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* Form body padding */
.contact-form .row.two,
.contact-form > label,
.contact-form > button,
.contact-form > p.form-feedback {
  margin-left: 32px;
  margin-right: 32px;
}
.contact-form .row.two:first-of-type,
.contact-form > label:first-of-type {
  margin-top: 28px;
}
.contact-form > button { margin-top: 8px; }
.contact-form > p.form-feedback { margin-bottom: 32px; }
.contact-form label {
  display: block;
  margin-bottom: 18px;
}
.contact-form label > span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  transition: all 0.3s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #aab2c2; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(44, 107, 242, 0.12);
}
.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%235b6473'%3E%3Cpath d='M5.5 8l4.5 4.5L14.5 8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 40px;
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form .row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form .row.two label { margin-bottom: 18px; }
.form-feedback {
  margin-top: 16px;
  font-size: 14px;
  color: var(--blue);
  min-height: 18px;
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  background: var(--grad-deep);
  color: #cdd6e7;
  padding-top: 80px;
  overflow: hidden;
}
.footer-bg { position: absolute; inset: 0; pointer-events: none; opacity: 0.4; }
.grid-pattern-footer {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(90, 139, 255, 0.2) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}
.site-footer .container { position: relative; z-index: 1; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand .logo { margin-bottom: 18px; align-items: center; gap: 12px; }
.footer-logo .logo-mark-img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(18, 123, 255, 0.4));
}
.footer-brand-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1;
}
.footer-brand-text span {
  background: linear-gradient(135deg, #6ea8ff 0%, #c0d2ff 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 2px;
}
.footer-brand > p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 360px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.3s ease;
}
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }
.footer-contact-list { font-size: 14px; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}
.footer-contact-list li i {
  color: var(--blue-400);
  margin-top: 5px;
  width: 16px;
  flex-shrink: 0;
}

.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}
.socials a:hover {
  background: var(--grad-primary);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.footer-legal a:hover { color: #fff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-card-stack { margin: 0 auto; max-width: 460px; }
  .services-shell { grid-template-columns: 1fr; }
  .value-duo { padding: 30px 36px; gap: 28px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .process-card { grid-template-columns: 1fr; gap: 30px; padding: 36px; }
  .process-right { border-left: none; border-top: 2px solid rgba(44, 107, 242, 0.1); padding-left: 0; padding-top: 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .announcement { font-size: 12px; padding: 8px 0; }
  .announcement strong { display: inline; }
  .nav-desktop, .desktop-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 50px 0 50px; }
  .hero-text h1 { font-size: 36px; }
  .hero-stats { grid-template-columns: 1fr; gap: 16px; margin-top: 36px; padding-top: 28px; }
  .hero-card-stack { height: 380px; }
  .glass-main { left: 10px; }
  .glass-mini-1 { width: 180px; }
  .glass-mini-2 { width: 180px; right: 10px; }
  .value-props { padding: 40px 0; }
  .value-duo {
    grid-template-columns: 1fr;
    padding: 26px 22px;
    gap: 22px;
  }
  .value-block { gap: 16px; }
  .value-divider {
    width: 60%;
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent 0%, rgba(44, 107, 242, 0.25) 50%, transparent 100%);
  }
  .value-content h3 { font-size: 17px; }
  .value-content p { font-size: 13px; }
  .services { padding: 80px 0; }
  .services-shell { padding: 16px; gap: 12px; }
  .service-panel { padding: 28px 22px; min-height: auto; }
  .service-tab { padding: 14px 16px; }
  .tab-title { font-size: 14px; }
  .tab-sub { font-size: 11px; }
  .panel-head h3 { font-size: 22px; }
  .panel-grid { grid-template-columns: 1fr; gap: 12px; }
  .process { padding: 80px 0; }
  .process-card { padding: 28px 24px; }
  .process-decoration { font-size: 140px; }
  .stepper { gap: 4px; }
  .step { padding: 8px; }
  .step-line { flex: 0 0 16px; margin-top: 30px; }
  .step-num { font-size: 10px; }
  .step-label { font-size: 13px; }
  .step-pill { font-size: 10px; padding: 4px 10px; }
  .testimonials { padding: 70px 0; }
  .testimonial-card { padding: 40px 28px 32px; }
  .testimonial-item p { font-size: 17px; }
  .big-quote { font-size: 60px; top: 24px; left: 24px; }
  .blogs { padding: 70px 0; }
  .blog-grid { grid-template-columns: 1fr; }
  .cta-inner { padding: 56px 28px; }
  .cta-banner { padding: 30px 0 60px; }
  .contact { padding: 30px 0 70px; }
  .contact-form { padding: 0; }
  .contact-form .form-header { padding: 20px 22px; }
  .contact-form .form-header-icon { width: 42px; height: 42px; font-size: 16px; border-radius: 11px; }
  .contact-form h3 { font-size: 18px; }
  .contact-form .row.two,
  .contact-form > label,
  .contact-form > button,
  .contact-form > p.form-feedback {
    margin-left: 22px;
    margin-right: 22px;
  }
  .contact-form .row.two:first-of-type,
  .contact-form > label:first-of-type { margin-top: 22px; }
  .contact-form > p.form-feedback { margin-bottom: 22px; }
  .contact-form .row.two { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 14px; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: 28px; }
  .section-head p { font-size: 15px; }
  .btn { padding: 13px 22px; font-size: 14px; }
}

@media (max-width: 420px) {
  .container { padding: 0 18px; }
  .hero-text h1 { font-size: 30px; }
  .step-line { display: none; }
  .stepper { gap: 10px; flex-wrap: wrap; justify-content: center; }
  .hero-card-stack { height: 340px; max-width: 360px; }
  .glass-main { left: 0; right: 0; top: 30px; bottom: 30px; padding: 18px; }
  .glass-mini-1, .glass-mini-2 { width: 160px; }
  .glass-mini-1 { left: -10px; }
  .glass-mini-2 { right: -10px; }
}
