:root {
  --brand: #0a57d0;
  --brand-glow: #3b7ce0;
  --green: #35c84a;
  --green-glow: #5fda71;
  --ink: #111827;
  --ink-soft: #4b5563;
  --surface: #f8fafc;
  --border: #e5e7eb;
  --gradient-brand: linear-gradient(135deg, #0a57d0 0%, #35c84a 100%);
  --gradient-hero:
    radial-gradient(
      1200px 600px at 10% 10%,
      rgba(10, 87, 208, 0.18),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 90% 20%,
      rgba(53, 200, 74, 0.18),
      transparent 60%
    ),
    radial-gradient(
      700px 500px at 50% 90%,
      rgba(10, 87, 208, 0.12),
      transparent 60%
    );
  --shadow-soft: 0 10px 30px -12px rgba(10, 87, 208, 0.18);
  --shadow-glow: 0 20px 60px -20px rgba(10, 87, 208, 0.35);
  --shadow-green: 0 20px 60px -20px rgba(53, 200, 74, 0.35);
  --shadow-card:
    0 1px 2px rgba(17, 24, 39, 0.04), 0 8px 24px -12px rgba(17, 24, 39, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.65);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
h1,
h2,
h3,
h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: "Manrope", sans-serif;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 96px 0;
  position: relative;
}
.bg-soft {
  background: linear-gradient(to bottom, #fff, var(--surface));
}
.center {
  text-align: center;
}
.muted {
  color: var(--ink-soft);
}
.narrow {
  max-width: 640px;
  margin: 16px auto 0;
}
.small {
  font-size: 12px;
}
.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.25s ease;
  font-family: "Manrope", sans-serif;
}
.btn i {
  font-size: 16px;
}
.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 999px;
}
.btn-lg {
  padding: 16px 24px;
  font-size: 16px;
}
.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  color: var(--ink);
}
.btn-ghost:hover {
  background: #fff;
  border-color: rgba(10, 87, 208, 0.3);
}
.btn-secondary {
  background: #f1f5f9;
  color: var(--ink);
  justify-content: center;
  width: 100%;
}
.btn-secondary:hover {
  background: var(--ink);
  color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--brand);
  box-shadow: var(--shadow-glow);
}
.btn-outline-white {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 1px 20px -10px rgba(10, 87, 208, 0.25);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand img {
  height: 44px;
  width: auto;
}
.nav-links {
  display: none;
  gap: 2px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 6px;
  box-shadow: var(--shadow-soft);
}
.nav-links a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: all 0.2s;
}
.nav-links a:hover {
  color: var(--brand);
  background: #fff;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.menu-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  margin: 0 16px 16px;
  padding: 16px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  padding: 12px 16px;
  border-radius: 16px;
  font-weight: 500;
  color: var(--ink);
}
.mobile-menu a.btn {
  color: #fff;
  text-align: center;
  justify-content: center;
  margin-top: 8px;
}
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
  .menu-btn {
    display: none;
  }
}
@media (max-width: 767px) {
  .btn-sm {
    display: none;
  }
}

/* Hero */
.hero {
  padding: 150px 0 90px;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: floatSlow 9s ease-in-out infinite;
}
.blob-1 {
  top: -100px;
  left: -100px;
  width: 520px;
  height: 520px;
  background: rgba(10, 87, 208, 0.15);
}
.blob-2 {
  top: 160px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: rgba(53, 200, 74, 0.2);
  animation-delay: -3s;
}
.dots-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(10, 87, 208, 0.1) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 30%,
    transparent 75%
  );
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 40px;
  }
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  padding: 6px 16px 6px 8px;
  box-shadow: var(--shadow-soft);
  font-size: 13px;
  font-weight: 600;
}
.chip-dot {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff;
  font-size: 12px;
}
.chip.light {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 6px 12px;
  font-size: 12px;
}
.hero-title {
  margin-top: 24px;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
}
.hero-sub {
  margin-top: 22px;
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.6;
}
.hero-tag {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}
.hero-ctas {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-row {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
}
.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.trust-row i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(53, 200, 74, 0.15);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

/* Dashboard visual */
.dashboard-wrap {
  position: relative;
  aspect-ratio: 6/5;
  width: 100%;
}
.dashboard-glow {
  position: absolute;
  inset: 24px;
  border-radius: 36px;
  background: var(--gradient-brand);
  opacity: 0.25;
  filter: blur(60px);
  animation: pulseGlow 3s ease-in-out infinite;
}
.dashboard-card {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  box-shadow: var(--shadow-glow);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dots {
  display: flex;
  gap: 6px;
}
.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dots span:nth-child(1) {
  background: #f87171;
}
.dots span:nth-child(2) {
  background: #fbbf24;
}
.dots span:nth-child(3) {
  background: #4ade80;
}
.dash-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.stat-mini {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 16px;
  padding: 12px;
}
.stat-mini .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
}
.stat-mini b {
  display: block;
  margin-top: 6px;
  font-size: 20px;
  color: var(--ink);
}
.ico {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-size: 12px;
}
.ico.blue {
  background: rgba(10, 87, 208, 0.1);
  color: var(--brand);
}
.ico.green {
  background: rgba(53, 200, 74, 0.15);
  color: var(--green);
}
.chart-box {
  flex: 1;
  min-height: 0;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #fff, var(--surface));
  border-radius: 20px;
  padding: 16px;
}
.chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.chart-title {
  font-size: 16px;
  font-weight: 700;
}
.chart-up {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--green);
  font-weight: 600;
  font-size: 14px;
}
.chart-svg {
  width: 100%;
  height: calc(100% - 44px);
}
.foot-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.fm {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.fm-ico {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
}
.fm-ico.blue {
  background: rgba(10, 87, 208, 0.1);
  color: var(--brand);
}
.fm-ico.green {
  background: rgba(53, 200, 74, 0.15);
  color: var(--green);
}
.fm b {
  display: block;
  margin-top: 2px;
  font-size: 14px;
}

.float-card {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 10px 16px 10px 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-glow);
  animation: float 6s ease-in-out infinite;
}
.fc-left {
  left: -12px;
  top: 33%;
}
.fc-right {
  right: -12px;
  bottom: 40px;
  animation-delay: -1s;
  box-shadow: var(--shadow-green);
}
.fc-ico {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
}
.fc-ico.grad {
  background: var(--gradient-brand);
}
.fc-ico.green {
  background: var(--green);
}
.float-card b {
  display: block;
  margin-top: 2px;
  font-size: 14px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes floatSlow {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(10px, -20px);
  }
}
@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}
.float-slow {
  animation: float 6s ease-in-out infinite;
}

/* Section head */
.section-head {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  margin-top: 14px;
}
.section-head p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
}
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  box-shadow: var(--shadow-soft);
}
.eyebrow-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient-brand);
}

/* Grids */
.grid-3,
.grid-4 {
  margin-top: 56px;
  display: grid;
  gap: 22px;
}
.grid-3 {
  grid-template-columns: 1fr;
}
.grid-4 {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feat-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.feat-ico {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--gradient-brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
  box-shadow: var(--shadow-soft);
}
.feat-card h3 {
  margin-top: 22px;
  font-size: 19px;
}
.feat-card p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.svc-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
  overflow: hidden;
  display: block;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(10, 87, 208, 0.3);
}
.svc-ico {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  color: #fff;
  font-size: 22px;
  box-shadow: var(--shadow-soft);
}
.svc-card.blue .svc-ico {
  background: linear-gradient(135deg, var(--brand), var(--brand-glow));
}
.svc-card.green .svc-ico {
  background: linear-gradient(135deg, var(--green), var(--green-glow));
}
.svc-card h3 {
  margin-top: 22px;
  font-size: 20px;
}
.svc-card p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}
.svc-card .link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  color: var(--brand);
  font-weight: 600;
  font-size: 14px;
}

/* Pricing */
.pricing-section {
  overflow: hidden;
}
.pricing-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0.4;
  pointer-events: none;
}
.pricing-grid {
  position: relative;
  margin-top: 64px;
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--gradient-brand) border-box;
  box-shadow: var(--shadow-glow);
}
@media (min-width: 1024px) {
  .price-card.featured {
    margin-top: -24px;
  }
}
.price-card .badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-brand);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-glow);
  white-space: nowrap;
}
.price-card h3 {
  font-size: 18px;
}
.price-card .price {
  margin-top: 24px;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.price-card .price .starting {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-right: 6px;
  vertical-align: middle;
}
.price-card ul {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.price-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
}
.price-card ul li::before {
  content: "✓";
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(53, 200, 74, 0.15);
  color: var(--green);
  font-weight: 900;
  font-size: 11px;
}
.price-card.featured ul li::before {
  background: var(--gradient-brand);
  color: #fff;
}
.price-card .btn {
  margin-top: 28px;
}

/* Digital marketing */
.dm-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
}
.dm-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.dm-ico {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--gradient-brand);
  color: #fff;
  font-size: 20px;
}
.dm-card h3 {
  margin-top: 18px;
  font-size: 19px;
}
.dm-price {
  margin-top: 6px;
  font-size: 22px;
  font-weight: 800;
  color: var(--brand);
}
.dm-price span {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
}
.dm-card p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}
.bar {
  margin-top: 16px;
  height: 6px;
  border-radius: 999px;
  background: #f1f5f9;
  overflow: hidden;
}
.bar > div {
  height: 100%;
  width: var(--w);
  background: var(--gradient-brand);
  border-radius: 999px;
}
.metric {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
}

/* Process */
.process {
  position: relative;
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1024px) {
  .process {
    grid-template-columns: repeat(5, 1fr);
  }
}
.process-line {
  display: none;
}
@media (min-width: 1024px) {
  .process-line {
    display: block;
    position: absolute;
    top: 32px;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(
      90deg,
      var(--brand),
      var(--green),
      var(--brand)
    );
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
  }
}
.step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
}
@media (min-width: 1024px) {
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.step-ico {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-glow);
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
}
.step-ico i {
  width: 44px;
  height: 44px;
  background: var(--gradient-brand);
  color: #fff;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-style: normal;
}
.step-n {
  position: absolute;
  top: -8px;
  left: 48px;
  width: 24px;
  height: 24px;
  background: #fff;
  border: 2px solid var(--brand);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  color: var(--brand);
  display: grid;
  place-items: center;
  z-index: 3;
}
@media (min-width: 1024px) {
  .step-n {
    left: auto;
    right: calc(50% - 44px);
  }
}
.step h3 {
  font-size: 16px;
  margin-top: 0;
}
@media (min-width: 1024px) {
  .step h3 {
    margin-top: 8px;
  }
}
.step p {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
}
@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.stats-grid h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-top: 14px;
}
.bullets {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-card);
}
.bullets i {
  width: 22px;
  height: 22px;
  background: var(--gradient-brand);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
}
.stats-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  position: relative;
}
.stat-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow-card);
}
.stat-card.shift {
  transform: translateY(24px);
}
.stat-card .num {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.stat-card .lbl {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}

/* Promise pills */
.pills {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 20px 8px 8px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-card);
  transition: all 0.25s;
}
.pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}
.pill span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 15px;
}

/* CTA */
.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: 52px;
  background: var(--gradient-brand);
  box-shadow: var(--shadow-glow);
  color: #fff;
}
@media (min-width: 768px) {
  .cta-card {
    padding: 64px;
  }
}
.cta-blob1 {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  filter: blur(60px);
}
.cta-blob2 {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(53, 200, 74, 0.4);
  filter: blur(60px);
}
.cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) {
  .cta-grid {
    grid-template-columns: 1.4fr 1fr;
  }
}
.cta-card h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
}
.cta-card > .cta-grid > div > p {
  margin-top: 16px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}
.perks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) {
  .perks {
    grid-template-columns: 1fr 1fr;
  }
}
.perks > div {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.perks i {
  width: 24px;
  height: 24px;
  background: #fff;
  color: var(--brand);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
}

/* Contact */
.contact-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}
.contact-info {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 36px;
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.contact-info::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(53, 200, 74, 0.4);
  filter: blur(60px);
}
.contact-info > * {
  position: relative;
}
.contact-info h3 {
  margin-top: 20px;
  font-size: 28px;
}
.contact-info > p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.6;
}
.info-rows {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.info-row > span {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.info-row b {
  display: block;
  margin-top: 2px;
  font-size: 14px;
}
.info-row .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}
.info-services {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.info-services .eyebrow {
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.15em;
}
.tags {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tags span {
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 6px 12px;
}

.contact-form {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 28px;
  padding: 28px;
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow-card);
}
.contact-form label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  margin-top: 6px;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--ink);
  font-family: inherit;
  transition: all 0.2s;
  resize: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(10, 87, 208, 0.2);
}
.row2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .row2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* Footer */
.footer {
  background: #0b1220;
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 24px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}
.footer h4 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer a {
  display: block;
  padding: 4px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.footer a:hover {
  color: #fff;
}
.footer p {
  font-size: 14px;
  margin-top: 14px;
  line-height: 1.6;
  max-width: 340px;
}
.footer-logo {
  height: 44px;
  filter: brightness(0) invert(1);
}
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25D366;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  z-index: 1000;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08);
}

.call-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background-color: #007BFF;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  z-index: 1000;
  transition: transform 0.2s ease;
  animation: pulse 2s infinite;
}
.call-float:hover {
  transform: scale(1.08);
}
@keyframes pulse {
  0% { box-shadow: 0 4px 10px rgba(0,0,0,0.25), 0 0 0 0 rgba(0,123,255,0.5); }
  70% { box-shadow: 0 4px 10px rgba(0,0,0,0.25), 0 0 0 12px rgba(0,123,255,0); }
  100% { box-shadow: 0 4px 10px rgba(0,0,0,0.25), 0 0 0 0 rgba(0,123,255,0); }
}
