/* ╔══════════════════════════════════════════════════════╗
   ║  DIGI VIJAY — 3D UI DESIGN SYSTEM                   ║
   ║  styles.css — Shared Stylesheet                     ║
   ╚══════════════════════════════════════════════════════╝ */

/* ── CSS Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

/* ── Design Tokens ── */
:root {
  /* Backgrounds */
  --bg:      #030b18;
  --bg2:     #060f1e;
  --bg3:     #0a1628;
  --surface: rgba(10, 22, 40, 0.85);
  --glass:   rgba(14, 30, 58, 0.6);
  --glass2:  rgba(56, 189, 248, 0.06);

  /* Accents */
  --cyan:    #38bdf8;
  --cyan2:   #0ea5e9;
  --cyan3:   #0284c7;
  --purple:  #818cf8;
  --gold:    #f59e0b;
  --green:   #34d399;
  --red:     #f87171;

  /* Borders */
  --brd:     rgba(56, 189, 248, 0.15);
  --brd2:    rgba(56, 189, 248, 0.3);
  --brd3:    rgba(56, 189, 248, 0.5);

  /* Text */
  --text:    #e2e8f0;
  --text2:   #cbd5e1;
  --muted:   #64748b;
  --dim:     #334155;

  /* Glows */
  --glow:    0 0 40px rgba(56, 189, 248, 0.25);
  --glow2:   0 0 80px rgba(56, 189, 248, 0.15);
  --glow-p:  0 0 40px rgba(129, 140, 248, 0.25);

  /* Shadows */
  --shadow:  0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow2: 0 20px 60px rgba(0, 0, 0, 0.5);

  /* Gradients */
  --grad:  linear-gradient(135deg, #38bdf8, #818cf8);
  --grad2: linear-gradient(135deg, #0ea5e9, #0284c7);
  --grad3: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #f59e0b 100%);
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Bricolage Grotesque', sans-serif;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--cyan3); border-radius: 2px; }

/* ── Utility ── */
.con { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
section { padding: 100px 0; }
.ctr { text-align: center; }
.ctr .sp { margin: 0 auto; }

/* ── Section Label ── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid var(--brd2);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
}
.label-dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.6); }
}

/* ── Section Headings ── */
.sh {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 14px;
  line-height: 1.08;
}
.sh .grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sp {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 580px;
}

/* ── Glow Text ── */
.glow-text {
  text-shadow: 0 0 30px rgba(56, 189, 248, 0.5), 0 0 60px rgba(56, 189, 248, 0.2);
}

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(3, 11, 24, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--brd);
  transition: all 0.3s ease;
}
#nav.scrolled {
  background: rgba(3, 11, 24, 0.97);
  border-color: var(--brd2);
  box-shadow: 0 4px 40px rgba(56, 189, 248, 0.08);
}
.nw {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; transition: transform 0.3s; }
.logo:hover { transform: scale(1.03); }
.logo-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(56,189,248,0.15), rgba(14,165,233,0.25));
  border: 1px solid var(--brd2);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 0 20px rgba(56,189,248,0.2);
  position: relative;
  overflow: hidden;
}
.logo-icon::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(56,189,248,0.15) 0%, transparent 60%);
  animation: logo-glow 3s ease-in-out infinite;
}
@keyframes logo-glow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
.logo-text strong {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 900;
  background: linear-gradient(135deg, #38bdf8, #818cf8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}
.logo-text span {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Nav Links */
.nl { display: flex; align-items: center; gap: 4px; }
.nl a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
  position: relative;
}
.nl a:hover { color: var(--cyan); background: rgba(56,189,248,0.06); }
.nl a.active { color: var(--cyan); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--cyan2), var(--cyan3));
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  box-shadow: 0 4px 20px rgba(14,165,233,0.35) !important;
  transition: all 0.25s !important;
  border: none;
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.nav-cta:hover { transform: translateY(-2px) !important; box-shadow: 0 8px 28px rgba(14,165,233,0.5) !important; }
.nav-cta:hover::before { opacity: 1; }

/* Mobile Nav */
.hbg {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid var(--brd);
  border-radius: 8px;
  padding: 10px;
  transition: border-color 0.2s;
}
.hbg:hover { border-color: var(--cyan); }
.hbg span { width: 20px; height: 1.5px; background: var(--text2); border-radius: 2px; transition: all 0.3s; display: block; }
.hbg.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hbg.open span:nth-child(2) { opacity: 0; }
.hbg.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mmenu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(3,11,24,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--brd2);
  padding: 20px 28px;
  z-index: 998;
}
.mmenu.open { display: block; }
.mmenu a { display: block; color: var(--text2); font-size: 15px; font-weight: 500; padding: 14px 0; border-bottom: 1px solid var(--brd); transition: color 0.2s; }
.mmenu a:hover { color: var(--cyan); }
.mmenu a:last-child { border-bottom: none; }
.mmenu .mc {
  margin-top: 16px;
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--cyan2), var(--cyan3));
  color: #fff !important;
  font-weight: 700;
  padding: 14px;
  border-radius: 12px;
  font-size: 15px;
  border-bottom: none !important;
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--cyan2), var(--cyan3));
  color: #fff;
  padding: 16px 34px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Bricolage Grotesque', sans-serif;
  border: none;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(14,165,233,0.35);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: -100%; left: -100%;
  width: 300%; height: 300%;
  background: conic-gradient(transparent 0deg, rgba(255,255,255,0.12) 60deg, transparent 120deg);
  animation: btn-sweep 3s linear infinite;
}
@keyframes btn-sweep { to { transform: rotate(360deg); } }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(14,165,233,0.5);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(56,189,248,0.08);
  color: var(--cyan);
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Bricolage Grotesque', sans-serif;
  border: 1px solid var(--brd2);
  transition: all 0.3s;
  backdrop-filter: blur(10px);
  cursor: pointer;
}
.btn-secondary:hover {
  background: rgba(56,189,248,0.14);
  border-color: var(--brd3);
  transform: translateY(-2px);
  box-shadow: var(--glow);
}

/* ══════════════════════════════════════
   HERO SECTION
══════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 130px 28px 80px;
  background: radial-gradient(ellipse 120% 80% at 50% 0%, rgba(14,165,233,0.08) 0%, transparent 60%),
              radial-gradient(ellipse 60% 60% at 80% 50%, rgba(129,140,248,0.06) 0%, transparent 50%),
              var(--bg);
}
#hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56,189,248,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, var(--bg) 0%, transparent 70%);
}
.hi {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 70px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(56,189,248,0.08);
  border: 1px solid var(--brd2);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  animation: badge-float 4s ease-in-out infinite;
}
@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.badge-pulse {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(34,197,94,0.6);
}
h1.ht {
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--text);
}
.h-grad {
  background: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #38bdf8 100%);
  background-size: 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: grad-shift 5s linear infinite;
}
@keyframes grad-shift {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.h-outline {
  -webkit-text-stroke: 2px rgba(56,189,248,0.6);
  color: transparent;
}
.hsub {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 38px;
}
.hbtns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.htrust { display: flex; gap: 20px; flex-wrap: wrap; }
.htr {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.htick {
  width: 22px; height: 22px;
  background: rgba(56,189,248,0.12);
  border: 1px solid var(--brd2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  font-size: 11px;
  flex-shrink: 0;
}

/* ── Hero 3D Dashboard ── */
.hero-3d {
  perspective: 1200px;
  position: relative;
}
.hero-dashboard {
  background: var(--surface);
  border: 1px solid var(--brd2);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), var(--glow2);
  transform: rotateY(-8deg) rotateX(4deg);
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.hero-dashboard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--purple), transparent);
}
.hero-3d:hover .hero-dashboard {
  transform: rotateY(0deg) rotateX(0deg) translateZ(20px);
}
.db-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.db-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 14px; font-weight: 800; color: var(--text); }
.db-live {
  display: flex; align-items: center; gap: 6px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  padding: 4px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 700; color: #22c55e;
}
.db-live-dot { width: 6px; height: 6px; background: #22c55e; border-radius: 50%; animation: pulse-dot 1.5s ease-in-out infinite; }
.db-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.db-stat {
  background: rgba(56,189,248,0.05);
  border: 1px solid var(--brd);
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
  transition: all 0.3s;
}
.db-stat:hover { border-color: var(--brd2); background: rgba(56,189,248,0.1); transform: translateY(-2px); }
.db-stat-val { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.5rem; font-weight: 900; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.db-stat-lbl { font-size: 10px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }
.db-services { display: flex; flex-direction: column; gap: 8px; }
.db-svc {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: rgba(56,189,248,0.04);
  border: 1px solid var(--brd);
  border-radius: 12px;
  transition: all 0.3s;
}
.db-svc:hover { border-color: var(--brd2); background: rgba(56,189,248,0.08); transform: translateX(4px); }
.db-svc-icon { width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.db-svc-name { font-size: 13px; font-weight: 700; color: var(--text2); flex: 1; }
.db-svc-badge { font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 20px; }
.badge-g { background: rgba(52,211,153,0.15); color: var(--green); border: 1px solid rgba(52,211,153,0.25); }
.badge-b { background: rgba(56,189,248,0.12); color: var(--cyan); border: 1px solid var(--brd2); }
.badge-y { background: rgba(245,158,11,0.12); color: var(--gold); border: 1px solid rgba(245,158,11,0.25); }
.badge-p { background: rgba(129,140,248,0.12); color: var(--purple); border: 1px solid rgba(129,140,248,0.25); }

/* Floating cards */
.float-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--brd2);
  border-radius: 14px;
  padding: 12px 16px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 700;
  color: var(--text2);
  white-space: nowrap;
}
.fc1 { top: -30px; right: -20px; animation: float1 6s ease-in-out infinite; }
.fc2 { bottom: -20px; left: -30px; animation: float2 5s ease-in-out infinite; }
@keyframes float1 { 0%,100%{transform:translateY(0) rotate(2deg)} 50%{transform:translateY(-12px) rotate(-1deg)} }
@keyframes float2 { 0%,100%{transform:translateY(0) rotate(-2deg)} 50%{transform:translateY(10px) rotate(1deg)} }
.fc-icon { font-size: 18px; display: block; margin-bottom: 4px; }
.fc-val { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.2rem; font-weight: 900; color: var(--cyan); }

/* ══════════════════════════════════════
   MARQUEE
══════════════════════════════════════ */
.marquee-wrap {
  overflow: hidden;
  background: linear-gradient(135deg, var(--cyan2), var(--cyan3));
  padding: 14px 0;
  position: relative;
}
.marquee-wrap::before, .marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--cyan2), transparent); }
.marquee-wrap::after { right: 0; background: linear-gradient(-90deg, var(--cyan3), transparent); }
.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.mq-item {
  padding: 0 28px;
  white-space: nowrap;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  display: flex; align-items: center; gap: 10px;
}
.mq-dot { color: rgba(255,255,255,0.4); font-size: 20px; }

/* ══════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════ */
#services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.svc-card {
  background: var(--glass);
  border: 1px solid var(--brd);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.15s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
  transform-style: preserve-3d;
  will-change: transform;
}
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(56,189,248,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.svc-card:hover::before { opacity: 1; }
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-card.featured {
  background: linear-gradient(135deg, rgba(56,189,248,0.1), rgba(129,140,248,0.06));
  border-color: var(--brd2);
}
.svc-card-inner { transform: translateZ(20px); }
.svc-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: rgba(56,189,248,0.1);
  border: 1px solid var(--brd2);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.svc-card:hover .svc-icon {
  transform: scale(1.15) rotate(-8deg);
  background: rgba(56,189,248,0.18);
  box-shadow: 0 0 20px rgba(56,189,248,0.3);
}
.svc-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--cyan2), var(--cyan3));
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.svc-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; color: var(--text); }
.svc-card p { font-size: 13px; color: var(--muted); line-height: 1.75; }
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  transition: gap 0.2s;
}
.svc-link:hover { gap: 10px; }

/* ══════════════════════════════════════
   WHY US SECTION
══════════════════════════════════════ */
#why { background: var(--bg2); position: relative; overflow: hidden; }
#why::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(129,140,248,0.06), transparent 70%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.why-points { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
.why-point {
  display: flex;
  gap: 18px;
  padding: 20px 22px;
  background: var(--glass);
  border: 1px solid var(--brd);
  border-radius: 16px;
  transition: all 0.3s;
}
.why-point:hover { border-color: var(--brd2); transform: translateX(8px); box-shadow: -4px 0 20px rgba(56,189,248,0.1); }
.why-num {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(56,189,248,0.1);
  border: 1px solid var(--brd2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: var(--cyan);
  flex-shrink: 0;
}
.why-point h4 { font-size: 15px; font-weight: 800; margin-bottom: 6px; color: var(--text); }
.why-point p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* Stats widget */
.stats-widget {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.stat-card {
  background: var(--glass);
  border: 1px solid var(--brd);
  border-radius: 18px;
  padding: 26px 22px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.stat-card:hover { border-color: var(--brd2); transform: translateY(-6px) scale(1.02); box-shadow: 0 20px 40px rgba(0,0,0,0.3), var(--glow); }
.stat-card:hover::before { opacity: 1; }
.stat-card.wide { grid-column: span 2; display: flex; align-items: center; gap: 16px; padding: 22px; text-align: left; }
.stat-val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat-sup { font-size: 1.4rem; }
.stat-lbl { font-size: 12px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 6px; }
.stat-wide-icon { font-size: 2.5rem; flex-shrink: 0; }
.stat-wide-content h4 { font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.stat-wide-content p { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ══════════════════════════════════════
   PROCESS SECTION
══════════════════════════════════════ */
#process { background: var(--bg); position: relative; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 44px; left: calc(16.66% + 22px); right: calc(16.66% + 22px);
  height: 1px;
  background: linear-gradient(90deg, var(--brd2), var(--brd), var(--brd2));
  z-index: 0;
}
.process-card {
  background: var(--glass);
  border: 1px solid var(--brd);
  border-radius: 18px;
  padding: 28px;
  transition: all 0.35s;
  position: relative;
  z-index: 1;
  text-align: center;
}
.process-card:hover { border-color: var(--brd2); transform: translateY(-8px); box-shadow: var(--shadow2), var(--glow); }
.process-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 8px 24px rgba(14,165,233,0.35);
}
.process-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 10px; color: var(--text); }
.process-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ══════════════════════════════════════
   TOOLS SECTION
══════════════════════════════════════ */
#tools { background: var(--bg2); }
.tools-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 40px; margin-bottom: 32px; }
.tab-btn {
  padding: 10px 22px;
  border-radius: 50px;
  border: 1px solid var(--brd);
  background: transparent;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Inter', sans-serif;
}
.tab-btn:hover { border-color: var(--brd2); color: var(--cyan); }
.tab-btn.active { background: var(--grad2); color: #fff; border-color: transparent; box-shadow: 0 4px 16px rgba(14,165,233,0.3); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeUp 0.35s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.tool-card {
  background: var(--glass);
  border: 1px solid var(--brd2);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow2);
}
.tool-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad3);
}
.tool-header { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 32px; }
.tool-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--cyan2), var(--cyan3));
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(14,165,233,0.35);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.tool-card:hover .tool-icon { transform: scale(1.1) rotate(-8deg); }
.tool-header h2 { font-size: 1.6rem; font-weight: 900; margin-bottom: 8px; }
.tool-header p { font-size: 13.5px; color: var(--muted); line-height: 1.75; }
.tool-tags { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 8px; }
.tool-tag {
  background: rgba(56,189,248,0.08);
  border: 1px solid var(--brd);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}
.tool-inputs { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.input-wrap { flex: 1; min-width: 220px; position: relative; }
.input-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); font-size: 16px; pointer-events: none; z-index: 1; }
.tool-input {
  width: 100%;
  padding: 15px 15px 15px 46px;
  background: rgba(56,189,248,0.04);
  border: 1px solid var(--brd);
  border-radius: 12px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  outline: none;
  transition: all 0.25s;
}
.tool-input:focus { border-color: var(--brd3); box-shadow: 0 0 0 4px rgba(56,189,248,0.1); background: rgba(56,189,248,0.06); }
.tool-input::placeholder { color: var(--dim); }
.tool-input option { background: var(--bg3); }
select.tool-input { padding-left: 16px; cursor: pointer; }
.tool-run {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--cyan2), var(--cyan3));
  color: #fff;
  padding: 15px 30px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Bricolage Grotesque', sans-serif;
  box-shadow: 0 8px 24px rgba(14,165,233,0.3);
  white-space: nowrap;
}
.tool-run:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(14,165,233,0.45); }
.tool-run:disabled { opacity: 0.6; cursor: not-allowed; }
.tool-progress { display: none; margin-bottom: 20px; }
.tool-progress.show { display: block; }
.prog-steps { display: flex; flex-direction: column; gap: 8px; }
.prog-step {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 15px;
  background: var(--glass);
  border-radius: 10px;
  font-size: 13px;
  color: var(--muted);
  transition: all 0.3s;
}
.prog-step.active { background: rgba(56,189,248,0.08); border: 1px solid var(--brd2); color: var(--cyan); font-weight: 600; }
.prog-step.done { background: rgba(52,211,153,0.08); border: 1px solid rgba(52,211,153,0.2); color: var(--green); font-weight: 600; }
.prog-step.err { background: rgba(248,113,113,0.08); border: 1px solid rgba(248,113,113,0.2); color: var(--red); }
.step-icon { width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.spinner { width: 16px; height: 16px; border: 2px solid var(--brd); border-top-color: var(--cyan); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.tool-error { display: none; padding: 16px 20px; background: rgba(248,113,113,0.08); border: 1px solid rgba(248,113,113,0.2); border-radius: 12px; color: var(--red); font-size: 13.5px; margin-top: 14px; line-height: 1.65; }
.tool-error.show { display: block; }
.tool-result { display: none; }
.tool-result.show { display: block; animation: fadeUp 0.4s ease; }
.result-box {
  background: var(--glass);
  border: 1px solid var(--brd2);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 20px;
}

/* SEO Score Ring */
.score-wrap { display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center; margin-bottom: 20px; }
.score-ring-box { text-align: center; min-width: 120px; }
.score-ring { width: 110px; height: 110px; position: relative; margin: 0 auto; }
.score-ring svg { transform: rotate(-90deg); }
.score-ring circle { fill: none; stroke-width: 10; transition: stroke-dashoffset 1.5s ease; }
.score-bg-ring { stroke: var(--brd); }
.score-fill-ring { stroke: url(#scoreGrad); stroke-linecap: round; }
.score-val {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
}
.score-val span { font-size: 11px; color: var(--muted); font-weight: 600; }
.score-grade {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 8px;
  display: inline-block;
}
.grade-good { background: rgba(52,211,153,0.12); color: var(--green); border: 1px solid rgba(52,211,153,0.25); }
.grade-ok { background: rgba(245,158,11,0.12); color: var(--gold); border: 1px solid rgba(245,158,11,0.25); }
.grade-bad { background: rgba(248,113,113,0.12); color: var(--red); border: 1px solid rgba(248,113,113,0.25); }
.score-meta h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.score-pills { display: flex; gap: 7px; flex-wrap: wrap; }
.score-pill { background: rgba(56,189,248,0.08); border: 1px solid var(--brd); color: var(--cyan); font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; }
.score-checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 16px; }
.score-check { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--text2); }
.check-ic { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; flex-shrink: 0; }
.check-pass { background: rgba(52,211,153,0.12); color: var(--green); border: 1px solid rgba(52,211,153,0.25); }
.check-fail { background: rgba(248,113,113,0.12); color: var(--red); border: 1px solid rgba(248,113,113,0.25); }
.check-warn { background: rgba(245,158,11,0.12); color: var(--gold); border: 1px solid rgba(245,158,11,0.25); }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
#testimonials { background: var(--bg2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.testimonial-card {
  background: var(--glass);
  border: 1px solid var(--brd);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px; right: 20px;
  font-size: 8rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 900;
  color: rgba(56,189,248,0.06);
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover { border-color: var(--brd2); transform: translateY(-6px); box-shadow: var(--shadow2), var(--glow); }
.tcard-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.tcard-stars span { color: var(--gold); font-size: 14px; }
.tcard-text { font-size: 14px; color: var(--text2); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.tcard-name { font-size: 14px; font-weight: 700; color: var(--text); }
.tcard-biz { font-size: 12px; color: var(--muted); }

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
#cta {
  background: var(--bg3);
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(56,189,248,0.08), transparent 60%);
  pointer-events: none;
}
.cta-inner {
  background: var(--glass);
  border: 1px solid var(--brd2);
  border-radius: 28px;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow2);
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
}
.cta-btns { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.cta-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
.cta-check { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.cta-check-icon { width: 20px; height: 20px; border-radius: 6px; background: rgba(56,189,248,0.1); border: 1px solid var(--brd2); display: flex; align-items: center; justify-content: center; color: var(--cyan); font-size: 10px; font-weight: 800; flex-shrink: 0; }

/* ══════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════ */
#faq { background: var(--bg); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 48px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--glass);
  border: 1px solid var(--brd);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item.open { border-color: var(--brd2); }
.faq-item:hover { border-color: var(--brd2); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: var(--text2);
  transition: color 0.2s;
  gap: 12px;
}
.faq-q:hover { color: var(--cyan); }
.faq-item.open .faq-q { color: var(--cyan); }
.faq-icon { width: 28px; height: 28px; border-radius: 8px; background: rgba(56,189,248,0.08); border: 1px solid var(--brd); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; transition: all 0.3s; }
.faq-item.open .faq-icon { background: rgba(56,189,248,0.15); border-color: var(--brd2); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 20px 18px; font-size: 13.5px; color: var(--muted); line-height: 1.8; }
.faq-contact {
  background: var(--glass);
  border: 1px solid var(--brd2);
  border-radius: 20px;
  padding: 32px;
  position: sticky;
  top: 90px;
}
.faq-contact h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 10px; }
.faq-contact p { font-size: 13.5px; color: var(--muted); margin-bottom: 22px; line-height: 1.7; }
.contact-methods { display: flex; flex-direction: column; gap: 12px; }
.contact-method {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: rgba(56,189,248,0.04);
  border: 1px solid var(--brd);
  border-radius: 12px;
  transition: all 0.25s;
}
.contact-method:hover { border-color: var(--brd2); background: rgba(56,189,248,0.08); }
.method-icon { font-size: 20px; flex-shrink: 0; }
.method-label { font-size: 11px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.method-val { font-size: 14px; font-weight: 700; color: var(--text2); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--brd);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer-brand p { color: var(--muted); font-size: 13px; line-height: 1.8; margin-top: 16px; max-width: 280px; }
.footer-col h4 { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--dim); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--muted); font-size: 13px; transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.footer-col a:hover { color: var(--cyan); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--glass);
  border: 1px solid var(--brd);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: all 0.25s;
  color: var(--muted);
}
.social-link:hover { border-color: var(--brd2); background: rgba(56,189,248,0.1); color: var(--cyan); transform: translateY(-3px); box-shadow: var(--glow); }
.footer-cities { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.fcity { font-size: 11px; color: var(--dim); }
.fcity::after { content: '·'; margin-left: 8px; }
.fcity:last-child::after { display: none; }
.footer-bottom {
  border-top: 1px solid var(--brd);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--dim); }
.footer-bottom a { color: var(--cyan); }

/* WhatsApp Float */
.wa-float {
  position: fixed;
  bottom: 28px; left: 28px;
  z-index: 500;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: all 0.25s;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 12px 32px rgba(37,211,102,0.6); }
.wa-float::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.35);
  animation: wa-ring 2.5s ease-in-out infinite;
}
@keyframes wa-ring { 0%,100%{transform:scale(1);opacity:0.8} 50%{transform:scale(1.2);opacity:0} }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* Chatbot Bubble */
#bot-bubble {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 600;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan2), var(--purple));
  box-shadow: 0 8px 30px rgba(14,165,233,0.45);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
  border: none;
  font-size: 26px;
}
#bot-bubble:hover { transform: scale(1.1); box-shadow: 0 14px 40px rgba(14,165,233,0.6); }
.bot-ping {
  position: absolute;
  top: 2px; right: 2px;
  width: 14px; height: 14px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid var(--bg);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* Bot Window */
#bot-window {
  position: fixed;
  bottom: 98px; right: 28px;
  z-index: 599;
  width: 380px;
  max-width: calc(100vw - 32px);
  height: 560px;
  max-height: calc(100vh - 120px);
  background: var(--bg3);
  border: 1px solid var(--brd2);
  border-radius: 24px;
  box-shadow: var(--shadow2), var(--glow);
  display: flex; flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  transition: all 0.2s ease;
  pointer-events: none;
  visibility: hidden;
}
#bot-window.open { opacity: 1; transform: none; pointer-events: all; visibility: visible; }
.bot-head {
  background: linear-gradient(135deg, var(--cyan2), var(--cyan3));
  padding: 18px 20px;
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
  position: relative;
}
.bot-head::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  pointer-events: none;
}
.bot-av {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.bot-name { font-family: 'Bricolage Grotesque', sans-serif; font-size: 15px; font-weight: 800; color: #fff; display: block; margin-bottom: 2px; }
.bot-status { font-size: 11px; color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: 5px; }
.bot-online { width: 7px; height: 7px; background: #22c55e; border-radius: 50%; animation: pulse-dot 2s ease-in-out infinite; }
.bot-close {
  margin-left: auto;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 34px; height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  position: relative; z-index: 1;
}
.bot-close:hover { background: rgba(255,255,255,0.3); }
.bot-lang-bar {
  background: rgba(0,0,0,0.2);
  padding: 8px 16px;
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.bot-lang-bar::-webkit-scrollbar { display: none; }
.lang-lbl { font-size: 10px; color: rgba(255,255,255,0.6); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap; }
.lang-btn {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  font-size: 11px; font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.lang-btn:hover { background: rgba(255,255,255,0.25); }
.lang-btn.active { background: #fff; color: var(--cyan3); border-color: #fff; font-weight: 700; }
.bot-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
  background: var(--bg3);
  scrollbar-width: thin;
  scrollbar-color: var(--brd) transparent;
}
.bot-msgs::-webkit-scrollbar { width: 3px; }
.bot-msgs::-webkit-scrollbar-thumb { background: var(--brd2); border-radius: 2px; }
.bot-msg { display: flex; align-items: flex-end; gap: 8px; animation: msgIn 0.3s ease; }
@keyframes msgIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.bot-msg.user { flex-direction: row-reverse; }
.msg-bubble {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.6;
}
.bot-msg:not(.user) .msg-bubble {
  background: var(--glass);
  border: 1px solid var(--brd);
  color: var(--text2);
  border-bottom-left-radius: 4px;
}
.bot-msg.user .msg-bubble {
  background: linear-gradient(135deg, var(--cyan2), var(--cyan3));
  color: #fff;
  border-bottom-right-radius: 4px;
}
.bot-av-sm { width: 28px; height: 28px; border-radius: 50%; background: var(--grad2); display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.quick-replies { display: flex; flex-wrap: wrap; gap: 7px; padding: 12px 16px 0; }
.qr-btn {
  background: rgba(56,189,248,0.08);
  border: 1px solid var(--brd2);
  color: var(--cyan);
  font-size: 12px; font-weight: 600;
  padding: 7px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
}
.qr-btn:hover { background: rgba(56,189,248,0.15); }
.bot-input-row {
  padding: 12px 14px;
  border-top: 1px solid var(--brd);
  display: flex; gap: 10px;
  background: var(--bg2);
  flex-shrink: 0;
}
.bot-input {
  flex: 1;
  background: var(--glass);
  border: 1px solid var(--brd);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 13.5px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.bot-input:focus { border-color: var(--brd2); }
.bot-input::placeholder { color: var(--dim); }
.bot-send {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan2), var(--cyan3));
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.bot-send:hover { transform: scale(1.08); box-shadow: 0 4px 14px rgba(14,165,233,0.4); }

/* ══════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════ */
.rv { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.rvl { opacity: 0; transform: translateX(-28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.rvr { opacity: 0; transform: translateX(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.rv.in, .rvl.in, .rvr.in { opacity: 1; transform: none; }

/* ══════════════════════════════════════
   BLOG PAGE
══════════════════════════════════════ */
#blog-hero {
  min-height: 44vh;
  display: flex;
  align-items: center;
  padding: 130px 28px 60px;
  background: radial-gradient(ellipse 100% 80% at 50% 0%, rgba(14,165,233,0.08) 0%, transparent 60%),
              var(--bg);
  position: relative;
  overflow: hidden;
}
#blog-hero .hero-grid { z-index: 0; }
#blog-hero .con { position: relative; z-index: 1; }
.blog-search-wrap {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  max-width: 520px;
}
.blog-search {
  flex: 1;
  background: var(--glass);
  border: 1px solid var(--brd2);
  border-radius: 12px;
  padding: 13px 18px 13px 44px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  outline: none;
  transition: all 0.25s;
  position: relative;
}
.blog-search:focus { border-color: var(--brd3); box-shadow: 0 0 0 4px rgba(56,189,248,0.1); }
.blog-search::placeholder { color: var(--dim); }
.search-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); font-size: 16px; color: var(--muted); pointer-events: none; }
.search-wrap-rel { position: relative; flex: 1; }

.blog-categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cat-btn {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid var(--brd);
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.cat-btn:hover { border-color: var(--brd2); color: var(--cyan); }
.cat-btn.active { background: rgba(56,189,248,0.1); border-color: var(--brd2); color: var(--cyan); }

#blog-posts { background: var(--bg); }
.featured-post {
  background: var(--glass);
  border: 1px solid var(--brd2);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  margin-bottom: 48px;
  transition: all 0.35s;
}
.featured-post:hover { border-color: var(--brd3); box-shadow: var(--shadow2), var(--glow); }
.featured-img {
  background: linear-gradient(135deg, rgba(14,165,233,0.15), rgba(129,140,248,0.1));
  min-height: 340px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.featured-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(56,189,248,0.2), transparent 60%);
}
.featured-content { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.post-cat { display: inline-block; background: rgba(56,189,248,0.1); border: 1px solid var(--brd2); color: var(--cyan); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.08em; }
.featured-content h2 { font-size: 1.7rem; font-weight: 900; margin-bottom: 14px; line-height: 1.2; }
.featured-content p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 24px; }
.post-meta { display: flex; align-items: center; gap: 16px; font-size: 12px; color: var(--muted); margin-bottom: 20px; }
.post-meta span { display: flex; align-items: center; gap: 5px; }
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card {
  background: var(--glass);
  border: 1px solid var(--brd);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s;
  cursor: pointer;
}
.post-card:hover { border-color: var(--brd2); transform: translateY(-8px); box-shadow: var(--shadow2), var(--glow); }
.post-card-img {
  height: 180px;
  background: linear-gradient(135deg, rgba(14,165,233,0.12), rgba(129,140,248,0.08));
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}
.post-card-img::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 40% 40%, rgba(56,189,248,0.15), transparent 60%);
}
.post-card-body { padding: 22px; }
.post-card-body h3 { font-size: 1rem; font-weight: 800; margin-bottom: 10px; line-height: 1.35; color: var(--text); }
.post-card-body p { font-size: 13px; color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
.post-card-footer { display: flex; align-items: center; justify-content: space-between; }
.read-more { font-size: 13px; font-weight: 700; color: var(--cyan); display: flex; align-items: center; gap: 5px; transition: gap 0.2s; }
.read-more:hover { gap: 9px; }
.post-time { font-size: 11px; color: var(--dim); }

.newsletter-box {
  background: linear-gradient(135deg, rgba(56,189,248,0.08), rgba(129,140,248,0.06));
  border: 1px solid var(--brd2);
  border-radius: 24px;
  padding: 52px 40px;
  text-align: center;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}
.newsletter-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
}
.newsletter-box h2 { font-size: 2rem; font-weight: 900; margin-bottom: 12px; }
.newsletter-box p { color: var(--muted); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }
.newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.nl-input {
  flex: 1;
  background: rgba(56,189,248,0.06);
  border: 1px solid var(--brd2);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  outline: none;
  transition: all 0.25s;
}
.nl-input:focus { border-color: var(--brd3); }
.nl-input::placeholder { color: var(--dim); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hi { grid-template-columns: 1fr; }
  .hero-3d { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-btns { align-items: center; }
  .faq-grid { grid-template-columns: 1fr; }
  .featured-post { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nl { display: none; }
  .hbg { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-widget { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hbtns { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .posts-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .score-wrap { grid-template-columns: 1fr; text-align: center; }
  .score-checks { grid-template-columns: 1fr; }
  .cta-inner { padding: 32px 24px; }
  .tool-card { padding: 28px 22px; }
  .tool-header { flex-direction: column; gap: 12px; }
  .faq-contact { position: static; }
}

@media (max-width: 480px) {
  .con { padding: 0 16px; }
  .stats-widget { grid-template-columns: 1fr; }
  .stat-card.wide { grid-column: auto; }
  .db-stats { grid-template-columns: repeat(2, 1fr); }
  .score-checks { grid-template-columns: 1fr 1fr; }
  .cta-checklist { grid-template-columns: 1fr; }
}
