/* =====================================================================
   SMR ONEWAY · Premium Overlay (additive, non-destructive)
   ----------------------------------------------------------------------
   Purpose: lift the existing site to a premium enterprise-software feel
   without touching markup, SEO, responsiveness, or existing animations.
   Strategy: layer on top of style.css + responsive.css. Selectors are
   intentionally specific to existing classes only. Mobile rules
   intentionally back-off heavy effects to keep it light.
   ===================================================================== */

/* ---------- 1. Brand tokens (overlay-scoped, do not redefine globals) */
:root {
  --pp-cyan: #00b4d8;
  --pp-cyan-soft: rgba(0, 180, 216, 0.14);
  --pp-violet: #7c5cff;
  --pp-violet-soft: rgba(124, 92, 255, 0.18);
  --pp-lime: #7ccf00;
  --pp-ink: #030a19;
  --pp-ink-2: #060f24;
  --pp-glow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 30px 60px -28px rgba(0, 180, 216, 0.35),
    0 18px 40px -22px rgba(124, 92, 255, 0.28);
  --pp-ring: 0 0 0 1px rgba(0, 180, 216, 0.28);
  --pp-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 2. Page atmosphere — cinematic ambient gradient */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 40% at 12% 8%, rgba(0, 180, 216, 0.10), transparent 60%),
    radial-gradient(ellipse 50% 38% at 92% 18%, rgba(124, 92, 255, 0.10), transparent 62%),
    radial-gradient(ellipse 70% 45% at 50% 110%, rgba(22, 191, 167, 0.06), transparent 70%);
  mix-blend-mode: screen;
  opacity: 0.85;
}

/* Subtle film grain — premium cinematic texture, GPU-cheap */
body > main::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
}

/* ---------- 3. Header — refined glass + smoother sticky */
.header {
  background: linear-gradient(180deg, rgba(3, 10, 25, 0.78) 0%, rgba(3, 10, 25, 0.62) 100%) !important;
  backdrop-filter: blur(22px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(22px) saturate(140%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 18px 32px -18px rgba(0, 0, 0, 0.55),
    0 0 24px rgba(0, 180, 216, 0.10) !important;
  transition: background 0.4s var(--pp-ease), box-shadow 0.4s var(--pp-ease);
}

.header.scrolled,
.header[data-scrolled="true"] {
  background: linear-gradient(180deg, rgba(3, 10, 25, 0.92) 0%, rgba(3, 10, 25, 0.86) 100%) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 22px 38px -16px rgba(0, 0, 0, 0.6),
    0 0 28px rgba(0, 180, 216, 0.16) !important;
}

.header .logo-text strong {
  letter-spacing: 0.02em;
  background: linear-gradient(120deg, #ffffff 30%, #cdebf6 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.header .nav > a,
.header .nav .nav-dropdown > a {
  font-weight: 500;
  letter-spacing: 0.012em;
}

/* Premium contact CTA in nav */
.header .nav .nav-contact-cta {
  background: linear-gradient(120deg, #00b4d8, #7c5cff) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  box-shadow:
    0 8px 18px -8px rgba(0, 180, 216, 0.55),
    0 4px 12px -6px rgba(124, 92, 255, 0.45) !important;
  transition: transform 0.25s var(--pp-ease), box-shadow 0.25s var(--pp-ease), filter 0.25s var(--pp-ease) !important;
}
.header .nav .nav-contact-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow:
    0 12px 24px -10px rgba(0, 180, 216, 0.65),
    0 6px 14px -6px rgba(124, 92, 255, 0.55) !important;
}

/* ---------- 4. Hero — cinematic depth + sharper hierarchy */
.section-home-hero {
  position: relative;
  isolation: isolate;
}

.section-home-hero::before {
  content: "";
  position: absolute;
  inset: -10% -5% auto -5%;
  height: 80%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 18% 30%, rgba(0, 180, 216, 0.18), transparent 60%),
    radial-gradient(ellipse 55% 55% at 82% 22%, rgba(124, 92, 255, 0.18), transparent 62%);
  filter: blur(8px);
  animation: pp-hero-aura 14s ease-in-out infinite alternate;
}

@keyframes pp-hero-aura {
  0% { transform: translate3d(-1%, 0, 0) scale(1); opacity: 0.85; }
  100% { transform: translate3d(2%, 1%, 0) scale(1.04); opacity: 1; }
}

/* Hero badge — refined pill */
.hero-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(0, 180, 216, 0.10), rgba(124, 92, 255, 0.10));
  border: 1px solid rgba(0, 180, 216, 0.28);
  color: #cdebf6;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03) inset, 0 8px 22px -10px rgba(0, 180, 216, 0.55);
}

.hero-badge .hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #00b4d8;
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.22);
  animation: pp-badge-pulse 2.4s ease-in-out infinite;
}

@keyframes pp-badge-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.22); }
  50%      { box-shadow: 0 0 0 6px rgba(0, 180, 216, 0.05); }
}

/* Hero heading — premium gradient, tighter tracking, fluid scale */
.hero-title,
.hero-heading {
  font-family: 'Poppins', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 1.05;
  font-size: clamp(2.25rem, 4.6vw, 3.85rem);
  background: linear-gradient(115deg, #ffffff 0%, #d6efff 38%, #b8a3ff 78%, #9ad5ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Hero supporting paragraph */
.hero-subline,
.hero-subline--lead {
  color: rgba(226, 240, 255, 0.82);
  font-size: clamp(1rem, 1.05vw + 0.85rem, 1.135rem);
  line-height: 1.65;
  max-width: 60ch;
}
.hero-subline--lead {
  color: rgba(232, 244, 255, 0.92);
  font-weight: 500;
}

.hero-subline a {
  color: #7fdcff;
  text-decoration: none;
  background-image: linear-gradient(90deg, rgba(0, 180, 216, 0.55), rgba(124, 92, 255, 0.55));
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: color 0.25s var(--pp-ease);
}
.hero-subline a:hover { color: #ffffff; }

/* Hero CTAs — premium shimmer + lifted depth */
.btn-hero-primary,
.section-cta-band .btn.btn-primary.btn-shine,
.btn.btn-primary.inline-flex.items-center.gap-2 {
  position: relative;
  overflow: hidden;
  padding: 14px 26px !important;
  border-radius: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.012em !important;
  background: linear-gradient(120deg, #00b4d8 0%, #5b8bff 55%, #7c5cff 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 12px 28px -12px rgba(0, 180, 216, 0.55),
    0 8px 20px -10px rgba(124, 92, 255, 0.45) !important;
  transition: transform 0.3s var(--pp-ease), box-shadow 0.3s var(--pp-ease), filter 0.3s var(--pp-ease) !important;
}

.btn-hero-primary::before,
.section-cta-band .btn.btn-primary.btn-shine::before,
.btn.btn-primary.inline-flex.items-center.gap-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-18deg);
  transition: left 0.7s var(--pp-ease);
  pointer-events: none;
}

.btn-hero-primary:hover,
.btn-hero-primary:focus-visible,
.section-cta-band .btn.btn-primary.btn-shine:hover,
.btn.btn-primary.inline-flex.items-center.gap-2:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 18px 38px -14px rgba(0, 180, 216, 0.7),
    0 12px 26px -10px rgba(124, 92, 255, 0.55) !important;
}

.btn-hero-primary:hover::before,
.section-cta-band .btn.btn-primary.btn-shine:hover::before,
.btn.btn-primary.inline-flex.items-center.gap-2:hover::before {
  left: 140%;
}

/* Secondary CTA — glass refined */
.btn-hero-secondary {
  padding: 14px 26px !important;
  border-radius: 14px !important;
  background: linear-gradient(180deg, rgba(15, 27, 45, 0.65), rgba(8, 18, 36, 0.85)) !important;
  border: 1px solid rgba(0, 180, 216, 0.32) !important;
  color: #e9f7ff !important;
  font-weight: 600 !important;
  letter-spacing: 0.012em !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 10px 22px -12px rgba(0, 0, 0, 0.55) !important;
  transition: transform 0.25s var(--pp-ease), border-color 0.25s var(--pp-ease), box-shadow 0.25s var(--pp-ease) !important;
}
.btn-hero-secondary:hover,
.btn-hero-secondary:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(124, 92, 255, 0.5) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 14px 28px -14px rgba(0, 0, 0, 0.65),
    0 0 22px rgba(124, 92, 255, 0.18) !important;
}

/* Hero trust strip + contact hint */
.hero-trust-strip {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(120deg, rgba(0, 180, 216, 0.07), rgba(124, 92, 255, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #cfe7f3;
  font-size: 0.86rem;
  letter-spacing: 0.012em;
}
.hero-contact-hint {
  color: rgba(226, 240, 255, 0.7);
  font-size: 0.94rem;
}
.hero-contact-hint strong { color: #ffffff; letter-spacing: 0.02em; }

/* Power links — premium chips on dark */
.home-power-links a {
  background: rgba(8, 18, 36, 0.7) !important;
  border: 1px solid rgba(0, 180, 216, 0.22) !important;
  color: #d6ecf6 !important;
  font-weight: 500 !important;
  padding: 8px 13px !important;
  border-radius: 999px !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.25s var(--pp-ease), border-color 0.25s var(--pp-ease), background 0.25s var(--pp-ease), color 0.25s var(--pp-ease);
}
.home-power-links a:hover {
  transform: translateY(-1px);
  background: rgba(13, 30, 58, 0.92) !important;
  border-color: rgba(0, 180, 216, 0.55) !important;
  color: #ffffff !important;
}

/* Hero device — lifted glass shell */
.home-hero-device-shell {
  border-radius: 22px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 30px 60px -22px rgba(0, 0, 0, 0.7),
    0 0 80px -30px rgba(0, 180, 216, 0.45),
    0 0 120px -40px rgba(124, 92, 255, 0.35) !important;
}

/* ---------- 5. Section rhythm — softer dividers, breathing room */
main > section {
  padding-top: clamp(72px, 7vw, 120px);
  padding-bottom: clamp(72px, 7vw, 120px);
}

main > section + section::before {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0, 180, 216, 0.45) 30%,
    rgba(124, 92, 255, 0.55) 50%,
    rgba(124, 207, 0, 0.4) 70%,
    transparent 100%) !important;
  filter: blur(0.4px);
  opacity: 0.6 !important;
}

/* Section eyebrows — refined uppercase chips */
.eyebrow,
.home-why-eyebrow__label,
.home-how-eyebrow__label {
  font-size: 0.74rem !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase;
  color: #7fdcff !important;
  font-weight: 700 !important;
}

.home-why-eyebrow__rule,
.home-how-eyebrow__rule {
  background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.5), transparent) !important;
}

/* Section titles — fluid, premium gradient option for highlighted spans */
.section-title,
.home-why-heading,
.home-how-heading {
  font-family: 'Poppins', 'Inter', system-ui, sans-serif;
  letter-spacing: -0.015em !important;
  line-height: 1.12 !important;
  font-size: clamp(1.85rem, 2.4vw + 1rem, 3rem) !important;
}

.home-why-heading__grad,
.home-how-heading__grad,
.section-home-reviews-heading__grad {
  background: linear-gradient(115deg, #00b4d8, #7c5cff 60%, #ffb6f4) !important;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

/* ---------- 6. Service cards — premium edge, custom hover, depth */
.core-service-card,
.home-why-card,
.home-how-tile,
.premium-card {
  border-radius: 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  background:
    linear-gradient(180deg, rgba(11, 22, 44, 0.78), rgba(5, 12, 28, 0.92)) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 22px 40px -24px rgba(0, 0, 0, 0.6) !important;
  transition: transform 0.5s var(--pp-ease), border-color 0.4s var(--pp-ease), box-shadow 0.5s var(--pp-ease) !important;
}

/* Refined gradient ring on hover */
.core-service-card,
.home-why-card,
.home-how-tile {
  position: relative;
  overflow: hidden;
}

.core-service-card::after,
.home-why-card::after,
.home-how-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s var(--pp-ease);
  background:
    radial-gradient(circle at var(--pp-mx, 50%) var(--pp-my, 0%), rgba(0, 180, 216, 0.20), transparent 45%),
    radial-gradient(circle at var(--pp-mx2, 80%) var(--pp-my2, 100%), rgba(124, 92, 255, 0.18), transparent 50%);
  z-index: 1;
}

.core-service-card:hover,
.home-why-card:hover,
.home-how-tile:hover,
.premium-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(0, 180, 216, 0.45) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 30px 50px -24px rgba(0, 0, 0, 0.7),
    0 0 30px -8px rgba(0, 180, 216, 0.3),
    0 0 28px -10px rgba(124, 92, 255, 0.28) !important;
}

.core-service-card:hover::after,
.home-why-card:hover::after,
.home-how-tile:hover::after { opacity: 1; }

/* Card body — improved hierarchy */
.core-service-card-body { padding: 22px 22px 24px !important; }
.core-service-card-body h3 {
  font-family: 'Poppins', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: -0.012em;
  line-height: 1.3;
}
.core-service-card-body p {
  color: rgba(220, 232, 246, 0.78) !important;
  font-size: 0.96rem;
  line-height: 1.6;
}

.core-service-learn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px !important;
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #7fdcff !important;
  transition: color 0.25s var(--pp-ease), gap 0.3s var(--pp-ease);
}

.core-service-card:hover .core-service-learn {
  color: #ffffff !important;
  gap: 10px;
}

.core-service-learn-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(0, 180, 216, 0.32), rgba(124, 92, 255, 0.32));
  border: 1px solid rgba(0, 180, 216, 0.4);
  font-size: 0.85rem;
  transition: transform 0.3s var(--pp-ease);
}
.core-service-card:hover .core-service-learn-ico { transform: translateX(3px); }

/* Service-card icon badge — refined glass */
.core-service-badge {
  background: linear-gradient(180deg, rgba(11, 22, 44, 0.7), rgba(5, 12, 28, 0.85)) !important;
  border: 1px solid rgba(0, 180, 216, 0.32) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 10px 22px -10px rgba(0, 180, 216, 0.4),
    0 6px 14px -6px rgba(124, 92, 255, 0.3) !important;
  color: #7fdcff !important;
}
.core-service-card:hover .core-service-badge {
  border-color: rgba(124, 92, 255, 0.55) !important;
  color: #ffffff !important;
}

/* ---------- 7. Why-SMR cards — refined accents */
.home-why-card { padding: 22px 20px 24px !important; }
.home-why-card__icon {
  width: 46px !important;
  height: 46px !important;
  border-radius: 13px !important;
  background: linear-gradient(120deg, rgba(0, 180, 216, 0.18), rgba(124, 92, 255, 0.18)) !important;
  border: 1px solid rgba(0, 180, 216, 0.28) !important;
  color: #7fdcff !important;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset, 0 10px 22px -10px rgba(0, 180, 216, 0.4) !important;
  transition: transform 0.4s var(--pp-ease), box-shadow 0.4s var(--pp-ease);
}
.home-why-card:hover .home-why-card__icon {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset, 0 14px 28px -10px rgba(0, 180, 216, 0.55) !important;
}
.home-why-card__title {
  font-size: 1.06rem !important;
  letter-spacing: -0.01em !important;
  font-weight: 700 !important;
  color: #ffffff !important;
}
.home-why-card__copy {
  color: rgba(220, 232, 246, 0.78) !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
}

/* ---------- 8. How-we-work tiles — same premium baseline */
.home-how-tile { padding: 22px 20px 24px !important; }
.home-how-tile__icon {
  width: 46px !important;
  height: 46px !important;
  border-radius: 13px !important;
  background: linear-gradient(120deg, rgba(0, 180, 216, 0.18), rgba(124, 92, 255, 0.18)) !important;
  border: 1px solid rgba(0, 180, 216, 0.28) !important;
  color: #7fdcff !important;
  box-shadow: 0 10px 22px -10px rgba(0, 180, 216, 0.4) !important;
}
.home-how-tile__title {
  font-size: 1.06rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  color: #ffffff !important;
}
.home-how-tile__copy {
  color: rgba(220, 232, 246, 0.78) !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
}

/* ---------- 9. Trust stats — premium counter feel */
.home-why-stats,
.home-how-stats {
  gap: 14px !important;
}

.home-why-stats__item,
.home-how-stats__item {
  background: linear-gradient(180deg, rgba(11, 22, 44, 0.85), rgba(5, 12, 28, 0.95)) !important;
  border: 1px solid rgba(0, 180, 216, 0.18) !important;
  border-radius: 16px !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 18px 32px -22px rgba(0, 0, 0, 0.55) !important;
  transition: transform 0.35s var(--pp-ease), border-color 0.35s var(--pp-ease), box-shadow 0.35s var(--pp-ease) !important;
}
.home-why-stats__item:hover,
.home-how-stats__item:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 92, 255, 0.45) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 22px 38px -22px rgba(0, 0, 0, 0.6),
    0 0 22px rgba(124, 92, 255, 0.18) !important;
}

.home-how-stats__value {
  font-family: 'Poppins', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(1.85rem, 2vw + 1rem, 2.5rem);
  background: linear-gradient(115deg, #ffffff 10%, #00e0ff 50%, #b8a3ff 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 28px rgba(0, 180, 216, 0.18);
}

.home-how-stats__label {
  color: rgba(207, 226, 240, 0.78) !important;
  font-size: 0.86rem !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase;
}

/* ---------- 10. CTA band — cinematic outcome strip */
.section-cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 28px clamp(20px, 3vw, 36px) !important;
  background:
    linear-gradient(125deg, rgba(0, 180, 216, 0.14) 0%, rgba(124, 92, 255, 0.18) 50%, rgba(22, 191, 167, 0.14) 100%),
    linear-gradient(180deg, rgba(8, 18, 36, 0.92), rgba(4, 10, 24, 0.98)) !important;
  border: 1px solid rgba(0, 180, 216, 0.28) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 30px 60px -28px rgba(0, 180, 216, 0.4),
    0 18px 40px -22px rgba(124, 92, 255, 0.32) !important;
}
.section-cta-band p {
  font-family: 'Poppins', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.15rem, 1vw + 0.95rem, 1.4rem);
  color: #ffffff;
  letter-spacing: -0.01em;
}

/* ---------- 11. FAQ / review polish (light pass, non-disruptive) */
.faq-item,
.faq-shell,
.review-card,
.review-proof-card,
.clients-review-card {
  border-radius: 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  background: linear-gradient(180deg, rgba(11, 22, 44, 0.75), rgba(5, 12, 28, 0.92)) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 22px 40px -28px rgba(0, 0, 0, 0.55) !important;
}

.review-proof-stars {
  color: #ffd166 !important;
  letter-spacing: 0.18em;
  text-shadow: 0 0 12px rgba(255, 209, 102, 0.4);
}

/* ---------- 12. Footer — polished enterprise feel */
.footer {
  position: relative;
  margin-top: clamp(60px, 6vw, 100px);
  padding-top: clamp(56px, 5vw, 80px) !important;
  background:
    linear-gradient(180deg, rgba(3, 10, 25, 0.98), rgba(2, 6, 18, 1)) !important;
  border-top: 1px solid rgba(0, 180, 216, 0.18) !important;
}
.footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.6), rgba(124, 92, 255, 0.55), transparent);
  filter: blur(0.4px);
  pointer-events: none;
}
.footer h3,
.footer h4 {
  font-family: 'Poppins', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #cdebf6;
}
.footer p,
.footer li,
.footer a {
  color: rgba(218, 232, 244, 0.78);
}
.footer a:hover { color: #ffffff; }

.footer ul li a {
  position: relative;
  padding-left: 0;
  transition: padding-left 0.3s var(--pp-ease), color 0.25s var(--pp-ease);
}
.footer ul li a:hover { padding-left: 8px; }
.footer ul li a:hover::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #00b4d8;
}

/* Footer social — premium tile */
.footer .social-link,
.footer-social a,
a.social-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 40px !important;
  height: 40px !important;
  border-radius: 12px !important;
  background: linear-gradient(180deg, rgba(11, 22, 44, 0.8), rgba(5, 12, 28, 0.95)) !important;
  border: 1px solid rgba(0, 180, 216, 0.25) !important;
  color: #cdebf6 !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 10px 22px -12px rgba(0, 180, 216, 0.35) !important;
  transition: transform 0.3s var(--pp-ease), border-color 0.3s var(--pp-ease), color 0.3s var(--pp-ease), box-shadow 0.3s var(--pp-ease) !important;
}
.footer .social-link:hover,
.footer-social a:hover,
a.social-link:hover {
  transform: translateY(-2px);
  color: #ffffff !important;
  border-color: rgba(124, 92, 255, 0.55) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 14px 28px -12px rgba(0, 180, 216, 0.55),
    0 6px 16px -8px rgba(124, 92, 255, 0.45) !important;
}

.footer-bottom {
  margin-top: clamp(32px, 3vw, 48px);
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(200, 218, 232, 0.6) !important;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}
.footer-bottom a {
  color: rgba(200, 218, 232, 0.78) !important;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 180, 216, 0.25);
  padding-bottom: 1px;
  transition: color 0.25s var(--pp-ease), border-color 0.25s var(--pp-ease);
}
.footer-bottom a:hover {
  color: #ffffff !important;
  border-bottom-color: #00b4d8;
}

/* ---------- 13. Sticky CTAs / WhatsApp / AI button — refined */
.sticky-quick-cta__btn,
.whatsapp-btn,
.ai-btn {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 14px 28px -14px rgba(0, 0, 0, 0.55),
    0 0 22px rgba(0, 180, 216, 0.18);
  transition: transform 0.3s var(--pp-ease), filter 0.3s var(--pp-ease), box-shadow 0.3s var(--pp-ease);
}
.sticky-quick-cta__btn:hover,
.whatsapp-btn:hover,
.ai-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* ---------- 14. Reveal motion — subtle elegant fade-up */
.reveal {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition: opacity 0.7s var(--pp-ease), transform 0.7s var(--pp-ease);
  will-change: opacity, transform;
}
.reveal.is-visible,
.reveal.in-view,
.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
/* Fallback: never leave reveal hidden if JS disabled */
@media (prefers-reduced-motion: no-preference) {
  html.no-js .reveal { opacity: 1; transform: none; }
}

/* ---------- 15. Selection + scrollbar — premium polish */
::selection {
  background: rgba(0, 180, 216, 0.4);
  color: #ffffff;
}

@supports (scrollbar-color: auto) {
  html { scrollbar-color: rgba(0, 180, 216, 0.45) transparent; }
}
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: rgba(3, 10, 25, 0.6); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(0, 180, 216, 0.45), rgba(124, 92, 255, 0.45));
  border-radius: 999px;
  border: 2px solid rgba(3, 10, 25, 0.6);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(0, 180, 216, 0.7), rgba(124, 92, 255, 0.7));
}

/* ---------- 16. Mobile guard rails — keep it light */
@media (max-width: 768px) {
  body::after,
  body > main::before,
  .section-home-hero::before {
    display: none !important;
  }

  .core-service-card:hover,
  .home-why-card:hover,
  .home-how-tile:hover,
  .premium-card:hover,
  .home-why-stats__item:hover,
  .home-how-stats__item:hover {
    transform: none !important;
  }

  .core-service-card::after,
  .home-why-card::after,
  .home-how-tile::after { display: none !important; }

  main > section {
    padding-top: clamp(54px, 12vw, 80px);
    padding-bottom: clamp(54px, 12vw, 80px);
  }

  .hero-title,
  .hero-heading {
    font-size: clamp(2rem, 8vw, 2.6rem) !important;
    line-height: 1.1 !important;
  }

  .btn-hero-primary,
  .btn-hero-secondary,
  .section-cta-band .btn.btn-primary.btn-shine {
    padding: 13px 22px !important;
    border-radius: 12px !important;
  }

  .footer .social-link,
  .footer-social a,
  a.social-link {
    width: 38px !important;
    height: 38px !important;
  }
}

/* ---------- 17. Reduced motion — disable all decorative motion */
@media (prefers-reduced-motion: reduce) {
  body::after,
  body > main::before,
  .section-home-hero::before,
  .hero-badge .hero-badge-dot,
  .btn-hero-primary::before,
  .btn.btn-primary.inline-flex.items-center.gap-2::before,
  .section-cta-band .btn.btn-primary.btn-shine::before {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal.is-visible,
  .reveal.in-view,
  .reveal.visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .core-service-card,
  .home-why-card,
  .home-how-tile,
  .premium-card,
  .home-why-stats__item,
  .home-how-stats__item {
    transition: none !important;
  }

  .core-service-card:hover,
  .home-why-card:hover,
  .home-how-tile:hover,
  .premium-card:hover,
  .home-why-stats__item:hover,
  .home-how-stats__item:hover {
    transform: none !important;
  }
}

/* ---------- 18. Print: keep it clean */
@media print {
  body::after,
  body > main::before,
  .section-home-hero::before,
  .sticky-quick-cta,
  .whatsapp-btn,
  .ai-btn,
  .ai-panel { display: none !important; }
}
