/* ============================================================
   SKAL Marketing Consultant — Global Design System
   Glassmorphism · Dark Theme · Navy/Purple/Blue
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800;900&display=swap');

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

:root {
  --bg-primary:    #000000;
  --bg-secondary:  #0a0a1f;
  --bg-tertiary:   #0d0d2b;
  --glass-1:       rgba(255,255,255,0.04);
  --glass-2:       rgba(255,255,255,0.07);
  --glass-3:       rgba(255,255,255,0.10);
  --glass-border:  rgba(255,255,255,0.10);
  --glass-border-h:rgba(255,255,255,0.20);
  --purple-deep:   #0c2a66;
  --purple-mid:    #1d4ed8;
  --purple-light:  #38bdf8;
  --purple-glow:   rgba(29,78,216,0.35);
  --blue-mid:      #2563eb;
  --blue-light:    #3b82f6;
  --blue-glow:     rgba(59,130,246,0.35);
  --cyan:          #06b6d4;
  --text-primary:  #ffffff;
  --text-secondary:#e2e8f0;
  --text-muted:    #94a3b8;
  --text-faint:    #64748b;
  --gradient-main: linear-gradient(135deg,#1e40af 0%,#3b82f6 55%,#38bdf8 100%);
  --gradient-glow: linear-gradient(135deg,rgba(29,78,216,0.6) 0%,rgba(59,130,246,0.6) 100%);
  --gradient-card: linear-gradient(135deg,rgba(29,78,216,0.08) 0%,rgba(59,130,246,0.08) 100%);
  --blur-sm:       blur(10px);
  --blur-md:       blur(20px);
  --blur-lg:       blur(40px);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     32px;
  --shadow-glass:  0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
  --shadow-glow-p: 0 0 40px rgba(29,78,216,0.3), 0 0 80px rgba(29,78,216,0.15);
  --shadow-glow-b: 0 0 40px rgba(59,130,246,0.3), 0 0 80px rgba(59,130,246,0.15);
  --transition:    0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-slow:0.6s cubic-bezier(0.4,0,0.2,1);
  --font-heading:  'Poppins', system-ui, sans-serif;
  --font-body:     'Inter', system-ui, sans-serif;
  --nav-h:         72px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}


img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--purple-mid); border-radius: 3px; }

/* ── Mesh Background ──────────────────────────────────────── */
.mesh-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.mesh-bg::before {
  content: '';
  position: absolute; width: 900px; height: 900px;
  background: radial-gradient(ellipse,rgba(29,78,216,0.18) 0%,transparent 70%);
  top: -200px; left: -200px;
  animation: meshDrift1 18s ease-in-out infinite alternate;
}
.mesh-bg::after {
  content: '';
  position: absolute; width: 700px; height: 700px;
  background: radial-gradient(ellipse,rgba(59,130,246,0.15) 0%,transparent 70%);
  bottom: -150px; right: -150px;
  animation: meshDrift2 22s ease-in-out infinite alternate;
}
.mesh-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.mesh-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(ellipse,rgba(56,189,248,0.12) 0%,transparent 70%);
  top: 40%; left: 50%; transform: translate(-50%,-50%);
  animation: meshDrift3 14s ease-in-out infinite alternate;
}
@keyframes meshDrift1 { to { transform: translate(80px,60px) scale(1.1); } }
@keyframes meshDrift2 { to { transform: translate(-60px,-80px) scale(1.15); } }
@keyframes meshDrift3 { to { transform: translate(-40%,-60%) scale(1.2); } }

/* ── Glass Card ───────────────────────────────────────────── */
.glass {
  background: var(--glass-1);
  backdrop-filter: var(--blur-md);
  -webkit-backdrop-filter: var(--blur-md);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  transition: var(--transition);
}
.glass:hover {
  background: var(--glass-2);
  border-color: var(--glass-border-h);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.12);
}
.glass-strong {
  background: var(--glass-3);
  backdrop-filter: var(--blur-lg);
  -webkit-backdrop-filter: var(--blur-lg);
  border: 1px solid var(--glass-border-h);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
}

/* ── Top mask: hides content scrolling behind the floating navbar ── */
.nav-mask {
  position: fixed; top: 0; left: 0; right: 0;
  height: 108px; z-index: 900; pointer-events: none;
  background: linear-gradient(180deg, #000 0%, #000 74%, transparent 100%);
}
@media (max-width: 768px) { .nav-mask { height: 98px; } }

/* ── Navbar ───────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 12px; left: 20px; right: 20px; z-index: 1000;
  height: var(--nav-h);
  background: rgba(0,0,0,0.6);
  backdrop-filter: var(--blur-md);
  -webkit-backdrop-filter: var(--blur-md);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(0,0,0,0.85);
  border-color: rgba(29,78,216,0.25);
  box-shadow: 0 8px 32px rgba(29,78,216,0.15), 0 4px 16px rgba(0,0,0,0.5);
}
.nav-logo {
  display: flex; align-items: center; gap: 13px;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.4rem;
  cursor: pointer; min-height: 44px;
}
.nav-logo-img {
  width: 54px; height: 54px; object-fit: contain; flex-shrink: 0;
  filter: drop-shadow(0 2px 12px rgba(59,130,246,0.55));
}
.nav-logo-full {
  height: 48px; min-height: 44px; width: auto; object-fit: contain; display: block;
  filter: drop-shadow(0 2px 12px rgba(59,130,246,0.4));
}
.nav-logo-text {
  display: flex; flex-direction: column; line-height: 1.05;
  background: var(--gradient-main); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-logo-text small {
  font-size: 0.58rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  -webkit-text-fill-color: var(--text-muted); color: var(--text-muted); margin-top: 2px;
}
.nav-logo-mark {
  width: 44px; height: 44px; min-width: 44px; min-height: 44px; border-radius: 12px;
  background: var(--gradient-main);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; color: #fff;
  -webkit-text-fill-color: #fff;
  box-shadow: 0 4px 16px rgba(29,78,216,0.5);
}
.nav-links {
  display: flex; align-items: center; gap: 4px; list-style: none;
}
.nav-links a {
  padding: 10px 18px; min-height: 44px; display: inline-flex; align-items: center;
  border-radius: 50px; font-size: 0.875rem; font-weight: 500;
  color: var(--text-secondary); cursor: pointer;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text-primary);
  background: var(--glass-2);
}
.nav-links a.active { color: var(--purple-light); }
.nav-cta {
  display: flex; align-items: center; gap: 10px;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 10px; min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center; border-radius: 8px;
  transition: var(--transition);
}
.hamburger:hover { background: var(--glass-2); }
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--text-secondary);
  border-radius: 2px; transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.95); backdrop-filter: var(--blur-lg);
  flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  padding-top: var(--nav-h);
  padding-bottom: max(20px, env(safe-area-inset-bottom));
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600;
  color: var(--text-secondary); padding: 14px 32px; min-height: 52px; border-radius: 12px;
  transition: var(--transition); width: 280px; text-align: center; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.mobile-nav a:hover { color: var(--purple-light); background: var(--glass-2); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; min-height: 44px; border-radius: 50px;
  font-family: var(--font-body); font-size: 0.9375rem; font-weight: 600;
  cursor: pointer; border: none; transition: var(--transition); white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-main); color: #fff;
  box-shadow: 0 4px 20px rgba(29,78,216,0.5);
}
.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(29,78,216,0.7); transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: var(--text-primary);
  border: 1px solid var(--glass-border-h);
  backdrop-filter: var(--blur-sm);
}
.btn-outline:hover {
  background: var(--glass-2); border-color: var(--purple-light); transform: translateY(-2px);
}
.btn-sm { padding: 10px 20px; min-height: 44px; font-size: 0.875rem; }
.btn-lg { padding: 16px 36px; min-height: 52px; font-size: 1rem; }

/* ── Page Wrapper ─────────────────────────────────────────── */
.page { position: relative; z-index: 1; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1480px; margin: 0 auto; padding: 0 32px; }

/* ── Section Labels ───────────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--purple-light); padding: 6px 16px; border-radius: 50px;
  background: rgba(56,189,248,0.12); border: 1px solid rgba(56,189,248,0.25);
  margin-bottom: 20px;
}
.section-label-blue { color: var(--blue-light); background: rgba(59,130,246,0.12); border-color: rgba(59,130,246,0.25); }

/* ── Headings ─────────────────────────────────────────────── */
.h1, h1 { font-family: var(--font-heading); font-size: clamp(1.75rem, 5.5vw, 3.75rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; word-break: break-word; overflow-wrap: break-word; }
.h2, h2 { font-family: var(--font-heading); font-size: clamp(1.4rem, 4.2vw, 2.75rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; word-break: break-word; overflow-wrap: break-word; }
.h3, h3 { font-family: var(--font-heading); font-size: clamp(1.15rem, 3.2vw, 1.75rem); font-weight: 600; line-height: 1.3; word-break: break-word; overflow-wrap: break-word; }
.h4, h4 { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; line-height: 1.35; }
.gradient-text {
  background: var(--gradient-main); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lead { font-size: 1.125rem; color: var(--text-secondary); line-height: 1.75; max-width: 680px; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── Grid Helpers ─────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }

/* ── Service Icon ─────────────────────────────────────────── */
.icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; flex-shrink: 0;
}
.icon-purple { background: rgba(29,78,216,0.15); border: 1px solid rgba(29,78,216,0.3); }
.icon-blue   { background: rgba(59,130,246,0.15); border: 1px solid rgba(59,130,246,0.3); }
.icon-wrap svg { width: 26px; height: 26px; }

/* ── Service Card ─────────────────────────────────────────── */
.service-card {
  padding: 32px; cursor: pointer;
  background: var(--glass-1);
  backdrop-filter: var(--blur-md); -webkit-backdrop-filter: var(--blur-md);
  border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
  transition: var(--transition);
}
.service-card:hover {
  background: var(--gradient-card); border-color: rgba(29,78,216,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--shadow-glow-p);
}
.service-card.blue:hover {
  border-color: rgba(59,130,246,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--shadow-glow-b);
}
.service-card h4 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; }
.service-card p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
.card-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 50px; margin-bottom: 16px;
}
.tag-purple { color: var(--purple-light); background: rgba(56,189,248,0.12); border: 1px solid rgba(56,189,248,0.2); }
.tag-blue   { color: var(--blue-light);   background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.2); }

/* ── Divider ──────────────────────────────────────────────── */
.divider {
  height: 1px; background: linear-gradient(90deg,transparent,var(--glass-border-h),transparent);
  margin: 80px 0;
}

/* ── Stats ────────────────────────────────────────────────── */
.stat-num {
  font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800;
  background: var(--gradient-main); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 0.875rem; color: var(--text-muted); margin-top: 4px; }

/* ── Process Steps ────────────────────────────────────────── */
.step-num {
  font-family: var(--font-heading); font-size: 3rem; font-weight: 900; line-height: 1;
  background: var(--gradient-main); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; margin-bottom: 12px;
}

/* ── Testimonial Card ─────────────────────────────────────── */
.testimonial-card { padding: 32px; }
.testimonial-card .quote {
  font-size: 1rem; color: var(--text-secondary); line-height: 1.75;
  font-style: italic; margin-bottom: 24px;
}
.testimonial-card .author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient-main); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: #fff; flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.9rem; }
.author-role { font-size: 0.8rem; color: var(--text-muted); }
.stars { color: #f59e0b; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 16px; }

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg,rgba(29,78,216,0.15) 0%,rgba(59,130,246,0.15) 100%);
  border: 1px solid rgba(29,78,216,0.2); border-radius: var(--radius-xl);
  padding: 80px 48px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center,rgba(29,78,216,0.1) 0%,transparent 70%);
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--glass-border); padding: 60px 0 32px;
  position: relative; z-index: 1;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 32px 24px !important; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
}
.footer-logo {
  font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700;
  background: var(--gradient-main); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; margin-bottom: 14px;
}
.footer-logo-img { height: 48px; width: auto; display: block; margin-bottom: 16px; }
.footer-desc { font-size: 0.9rem; color: var(--text-muted); max-width: 280px; line-height: 1.7; }
.footer-links h5 {
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted); margin-bottom: 16px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 6px; }
.footer-links a { font-size: 0.9rem; color: var(--text-secondary); transition: var(--transition); min-height: 44px; min-width: 44px; display: inline-flex; align-items: center; padding: 4px 0; }
.footer-links a:hover { color: var(--purple-light); }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.85rem; color: var(--text-faint); }
.social-links { display: flex; align-items: center; gap: 12px; }
.social-btn {
  width: 44px; height: 44px; min-width: 44px; min-height: 44px; border-radius: 12px; border: 1px solid var(--glass-border);
  background: var(--glass-1); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
}
.social-btn:hover { background: var(--glass-2); border-color: var(--purple-light); }
.social-btn svg { width: 20px; height: 20px; fill: var(--text-muted); transition: var(--transition); }
.social-btn:hover svg { fill: var(--purple-light); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: calc(var(--nav-h) + 48px) 0 80px;
  position: relative;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(29,78,216,0.1); border: 1px solid rgba(29,78,216,0.25);
  border-radius: 50px; padding: 8px 18px; margin-bottom: 28px;
  font-size: 0.875rem; color: var(--purple-light); font-weight: 500;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--purple-light); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-btns { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 32px;
  width: 100%; margin-top: 64px; padding-top: 40px;
  border-top: 1px solid var(--glass-border);
}
.floating-card {
  position: absolute; pointer-events: none;
  background: var(--glass-2); backdrop-filter: var(--blur-md);
  border: 1px solid var(--glass-border); border-radius: var(--radius-md);
  padding: 16px 20px; font-size: 0.875rem;
}
.floating-card-1 { top: 25%; right: 6%; animation: floatY 5s ease-in-out infinite; }
.floating-card-2 { bottom: 28%; right: 3%; animation: floatY 7s ease-in-out infinite 1s; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ── Hero full-width grid + glass panel ───────────────────── */
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px;
  align-items: center; width: 100%;
}
.hero-content { max-width: 680px; }
.hero-visual { position: relative; }
.hero-panel { padding: 32px; position: relative; overflow: hidden; }
.hero-panel::before {
  content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(ellipse,rgba(29,78,216,0.28),transparent 70%);
  top: -130px; right: -90px; pointer-events: none;
}
.hero-panel::after {
  content: ''; position: absolute; width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(ellipse,rgba(59,130,246,0.22),transparent 70%);
  bottom: -120px; left: -80px; pointer-events: none;
}
.hero-panel-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 24px; position: relative; z-index: 1;
}
.hero-panel-title { font-family: var(--font-heading); font-weight: 700; font-size: 1.15rem; }
.hero-panel-sub { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }
.hero-live {
  display: inline-flex; align-items: center; gap: 6px; font-size: 0.72rem; font-weight: 600;
  color: #10b981; background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.3);
  padding: 5px 12px; border-radius: 50px; white-space: nowrap;
}
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #10b981; box-shadow: 0 0 8px #10b981; animation: pulse 2s infinite; }
.hero-metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; position: relative; z-index: 1; }
.hero-metric {
  padding: 20px; border-radius: var(--radius-md);
  background: var(--glass-1); border: 1px solid var(--glass-border); transition: var(--transition);
}
.hero-metric:hover { background: var(--glass-2); border-color: var(--glass-border-h); transform: translateY(-3px); }
.metric-icon { width: 40px; height: 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.metric-icon.p { background: rgba(29,78,216,0.15); border: 1px solid rgba(29,78,216,0.3); }
.metric-icon.b { background: rgba(59,130,246,0.15); border: 1px solid rgba(59,130,246,0.3); }
.metric-icon svg { width: 20px; height: 20px; }
.metric-val { font-family: var(--font-heading); font-size: 1.7rem; font-weight: 800; line-height: 1; }
.metric-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 6px; }
.hero-panel-foot {
  margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  position: relative; z-index: 1; flex-wrap: wrap;
}
.foot-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.hero-float-badge {
  position: absolute; top: -24px; right: 28px; z-index: 3;
  background: var(--glass-3); backdrop-filter: var(--blur-md);
  border: 1px solid var(--glass-border-h); border-radius: var(--radius-md);
  padding: 12px 18px; box-shadow: var(--shadow-glass);
  animation: floatY 6s ease-in-out infinite;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { max-width: 100%; }
  .hero-float-badge { display: none; }
}

/* ── Scroll Reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Page Hero ────────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  text-align: center; position: relative;
}

/* ── Filter Bar ───────────────────────────────────────────── */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  padding: 10px 22px; min-height: 44px; min-width: 44px; border-radius: 50px; font-size: 0.875rem; font-weight: 500;
  border: 1px solid var(--glass-border); background: var(--glass-1);
  color: var(--text-secondary); cursor: pointer; transition: var(--transition);
  display: inline-flex; align-items: center; justify-content: center;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gradient-main); border-color: transparent; color: #fff;
}

/* ── Blog Card ────────────────────────────────────────────── */
.blog-img {
  height: 180px; border-radius: 12px; margin-bottom: 20px; overflow: hidden;
  background: linear-gradient(135deg,rgba(29,78,216,0.3),rgba(59,130,246,0.3));
  display: flex; align-items: center; justify-content: center;
}
.blog-meta { display: flex; align-items: center; gap: 12px; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 12px; flex-wrap: wrap; }
.blog-meta a { min-height: 44px; display: inline-flex; align-items: center; color: var(--purple-light); }
.blog-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-faint); }

/* ── Form ─────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 8px; color: var(--text-secondary); }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 13px 16px; min-height: 48px; border-radius: var(--radius-sm);
  background: var(--glass-1); border: 1px solid var(--glass-border);
  color: var(--text-primary); font-family: var(--font-body); font-size: 0.9375rem;
  outline: none; transition: var(--transition); backdrop-filter: var(--blur-sm);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--purple-mid); box-shadow: 0 0 0 3px rgba(29,78,216,0.15);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-faint); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select option { background: #0d0d2b; }

/* ── Contact Info Block ───────────────────────────────────── */
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.contact-icon {
  width: 44px; height: 44px; min-width: 44px; min-height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-info-item h5 { font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; }
.contact-info-item p { font-size: 0.9rem; color: var(--text-muted); }
.contact-info-item a { font-size: 0.9rem; color: var(--text-muted); min-height: 44px; display: inline-flex; align-items: center; }
.contact-info-item a:hover { color: var(--purple-light); }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--glass-border); border-radius: var(--radius-md);
  overflow: hidden; margin-bottom: 12px; background: var(--glass-1);
}
.faq-q {
  width: 100%; text-align: left; padding: 18px 24px; min-height: 52px;
  background: none; border: none; color: var(--text-primary);
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 500;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; transition: var(--transition);
}
.faq-q:hover { color: var(--purple-light); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-a.open { max-height: 300px; }
.faq-a-inner { padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.faq-icon { transition: transform 0.3s ease; flex-shrink: 0; margin-left: 12px; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

/* ── Map Placeholder ──────────────────────────────────────── */
.map-wrap {
  height: 280px; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--glass-border);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ── Timeline ─────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: ''; position: absolute; left: 13px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(180deg,var(--purple-mid),var(--blue-light));
}
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-dot {
  position: absolute; left: -34px; top: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gradient-main); border: 2px solid var(--bg-primary);
  box-shadow: 0 0 12px rgba(29,78,216,0.5);
}
.timeline-year { font-size: 0.8rem; color: var(--purple-light); font-weight: 600; margin-bottom: 4px; letter-spacing: 0.05em; }
.timeline-title { font-weight: 600; margin-bottom: 6px; }
.timeline-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ── Portfolio Card ───────────────────────────────────────── */
.portfolio-card { cursor: pointer; overflow: hidden; min-height: 44px; }
.portfolio-thumb {
  height: 200px; border-radius: 12px; margin-bottom: 20px;
  background: linear-gradient(135deg,rgba(29,78,216,0.25),rgba(59,130,246,0.25));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; transition: var(--transition);
}
.portfolio-thumb::after {
  content: 'View Project'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(29,78,216,0.7); color: #fff; font-weight: 600;
  opacity: 0; transition: var(--transition);
  backdrop-filter: var(--blur-sm);
}
.portfolio-card:hover .portfolio-thumb::after { opacity: 1; }

/* ── Case Study ───────────────────────────────────────────── */
.cs-stat {
  padding: 24px; text-align: center;
  background: var(--glass-1); border: 1px solid var(--glass-border); border-radius: var(--radius-md);
}
.cs-stat .num {
  font-family: var(--font-heading); font-size: 2rem; font-weight: 800;
  background: var(--gradient-main); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cs-stat .label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

/* ── Cursor Glow (large blurred circle following cursor, behind content) ── */
.cursor-glow {
  position: fixed; top: 0; left: 0;
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle,
    rgba(56,189,248,0.32) 0%,
    rgba(37,99,235,0.22) 38%,
    rgba(29,78,216,0.11) 60%,
    transparent 73%);
  filter: blur(80px); pointer-events: none;
  z-index: 0; transform: translate3d(-50%,-50%,0);
  will-change: transform; opacity: 0;
  transition: opacity 0.4s ease;
}
.cursor-glow.active { opacity: 1; }
@media (hover: none) { .cursor-glow { display: none; } }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 768px) {
  html, body { max-width: 100vw; overflow-x: hidden; }
  .container { padding: 0 20px; width: 100%; max-width: 100%; box-sizing: border-box; }
  .navbar { left: 12px; right: 12px; padding: 0 16px; }
  .nav-logo-full { height: 38px; min-height: 44px; max-width: 65%; object-fit: contain; }
  .nav-links, .nav-cta .btn { display: none !important; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4, .hero-grid, .profile-grid, .contact-grid, .mvv-grid, .values-grid, .faq-grid, .social-contact-grid { grid-template-columns: 1fr !important; }
  .hero-stats { grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 36px; }
  .floating-card { display: none; }
  .cta-banner { padding: 36px 18px; }
  .service-card, .testimonial-card, .contact-panel, .hero-panel { padding: 22px 18px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 16px; }
  .section { padding: 48px 0; }
  .hero { min-height: auto; padding: calc(var(--nav-h) + 24px) 0 40px; }
  .page-hero { padding: calc(var(--nav-h) + 28px) 0 36px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-btns { flex-direction: column; align-items: stretch; width: 100%; gap: 12px; }
  .btn { width: 100%; justify-content: center; min-height: 48px; box-sizing: border-box; }
  .btn-lg { padding: 14px 20px; min-height: 48px; font-size: 0.95rem; }
  .filter-bar { gap: 8px; justify-content: flex-start; }
  .filter-btn { padding: 10px 16px; min-height: 44px; font-size: 0.82rem; }
  .service-card, .testimonial-card, .contact-panel, .hero-panel { padding: 18px 14px; }
  .stat-num { font-size: clamp(1.6rem, 5vw, 2.2rem); }
}
@media (max-width: 380px) {
  .container { padding: 0 12px; }
  .hero-stats { grid-template-columns: 1fr; gap: 12px; }
  .cs-stat { padding: 16px 12px; }
  .cs-stat .num { font-size: 1.5rem; }
}

/* == Blog Article Pages ==================================== */
.article-hero { padding: calc(var(--nav-h) + 60px) 0 32px; }
.article-wrap { max-width: 780px; margin: 0 auto; }
.article-meta { display: flex; gap: 12px; align-items: center; font-size: 0.85rem; color: var(--text-muted); flex-wrap: wrap; margin-top: 18px; }
.article-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-faint); }
.article-updated { font-size: 0.78rem; color: var(--purple-light); background: rgba(56,189,248,0.08); border: 1px solid rgba(56,189,248,0.2); padding: 6px 14px; min-height: 36px; border-radius: 50px; display: inline-flex; align-items: center; }
.back-to-blog { display: inline-flex; align-items: center; gap: 8px; font-size: 0.875rem; font-weight: 500; color: var(--text-muted); min-height: 44px; padding: 4px 12px; margin-bottom: 20px; transition: var(--transition); border-radius: 8px; }
.back-to-blog:hover { color: var(--purple-light); background: var(--glass-1); }
.tldr-box { margin: 32px 0; padding: 24px; border-radius: var(--radius-md); background: linear-gradient(135deg,rgba(29,78,216,0.10),rgba(56,189,248,0.05)); border: 1px solid rgba(56,189,248,0.25); }
.tldr-box h2 { font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--purple-light); margin-bottom: 12px; font-family: var(--font-heading); }
.tldr-box ul { padding-left: 18px; }
.tldr-box li { font-size: 0.92rem; color: var(--text-secondary); margin-bottom: 8px; line-height: 1.6; }
.article-body h2 { font-family: var(--font-heading); font-size: clamp(1.3rem, 4vw + 0.8rem, 1.75rem); font-weight: 700; margin: 40px 0 14px; line-height: 1.35; word-break: break-word; }
.article-body h3 { font-family: var(--font-heading); font-size: clamp(1.1rem, 3vw + 0.7rem, 1.3rem); font-weight: 600; margin: 26px 0 10px; word-break: break-word; }
.article-body p { color: var(--text-secondary); line-height: 1.85; margin-bottom: 16px; font-size: 0.98rem; }
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 18px; }
.article-body li { color: var(--text-secondary); line-height: 1.75; margin-bottom: 8px; font-size: 0.95rem; }
.article-body strong { color: var(--text-primary); }

/* Refactored Answer Box: Full subtle glass border instead of side-stripe border */
.answer-box {
  padding: 18px 22px; margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.08) 0%, rgba(56, 189, 248, 0.04) 100%);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glass);
}
.answer-box p { margin: 0; font-size: 0.95rem; line-height: 1.7; }
.article-cta { margin-top: 56px; }

/* ── WhatsApp floating button (site-wide, injected by script.js) ── */
.wa-float {
  position: fixed; right: 24px; bottom: max(24px, env(safe-area-inset-bottom)); z-index: 890;
  display: flex; align-items: center;
  height: 60px; min-height: 48px; border-radius: 50px;
  background: #25D366; color: #fff; text-decoration: none;
  box-shadow: 0 10px 30px rgba(37,211,102,0.45);
  cursor: pointer;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(37,211,102,0.6); }
.wa-float .wa-icon {
  flex: 0 0 60px; height: 60px; position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.wa-float .wa-icon svg { width: 32px; height: 32px; }
.wa-float .wa-label {
  max-width: 0; overflow: hidden; white-space: nowrap; opacity: 0;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  transition: max-width 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
}
.wa-float:hover .wa-label { max-width: 220px; opacity: 1; padding-right: 24px; }
.wa-float .wa-pulse {
  position: absolute; inset: 0; border-radius: 50px; z-index: 1; pointer-events: none;
  animation: waPulse 2.4s infinite;
}
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width: 540px) {
  .wa-float { right: 14px; bottom: max(14px, env(safe-area-inset-bottom)); height: 46px; width: 46px; min-height: 46px; min-width: 46px; }
  .wa-float .wa-icon { flex: 0 0 46px; height: 46px; width: 46px; }
  .wa-float .wa-icon svg { width: 26px; height: 26px; }
  .wa-float:hover .wa-label { max-width: 0; opacity: 0; padding-right: 0; }
}


