/* ===== Design tokens ===== */
:root {
  --radius: 1rem;
  --background: #f8fbff;
  --foreground: #0f234e;
  --card: #ffffff;
  --muted-fg: #5f6f90;
  --primary: #1487d8;
  --primary-2: #5a7bff;
  --accent: #19c7d8;
  --accent-green: #47c84a;
  --secondary: #7f8cff;
  --border: rgba(20, 135, 216, 0.14);
  --input: #f7fbff;
  --gradient-primary: linear-gradient(135deg, #1487d8 0%, #5a7bff 45%, #19c7d8 100%);
  --gradient-text: linear-gradient(135deg, #1487d8 0%, #5a7bff 45%, #19c7d8 100%);
  --section-gradient: linear-gradient(135deg, rgba(20,135,216,0.08), rgba(90,123,255,0.08), rgba(25,199,216,0.06));
  --light-gradient: linear-gradient(135deg, #f8fbff 0%, #eef6ff 35%, #f2f7ff 70%, #f8fbff 100%);
  --shadow-glow: 0 18px 44px -16px rgba(20, 135, 216, 0.28);
  --shadow-glow-accent: 0 20px 50px -18px rgba(25, 199, 216, 0.25);
  --shadow-card: 0 20px 55px -25px rgba(15, 35, 78, 0.16);
}
/* ===== Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--foreground);
  background: var(--light-gradient);
  background-image:
    radial-gradient(circle at 12% 20%, rgba(20, 135, 216, 0.13), transparent 26%),
    radial-gradient(circle at 82% 16%, rgba(90, 123, 255, 0.13), transparent 24%),
    radial-gradient(circle at 88% 72%, rgba(25, 199, 216, 0.12), transparent 24%),
    radial-gradient(circle at 22% 86%, rgba(71, 200, 74, 0.08), transparent 24%),
    var(--light-gradient);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
h1, h2, h3, h4 { font-family: "Space Grotesk", system-ui, sans-serif; letter-spacing: -0.025em; margin: 0; color: var(--foreground); }
p { margin: 0; color: var(--muted-fg); }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
::selection { background: var(--primary); color: white; }
[data-lucide] { width: 1em; height: 1em; vertical-align: middle; }
html { scrollbar-width: thin; scrollbar-color: #5a7bff #eef4ff; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #eef4ff; }
::-webkit-scrollbar-thumb { background: linear-gradient(135deg, #1487d8, #5a7bff); border-radius: 999px; }

.container { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
.container.narrow { max-width: 64rem; }
.center { text-align: center; margin-top: 3rem; }
.muted { color: var(--muted-fg); }
.small { font-size: .75rem; }

/* ===== Background orbs (page) ===== */
.bg-orbs { position: fixed; inset: 0; z-index: -2; pointer-events: none; }
/* .bg-orbs .orb { position: absolute; border-radius: 9999px; filter: blur(80px); opacity: .25; } */
.bg-orbs .orb { position: absolute; border-radius: 9999px; filter: blur(110px); opacity: .2; }
.orb-a { top: 5%; left: -10%; width: 480px; height: 480px; background: var(--primary); }
.orb-b { top: 50%; right: -10%; width: 520px; height: 520px; background: var(--accent); }
.orb-c { bottom: -10%; left: 30%; width: 420px; height: 420px; background: var(--secondary); }

/* ===== Floating WhatsApp widget ===== */
.whatsapp-widget {
  position: fixed; right: 24px; bottom: 24px; z-index: 9999;
  display: flex; flex-direction: column; align-items: flex-end; gap: .75rem;
  pointer-events: none;
}
.whatsapp-float {
  position: relative; display: grid; place-items: center;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #1fa655 100%);
  color: #fff; box-shadow: 0 16px 36px -16px rgba(37, 211, 102, 0.45), 0 8px 20px rgba(15, 35, 78, 0.12);
  border: 1px solid rgba(255,255,255,0.3);
  transition: transform .25s ease, box-shadow .25s ease;
  animation: whatsapp-float 3.2s ease-in-out infinite, whatsapp-pulse 3.4s ease-in-out infinite;
  pointer-events: auto;
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 42px -18px rgba(37, 211, 102, 0.5), 0 10px 24px rgba(15, 35, 78, 0.16);
}
.whatsapp-float.is-clicked {
  transform: scale(0.96);
}
.whatsapp-float::before {
  content: ""; position: absolute; inset: -3px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.35); opacity: 0; transform: scale(0.8);
  transition: opacity .25s ease, transform .25s ease;
}
.whatsapp-float.is-clicked::before {
  opacity: 1; transform: scale(1.08);
}
.whatsapp-float img,
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-tooltip {
  padding: .7rem .95rem; border-radius: 999px; background: rgba(255,255,255,0.96);
  color: var(--foreground); box-shadow: 0 14px 30px -16px rgba(15, 35, 78, 0.22);
  font-size: .9rem; font-weight: 600; white-space: nowrap;
  opacity: 0; transform: translateY(8px); transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
.whatsapp-widget:hover .whatsapp-tooltip,
.whatsapp-widget:focus-within .whatsapp-tooltip {
  opacity: 1; transform: translateY(0);
}
.whatsapp-popup {
  width: min(300px, calc(100vw - 2rem)); padding: 1rem 1rem .9rem;
  border-radius: 1rem; background: rgba(255,255,255,0.97);
  box-shadow: 0 18px 42px -20px rgba(15, 35, 78, 0.26);
  border: 1px solid rgba(20, 135, 216, 0.12);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}
.whatsapp-popup.is-visible {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.whatsapp-popup__header {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem; margin-bottom: .5rem;
}
.whatsapp-popup__header strong { font-size: 1rem; color: var(--foreground); }
.whatsapp-popup__close {
  width: 1.9rem; height: 1.9rem; border-radius: 50%; display: grid; place-items: center;
  background: rgba(20, 135, 216, 0.08); color: var(--foreground);
}
.whatsapp-popup p { font-size: .9rem; line-height: 1.55; margin-bottom: .8rem; color: var(--muted-fg); }
.whatsapp-popup__actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.whatsapp-popup__btn {
  display: inline-flex; align-items: center; justify-content: center; border-radius: 999px;
  padding: .6rem .9rem; font-size: .85rem; font-weight: 600; text-decoration: none;
}
.whatsapp-popup__btn--primary {
  background: linear-gradient(135deg, #25d366 0%, #1fa655 100%); color: white;
}
.whatsapp-popup__btn--ghost {
  background: rgba(20, 135, 216, 0.08); color: var(--foreground);
}
@keyframes whatsapp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 16px 36px -16px rgba(37, 211, 102, 0.45), 0 8px 20px rgba(15, 35, 78, 0.12); }
  50% { box-shadow: 0 16px 36px -16px rgba(37, 211, 102, 0.55), 0 0 0 8px rgba(37, 211, 102, 0.08); }
}
@media (max-width: 768px) {
  .whatsapp-widget { right: 18px; bottom: 18px; }
  .whatsapp-float { width: 56px; height: 56px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
}

/* ===== Gradient text & helpers ===== */
.gradient-text {
  background: linear-gradient(135deg, #0f6fb8 0%, #2c5bff 45%, #16a5c4 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-weight: 700;
  text-shadow: 0 0.5px 0 rgba(15, 35, 78, 0.08);
  animation: gradient-shift 8s ease infinite;
}
.gradient-text-primary {
  background: linear-gradient(135deg, #0d64b1 0%, #3f67ff 45%, #1bc6cf 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-weight: 700;
  text-shadow: 0 0.5px 0 rgba(15, 35, 78, 0.08);
  animation: gradient-shift 6s ease infinite;
}
.glass {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(20, 135, 216, 0.12);
  box-shadow: 0 16px 40px -24px rgba(15, 35, 78, 0.2);
}
.glass-strong {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(20, 135, 216, 0.16);
  box-shadow: 0 18px 45px -24px rgba(15, 35, 78, 0.18);
}
.grid-bg {
  position: absolute; inset: 0; opacity: .4;
  background-image:
    linear-gradient(oklch(1 0 0 / 0.04) 1px, transparent 1px),
    linear-gradient(90deg, oklch(1 0 0 / 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.noise {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  border-radius: 9999px; padding: .85rem 1.5rem;
  font-weight: 600; font-size: 1rem;
  transition: transform .3s cubic-bezier(0.22,1,0.36,1), box-shadow .3s, background .3s, border-color .3s;
  white-space: nowrap;
}
.btn [data-lucide] { width: 1.1em; height: 1.1em; }
.btn-primary {
  background: var(--gradient-primary); background-size: 200% 200%;
  color: white; box-shadow: var(--shadow-glow);
  animation: gradient-shift 6s ease infinite;
}
.btn-primary:hover { box-shadow: var(--shadow-glow-accent); transform: translateY(-2px) scale(1.02); }
.btn-ghost {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(20, 135, 216, 0.18);
  color: var(--primary);
}
.btn-ghost:hover { background: linear-gradient(135deg, rgba(20,135,216,0.1), rgba(90,123,255,0.08)); transform: translateY(-2px); }
.btn.block { display: flex; justify-content: center; width: 100%; }

/* ===== Link underline ===== */
.link-line { position: relative; font-size: .875rem; color: var(--muted-fg); transition: color .3s; }
.link-line:hover { color: var(--primary); }
.link-line::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 100%;
  background: var(--gradient-primary); transform: scaleX(0); transform-origin: right;
  transition: transform .4s cubic-bezier(0.22,1,0.36,1);
}
.link-line:hover::after { transform: scaleX(1); transform-origin: left; }
.link-line.active { color: var(--primary); font-weight: 700; }

/* ===== Navbar ===== */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding: 0.75rem 0; transition: padding .5s; }
#navbar.scrolled { padding: .4rem 0; }
.nav-inner { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
.nav-bar {
  display: flex; align-items: center; justify-content: space-between;
  border-radius: 9999px; padding: .75rem 1.25rem; transition: all .5s;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(20, 135, 216, 0.14);
  box-shadow: 0 18px 45px -24px rgba(15, 35, 78, 0.16);
}
#navbar.scrolled .nav-bar {
  background: rgba(255,255,255,0.9);
  border-color: rgba(20, 135, 216, 0.18);
  box-shadow: var(--shadow-card);
}
.logo { display: inline-flex; align-items: center; gap: .5rem; }
.logo-mark {
  width: 2.25rem; height: 2.25rem; border-radius: .85rem;
  background: var(--gradient-primary); display: grid; place-items: center;
  box-shadow: var(--shadow-glow); transition: transform .5s;
}
.logo-mark.sm { width: 2rem; height: 2rem; border-radius: .55rem; }
.logo:hover .logo-mark { transform: rotate(12deg); }
.logo-mark span { font-family: "Space Grotesk", sans-serif; font-weight: 700; color: var(--primary-fg); }
.logo-text img{
    height: 42px;
    width: auto;

}
.nav-links { display: none; gap: 2rem; align-items: center; }
.nav-cta { display: none; padding: .6rem 1.25rem; font-size: .875rem; }
.nav-toggle { display: inline-flex; }
.nav-toggle [data-lucide] { width: 1.5rem; height: 1.5rem; }
.nav-mobile {
  display: none; /* hidden by default on mobile until toggled open */
  margin-top: .75rem; padding: 1.25rem; border-radius: 1rem;
  flex-direction: column; gap: 1rem;
  background: oklch(1 0 0 / 0.92);
  backdrop-filter: blur(24px);
  border: 1px solid oklch(0.4 0.05 260 / 0.12);
}
.nav-mobile.is-active { display: flex; }
@media (min-width: 768px) {
  .nav-links, .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
}
.link-line.active { color: var(--primary); }
.nav-mobile a.active { color: var(--primary); }

/* ===== Hero ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding: 7rem 0 5rem; }
.hero-title { text-shadow: 0 1px 0 rgba(255,255,255,0.6); }
.hero-title .gradient-text,
.hero-title .gradient-text-primary {
  display: inline-block;
  padding: 0 .12em;
  border-radius: .3em;
  filter: saturate(1.15);
}
.hero-sub, .section-head p, .service-card p, .process-card p, .pricing-card p, .testi-quote, .contact-card p { color: var(--muted-fg); }
.section { position: relative; padding: 5rem 0; }
.section::before { content: ""; position: absolute; inset: 0; background: var(--section-gradient); opacity: .45; z-index: -1; }
.section-head { margin-bottom: 2.5rem; }
.section-head .tag, .tag {
  display: inline-flex; align-items: center; gap: .5rem; padding: .42rem .8rem; border-radius: 999px; background: rgba(255,255,255,0.72); border: 1px solid rgba(20, 135, 216, 0.12); color: var(--primary); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em;
}
.service-card, .process-card, .pricing-card, .testi-card, .contact-card, .partner-logo-card, .section-card, .service-card .inner {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(20, 135, 216, 0.12);
  box-shadow: var(--shadow-card);
}
.service-card:hover, .process-card:hover, .pricing-card:hover, .testi-card:hover, .contact-card:hover, .partner-logo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 56px -24px rgba(15, 35, 78, 0.22);
}

/* ===== Courses page ===== */
.courses-page { padding-top: 4rem; }
.courses-hero-section { padding-top: 6rem; }
.courses-hero-card {
  display: grid; gap: 2rem; padding: 2rem; border-radius: 2rem; overflow: hidden;
  box-shadow: var(--shadow-card);
}
.courses-hero-copy h1 { font-size: clamp(2.2rem, 4.6vw, 3.5rem); }
.courses-hero-sub { margin-top: 1.25rem; font-size: 1.05rem; max-width: 44rem; }
.course-meta {
  display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem;
}
.course-meta li {
  display: inline-flex; align-items: center; gap: .45rem; padding: .6rem .9rem;
  border-radius: 999px; background: oklch(1 0 0 / 0.75); border: 1px solid oklch(0.4 0.05 260 / 0.1);
  font-size: .95rem; color: var(--muted-fg);
}
.courses-hero-visual { display: flex; align-items: center; justify-content: center; }
.course-visual-card {
  width: min(100%, 25rem); padding: 2rem; border-radius: 1.5rem; text-align: center;
  background: linear-gradient(135deg, oklch(1 0 0 / 0.95), oklch(0.96 0.01 260 / 0.92));
  box-shadow: var(--shadow-glow);
  transition: transform .35s ease, box-shadow .35s ease;
}
.course-visual-card:hover { transform: translateY(-6px) scale(1.01); }
.course-visual-icon {
  display: inline-flex; align-items: center; justify-content: center; width: 4rem; height: 4rem; border-radius: 1rem;
  background: var(--gradient-primary); color: white; font-size: 1.6rem; margin-bottom: 1rem;
}
.course-badge {
  display: inline-flex; align-items: center; justify-content: center; padding: .4rem .8rem; border-radius: 999px;
  background: var(--gradient-primary); color: white; font-size: .8rem; font-weight: 700; margin-bottom: 1rem;
}
.course-summary-card, .coming-soon-panel {
  padding: 2rem; border-radius: 1.75rem; box-shadow: var(--shadow-card);
}
.course-summary-top {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem;
}
.course-summary-grid {
  display: grid; gap: 1rem; grid-template-columns: repeat(2, minmax(0, 1fr));
}
.course-summary-grid h3 { font-size: 1rem; margin-bottom: .25rem; }
.course-summary-grid p { color: var(--foreground); }
.skills-grid, .benefits-grid, .pill-grid {
  display: grid; gap: 1rem; grid-template-columns: repeat(2, minmax(0, 1fr));
}
.skill-card, .benefit-card, .pill-card {
  display: flex; align-items: center; gap: .7rem; padding: 1rem 1.1rem; border-radius: 1rem;
  transition: transform .3s ease, box-shadow .3s ease;
}
.skill-card:hover, .benefit-card:hover, .pill-card:hover, .timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.skill-card i, .benefit-card i { color: var(--primary); font-size: 1.15rem; }
.benefit-card { flex-direction: column; align-items: flex-start; }
.pill-card { justify-content: center; font-weight: 600; }
.timeline {
  display: grid; gap: 1rem; grid-template-columns: 1fr;
}
.timeline-card {
  padding: 1.4rem; border-radius: 1.25rem; position: relative; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.timeline-number {
  display: inline-flex; align-items: center; justify-content: center; width: 2.6rem; height: 2.6rem; border-radius: 999px;
  background: var(--gradient-primary); color: white; font-weight: 700; margin-bottom: .75rem;
}
.coming-soon-panel { text-align: center; }
.coming-soon-panel h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin: 1rem 0; }
.coming-soon-panel p { font-size: 1.05rem; max-width: 42rem; margin: 0 auto; }
@media (min-width: 768px) {
  .courses-hero-card { grid-template-columns: 1.35fr .9fr; align-items: center; padding: 3rem; }
  .skills-grid, .benefits-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pill-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .course-summary-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .timeline { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-content { width: 100%; text-align: center; }
.hero-content > * { max-width: 56rem; margin-left: auto; margin-right: auto; }
.badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .375rem 1rem; border-radius: 9999px; font-size: .75rem; font-weight: 500;
  background: oklch(1 0 0 / 0.85); border: 1px solid oklch(0.4 0.05 260 / 0.12);
  backdrop-filter: blur(24px); margin-bottom: 2rem;
}
.badge [data-lucide] { color: var(--primary); width: .85rem; height: .85rem; }
.ping { position: relative; display: inline-flex; width: .5rem; height: .5rem; }
.ping span:first-child { position: absolute; inset: 0; border-radius: 9999px; background: var(--primary); opacity: .75; animation: ping 1.5s cubic-bezier(0,0,.2,1) infinite; }
.ping span:last-child { position: relative; width: .5rem; height: .5rem; border-radius: 9999px; background: var(--primary); }
@keyframes ping { 75%,100% { transform: scale(2.2); opacity: 0; } }

.hero-title {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 700; line-height: 1.05; margin-top: 0;
}
.hero-title span.reveal-up { display: block; }
.underline-wrap { position: relative; display: inline-block; }
.underline-wrap svg { position: absolute; left: 0; bottom: -.5rem; width: 100%; height: 14px; }
.hero-sub { margin-top: 2rem; font-size: 1.125rem; color: var(--muted-fg); max-width: 38rem; }
.hero-ctas { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.hero-stats {
  margin-top: 5rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  max-width: 56rem;
}
@media (min-width: 640px) { .hero-stats { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.stat {
  padding: 1rem; border-radius: 1rem; text-align: center;
  background: oklch(1 0 0 / 0.85); backdrop-filter: blur(24px);
  border: 1px solid oklch(0.4 0.05 260 / 0.12);
  animation: float 5s ease-in-out infinite;
  transition: transform .5s;
}
.stat:nth-child(2) { animation-delay: .5s; }
.stat:nth-child(3) { animation-delay: 1s; }
.stat:nth-child(4) { animation-delay: 1.5s; }
.stat:hover { transform: translateY(-8px); }
.stat-v { font-family: "Space Grotesk", sans-serif; font-size: 1.875rem; font-weight: 700; }
.stat-l { font-size: .75rem; color: var(--muted-fg); margin-top: .25rem; }

.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: none; flex-direction: column; align-items: center; gap: .5rem;
  animation: float 6s ease-in-out infinite;
}
.scroll-cue span { font-size: 10px; letter-spacing: .3em; color: var(--muted-fg); }
.scroll-cue div { width: 1px; height: 2.5rem; background: linear-gradient(to bottom, var(--primary), transparent); }
@media (min-width: 640px) { .scroll-cue { display: flex; } }

/* =====================================================================
   BLOB FIX
   ---------------------------------------------------------------------
   ORIGINAL PROBLEM: the `blob` keyframes animated `border-radius`
   (organic shape morphing) AT THE SAME TIME as these elements already
   had `filter: blur(60-80px)` applied, and there were 6 of these
   running on an infinite loop simultaneously. Animating border-radius
   forces the browser to repaint + re-blur every single frame (it is
   NOT a GPU-compositable property), which is the main cause of jank,
   especially on mobile.

   FIX: keep the exact same visual blobs (color, position, size, blur)
   but only animate `transform` (translate + rotate + scale), which
   runs entirely on the GPU compositor thread. Shape no longer morphs,
   but movement/breathing is preserved and it costs ~nothing to render.
   ===================================================================== */
.blob { position: absolute; filter: blur(60px); border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; pointer-events: none; }
.blob-1 { top: 15%; left: -8rem; width: 420px; height: 420px; background: oklch(0.65 0.25 290 / 0.4); animation: blob 14s ease-in-out infinite; }
.blob-2 { bottom: 10%; right: -8rem; width: 500px; height: 500px; background: oklch(0.7 0.22 320 / 0.30); animation: blob 14s ease-in-out infinite 4s; }
.blob-3 { top: 40%; left: 50%; width: 300px; height: 300px; background: oklch(0.75 0.18 220 / 0.20); animation: blob 14s ease-in-out infinite 8s; }
.bg-soft { position: absolute; inset: 0; z-index: -1; opacity: .5; }
.blob-soft-a { top: 33%; left: 25%; width: 24rem; height: 24rem; background: oklch(0.65 0.25 290 / 0.15); border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; filter: blur(60px); position: absolute; animation: blob 14s ease-in-out infinite; }
.blob-soft-b { bottom: 33%; right: 25%; width: 24rem; height: 24rem; background: oklch(0.7 0.22 320 / 0.15); border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; filter: blur(60px); position: absolute; animation: blob 14s ease-in-out infinite 5s; }

.blob, .blob-soft-a, .blob-soft-b, .contact-blob-a, .contact-blob-b {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}
/* Reduce blob activity further on small/low-power screens */
@media (max-width: 768px) {
  .blob, .blob-soft-a, .blob-soft-b, .contact-blob-a, .contact-blob-b {
    animation-duration: 18s; /* slightly slower = fewer paint updates per second */
  }
}
@media (prefers-reduced-motion: reduce) {
  .blob, .blob-soft-a, .blob-soft-b, .contact-blob-a, .contact-blob-b,
  .stat, .scroll-cue, [class*="reveal"] {
    animation: none !important;
  }
}

/* ===== Marquee ===== */
.marquee-section {
  background: rgba(255,255,255,0.58);
  border-top: 1px solid rgba(20,135,216,0.11);
  border-bottom: 1px solid rgba(20,135,216,0.11);
  overflow: hidden;
}
.marquee-track { display: flex; gap: 3rem; width: max-content; animation: scroll-x 25s linear infinite; white-space: nowrap; align-items: center; }
.marquee-item { display: inline-flex; align-items: center; gap: 3rem; }
.marquee-item span {
  font-family: "Space Grotesk", sans-serif; font-size: 2rem; font-weight: 700;
  color: rgba(15, 35, 78, 0.12); transition: color .3s;
}
.marquee-item span:hover { background: var(--gradient-primary); -webkit-background-clip: text; background-clip: text; color: transparent; }
.marquee-item [data-lucide] { color: var(--primary); width: 1.25rem; height: 1.25rem; }
@media (min-width: 640px) { .marquee-item span { font-size: 2.5rem; } }

/* ===== Sections ===== */
.section { position: relative; padding: 6rem 0; }
@media (min-width: 640px) { .section { padding: 8rem 0; } }
.services-section { position: relative; overflow: hidden; }
.section-head { max-width: 48rem; margin: 0 auto 4rem; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.15; }
.section-head p { margin-top: 1.25rem; font-size: 1.125rem; }
.tag {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .375rem 1rem; border-radius: 9999px; font-size: .75rem; font-weight: 600;
  color: var(--primary); text-transform: uppercase; letter-spacing: .05em;
  background: rgba(20, 135, 216, 0.08); border: 1px solid rgba(20, 135, 216, 0.16);
  margin-bottom: 1.25rem;
}
.tag [data-lucide] { width: .9rem; height: .9rem; }

/* ===== Process ===== */
.process-grid { display: grid; gap: 1.25rem; position: relative; }
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-line {
  display: none; position: absolute; top: 3rem; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(20,135,216,0.24), transparent);
}
@media (min-width: 1024px) { .process-line { display: block; } }
.process-card {
  position: relative; padding: 1.75rem; border-radius: 1.25rem;
  background: rgba(255,255,255,0.78); border: 1px solid rgba(20,135,216,0.12);
  transition: transform .5s cubic-bezier(0.22,1,0.36,1);
}
.process-card:hover { transform: translateY(-8px); }
.step-num {
  position: absolute; top: -.75rem; right: -.75rem;
  width: 2.25rem; height: 2.25rem; border-radius: 9999px;
  background: var(--gradient-primary); display: grid; place-items: center;
  font-size: .75rem; font-weight: 700; color: white; box-shadow: var(--shadow-glow);
}
.icon-box {
  width: 3rem; height: 3rem; border-radius: 1rem; display: grid; place-items: center;
  background: rgba(20,135,216,0.09); border: 1px solid rgba(20,135,216,0.14);
  margin-bottom: 1.25rem; color: var(--primary);
  transition: transform .4s;
}
.icon-box.sm { width: 2.75rem; height: 2.75rem; border-radius: .75rem; margin-bottom: 0; }
.icon-box [data-lucide] { width: 1.5rem; height: 1.5rem; }
.process-card:hover .icon-box { transform: scale(1.1); }
.process-card h3, .services-grid h3, .audit-head h3, .pricing-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: .5rem; }
.process-card p, .services-grid p { font-size: .875rem; line-height: 1.6; }

/* gradient border */
.gradient-border { position: relative; }
.gradient-border::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
  background: conic-gradient(from 0deg,
    oklch(0.65 0.25 290 / 0), oklch(0.7 0.22 320 / 0.8),
    oklch(0.75 0.18 220 / 0.8), oklch(0.65 0.25 290 / 0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: spin-slow 8s linear infinite;
  opacity: 0; transition: opacity .4s;
}
.gradient-border:hover::before { opacity: 1; }

/* ===== Services ===== */
.services-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  position: relative; overflow: hidden; padding: 1.75rem; border-radius: 1.5rem;
  background: rgba(255,255,255,0.82); backdrop-filter: blur(24px);
  border: 1px solid rgba(20,135,216,0.12);
  transition: transform .5s cubic-bezier(0.22,1,0.36,1), border-color .3s;
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(20,135,216,0.28); }
.service-card .glow {
  position: absolute; top: -5rem; right: -5rem; width: 12rem; height: 12rem;
  border-radius: 9999px; background: var(--gradient-primary); filter: blur(60px);
  opacity: 0; transition: opacity .7s;
}
.service-card:hover .glow { opacity: .3; }
.service-card .icon-box { transition: transform .5s; }
.service-card:hover .icon-box { transform: rotate(12deg) scale(1.1); }
.service-card .more {
  display: inline-flex; align-items: center; gap: .25rem; margin-top: 1.25rem;
  font-size: .875rem; font-weight: 500; color: var(--primary);
  opacity: 0; transform: translateX(-.5rem); transition: all .5s;
}
.service-card:hover .more { opacity: 1; transform: translateX(0); }
.service-card .inner { position: relative; }

/* ===== Audit ===== */
.audit-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .audit-grid { grid-template-columns: repeat(2, 1fr); } }
.audit-card {
  position: relative; overflow: hidden; padding: 2.5rem; border-radius: 1.5rem;
  background: rgba(255,255,255,0.82); backdrop-filter: blur(24px);
  border: 1px solid rgba(20,135,216,0.12);
  transition: transform .5s;
}
.audit-card:hover { transform: translateY(-8px); }
.audit-top { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient-primary); }
.audit-head { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem; }
.audit-head h3 { font-size: 1.5rem; font-weight: 600; }
.check-list li {
  display: flex; gap: .75rem; align-items: flex-start; padding: .25rem 0;
  font-size: .875rem; color: rgba(15,35,78,0.86);
}
.check {
  margin-top: .15rem; width: 1.25rem; height: 1.25rem; border-radius: 9999px;
  display: grid; place-items: center; flex-shrink: 0;
  background: rgba(20,135,216,0.09); border: 1px solid rgba(20,135,216,0.15);
  transition: all .3s;
}
.check [data-lucide] { width: .75rem; height: .75rem; color: var(--primary); }
.check-list li:hover .check { background: var(--primary); transform: scale(1.1); }
.check-list li:hover .check [data-lucide] { color: white; }

/* ===== Pricing ===== */
.pricing-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: start; } }
.pricing-card {
  position: relative; padding: 2rem; border-radius: 1.5rem;
  background: rgba(255,255,255,0.82); backdrop-filter: blur(24px);
  border: 1px solid rgba(20,135,216,0.12);
  transition: transform .5s, border-color .3s;
}
.pricing-card:hover { transform: translateY(-8px); border-color: rgba(20,135,216,0.24); }
.pricing-card.featured {
  background: linear-gradient(180deg, rgba(20,135,216,0.08), rgba(90,123,255,0.06), rgba(255,255,255,0.92));
  border: 2px solid rgba(20,135,216,0.24);
  box-shadow: var(--shadow-glow);
}
@media (min-width: 1024px) { .pricing-card.featured { transform: scale(1.05); } }
.popular {
  position: absolute; top: -1rem; left: 50%; transform: translateX(-50%);
  background: var(--gradient-primary); color: white;
  padding: .25rem 1rem; border-radius: 9999px; font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; box-shadow: var(--shadow-glow); white-space: nowrap;
}
.plan-tag { font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; color: var(--primary); font-weight: 600; margin-bottom: .5rem; }
.plan-name { font-size: 1.5rem; font-weight: 700; margin-bottom: .75rem; font-family: "Space Grotesk"; }
.plan-desc { font-size: .875rem; }
.plan-price-wrap { margin: 1.5rem 0; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(20,135,216,0.12); }
.plan-price-label { font-size: .75rem; color: var(--muted-fg); }
.plan-price { display: flex; align-items: baseline; gap: .25rem; margin-top: .25rem; }
.plan-price strong { font-family: "Space Grotesk"; font-size: 2.25rem; font-weight: 700; }
.plan-price small { font-size: .875rem; color: var(--muted-fg); }
.plan-features { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.plan-features li { display: flex; gap: .75rem; font-size: .875rem; color: rgba(15,35,78,0.86); }
.plan-features [data-lucide] { color: var(--primary); width: 1rem; height: 1rem; flex-shrink: 0; margin-top: .15rem; }
.plan-cta {
  display: block; text-align: center; padding: .75rem 1.5rem;
  border-radius: 9999px; font-weight: 600; transition: all .3s;
  background: rgba(255,255,255,0.7); border: 1px solid rgba(20,135,216,0.16);
}
.plan-cta:hover { background: rgba(20,135,216,0.08); transform: scale(1.05); }
.pricing-card.featured .plan-cta {
  background: var(--gradient-primary); color: white; box-shadow: var(--shadow-glow); border: none;
}

/* ===== Testimonials ===== */
.testimonials-section { overflow: hidden; }
.testi-wrap { position: relative; }
.fade-l, .fade-r { position: absolute; top: 0; bottom: 0; width: 8rem; z-index: 10; pointer-events: none; }
.fade-l { left: 0; background: linear-gradient(to right, var(--background), transparent); }
.fade-r { right: 0; background: linear-gradient(to left, var(--background), transparent); }
.testi-track { display: flex; gap: 1.5rem; width: max-content; animation: marquee 35s linear infinite; }
.testi-card {
  width: 380px; flex-shrink: 0; padding: 1.75rem; border-radius: 1.5rem;
  background: rgba(255,255,255,0.82); backdrop-filter: blur(24px);
  border: 1px solid rgba(20,135,216,0.12); transition: border-color .3s;
}
.testi-card:hover { border-color: rgba(20,135,216,0.28); }
@media (min-width: 640px) { .testi-card { width: 420px; } }
.stars { display: flex; gap: .25rem; margin-bottom: 1rem; color: var(--primary); }
.stars [data-lucide] { width: 1rem; height: 1rem; fill: currentColor; }
.testi-quote { color: rgba(15,35,78,0.86); line-height: 1.6; margin-bottom: 1.25rem; font-size: 15px; }
.testi-foot { display: flex; align-items: center; gap: .75rem; padding-top: 1rem; border-top: 1px solid rgba(20,135,216,0.12); }
.avatar {
  width: 2.5rem; height: 2.5rem; border-radius: 9999px; background: var(--gradient-primary);
  display: grid; place-items: center; color: white; font-weight: 600; font-size: .875rem;
}
.testi-name { font-size: .875rem; font-weight: 600; }
.testi-role { font-size: .75rem; color: var(--muted-fg); }

/* ===== Contact ===== */
.contact-card {
  position: relative; overflow: hidden; padding: 2.5rem; border-radius: 2rem;
  background: rgba(255,255,255,0.82); backdrop-filter: blur(24px);
  border: 1px solid rgba(20,135,216,0.12);
}
@media (min-width: 640px) { .contact-card { padding: 3.5rem; } }
.contact-blob-a { top: -8rem; right: -8rem; width: 18rem; height: 18rem; background: rgba(20,135,216,0.16); border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; filter: blur(60px); position: absolute; animation: blob 14s ease-in-out infinite; }
.contact-blob-b { bottom: -8rem; left: -8rem; width: 18rem; height: 18rem; background: rgba(90,123,255,0.15); border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; filter: blur(60px); position: absolute; animation: blob 14s ease-in-out infinite 4s; }
.contact-grid { position: relative; display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
.contact-card h2 { font-size: clamp(1.875rem, 3.5vw, 2.5rem); font-weight: 700; line-height: 1.15; margin-top: 0; }
.contact-info { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-row { display: flex; align-items: center; gap: .75rem; color: var(--foreground); transition: color .3s; }
a.contact-row:hover { color: var(--primary); }
a.contact-row:hover .icon-box { transform: scale(1.1) rotate(12deg); }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: .75rem 1rem; border-radius: .75rem;
  background: rgba(247,251,255,0.95);
  border: 1px solid rgba(20,135,216,0.14);
  color: var(--foreground); font-size: .875rem; font-family: inherit;
  transition: all .3s;
}
.contact-form textarea { resize: none; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--muted-fg); }
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(20,135,216,0.14);
}

/* ===== Footer ===== */
footer { position: relative; border-top: 1px solid rgba(20,135,216,0.12); padding: 3rem 0; margin-top: 2.5rem; background: linear-gradient(180deg, rgba(20,135,216,0.03), rgba(255,255,255,0.2)); }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; padding-bottom: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-col { display: flex; flex-direction: column; gap: .85rem; }
.footer-tagline { max-width: 24rem; line-height: 1.6; }
.footer-heading { font-family: "Space Grotesk", sans-serif; font-size: 1rem; font-weight: 600; color: var(--foreground); margin-bottom: .25rem; }
.footer-list { display: flex; flex-direction: column; gap: .6rem; }
.footer-list li { font-size: .875rem; color: var(--muted-fg); }
.footer-contact-row { font-size: .875rem; }
.footer-bottom { border-top: 1px solid rgba(20,135,216,0.12); padding: 1.5rem 0; text-align: center; }
.socials { display: flex; gap: .75rem; }
.socials a {
  width: 2.5rem; height: 2.5rem; border-radius: 9999px;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(24px);
  border: 1px solid rgba(20,135,216,0.14);
  display: grid; place-items: center; color: var(--primary);
  transition: all .3s;
}
.socials a:hover { color: white; background: var(--gradient-primary); border-color: transparent; transform: translateY(-4px) scale(1.1); }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s cubic-bezier(0.22,1,0.36,1), transform .9s cubic-bezier(0.22,1,0.36,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-up { animation: text-reveal 1s cubic-bezier(0.22,1,0.36,1) both; }

/* =====================================================================
   KEYFRAMES
   `blob` below ONLY touches `transform` now (GPU-compositable).
   border-radius is set once as a static value on each .blob* class
   above instead of being animated, so the shape no longer morphs
   but still drifts/rotates/breathes smoothly with near-zero cost.
   ===================================================================== */
@keyframes gradient-shift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes float {
  0%,100% { transform: translateY(0) translateX(0); }
  33% { transform: translateY(-20px) translateX(10px); }
  66% { transform: translateY(10px) translateX(-10px); }
}
@keyframes blob {
  0%,100% { transform: translate(0,0) rotate(0deg) scale(1); }
  33% { transform: translate(30px,-20px) rotate(60deg) scale(1.05); }
  66% { transform: translate(-20px,20px) rotate(-30deg) scale(0.95); }
}
@keyframes spin-slow { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-100%); } }
@keyframes text-reveal {
  from { opacity: 0; transform: translateY(40px) rotateX(-30deg); }
  to { opacity: 1; transform: translateY(0) rotateX(0); }
}

.partners-marquee-section { padding: 1.5rem 0 3rem; overflow: hidden; }
.partners-fade-l, .partners-fade-r { position: absolute; top: 0; bottom: 0; width: 6rem; z-index: 5; pointer-events: none; }
.partners-fade-l { left: 0; background: linear-gradient(to right, var(--background), transparent); }
.partners-fade-r { right: 0; background: linear-gradient(to left, var(--background), transparent); }
.partners-marquee-wrap { position: relative; overflow: hidden; }
.partners-track { display: flex; gap: 3.5rem; width: max-content; align-items: center; animation: scroll-x 30s linear infinite; }
.partners-track .partner-logo {
  height: 44px; width: auto; max-width: 140px; object-fit: contain;
  filter: grayscale(1) brightness(1.6); opacity: .65;
  transition: filter .35s, opacity .35s, transform .35s;
}
.partners-track .partner-logo:hover { filter: none; opacity: 1; transform: scale(1.08); }
@media (min-width: 640px) { .partners-track .partner-logo { height: 56px; } }
@media (prefers-reduced-motion: reduce) {
  .blob, .blob-soft-a, .blob-soft-b, .contact-blob-a, .contact-blob-b,
  .stat, .scroll-cue, [class*="reveal"] { animation: none !important; }
}

.partner-card-logo {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.partner-card-logo img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ===== Achievements Gallery (Instagram-style grid) ===== */
.gallery-grid {
  display: grid; gap: .85rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item {
  position: relative; overflow: hidden; border-radius: 1rem;
  aspect-ratio: 1 / 1;
  border: 1px solid oklch(0.4 0.05 260 / 0.12);
  background: var(--card);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s cubic-bezier(0.22,1,0.36,1);
}
.gallery-item:hover img { transform: scale(1.08); }

/* ===== ERP Coming Soon page ===== */
.erp-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700; line-height: 1.1; margin: 2rem 0 1.5rem;
}
.pill-list {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem;
  margin: 2.5rem 0;
}
.pill {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem 1.1rem; border-radius: 9999px; font-size: .8rem; font-weight: 500;
  background: oklch(1 0 0 / 0.85); border: 1px solid oklch(0.4 0.05 260 / 0.12);
  backdrop-filter: blur(24px); color: var(--foreground);
  box-shadow: 0 4px 16px -8px oklch(0.4 0.05 260 / 0.1);
}
.pill [data-lucide] { width: .8rem; height: .8rem; color: var(--primary); }
.notify-form {
  display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center;
  max-width: 32rem; margin: 0 auto;
}
.notify-form input {
  flex: 1; min-width: 14rem; padding: .85rem 1.25rem; border-radius: 9999px;
  background: oklch(0.97 0.01 260 / 0.85); border: 1px solid var(--border);
  color: var(--foreground); font-size: .875rem; font-family: inherit;
}
.notify-form input::placeholder { color: var(--muted-fg); }
.notify-form input:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px oklch(0.55 0.22 280 / 0.2);
}
.coming-soon-tag {
  display: inline-block; margin-top: 1.25rem; font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; color: var(--primary);
}
