/* ═══════════════════════════════════════════
   DESIGN TOKENS — single source of truth
   ═══════════════════════════════════════════ */
:root {
  /* Backgrounds */
  --co-white:   #FFFFFF;
  --co-surface: #F8FAFC;
  /* Primary accent */
  --co-brand:   #2563EB;
  --co-brand-hover: #1D4ED8;
  --co-brand-bg: rgba(37, 99, 235, 0.08);
  /* Text — 5-token palette */
  --co-heading: #0f172a;
  --co-body:    #334155;
  --co-muted:   #64748b;
  /* Border / shadow */
  --co-border:  #E2E8F0;
  --co-shadow-sm: 0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --co-shadow-card: 0 4px 16px -4px rgba(15,23,42,0.08);
  /* Radius — badge 6px, control 8px, card 12–16px */
  --co-radius-badge: 0.375rem;
  --co-radius-control: 0.5rem;
  --co-radius-card: 0.75rem;
  --co-radius-card-lg: 1rem;
  --co-radius-xl:   1.25rem;
  /* Type scale */
  --co-text-xs: 0.75rem;
  --co-text-sm: 0.875rem;
  --co-text-base: 1rem;
  --co-text-xl: 1.25rem;
  --co-text-2xl: 1.5rem;
  --co-text-3xl: 1.875rem;
  --co-nav-h: 5rem; /* h-20 fixed navbar */
}

/* ── Unified nav (all pages) ── */
#site-nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
#site-nav .nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--co-nav-h);
}
#site-nav.nav-scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
}
#site-nav.nav-scrolled .nav-light { color: #0F172A !important; }
.nav-light { color: #1E293B; }

/* Baseline-aligned nav links — Services toggle matches link height */
#site-nav nav[aria-label="Main navigation"] {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 768px) {
  #site-nav nav[aria-label="Main navigation"] {
    display: flex;
  }
}
@media (min-width: 640px) {
  #site-nav nav[aria-label="Main navigation"] {
    gap: 0.5rem;
  }
}
#site-nav nav[aria-label="Main navigation"] > a,
#services-toggle {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.875rem; /* py-2 px-3.5 */
  font-size: 0.875rem;
  line-height: 1.25rem;
  border-radius: 0.5rem;
  transition: color 0.2s ease, background 0.2s ease;
  min-height: 0;
  min-width: 0;
  height: auto;
  box-sizing: border-box;
}
#services-toggle {
  gap: 0.375rem; /* gap-1.5 */
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  color: #475569;
}
#site-nav nav[aria-label="Main navigation"] > a:not(.bg-blue-50) {
  font-weight: 500;
  color: #475569;
}
#site-nav nav[aria-label="Main navigation"] > a:not(.bg-blue-50):hover,
#services-toggle:not(.bg-blue-50):hover {
  color: #2563eb;
}
#site-nav nav[aria-label="Main navigation"] > a.bg-blue-50,
#services-toggle.bg-blue-50 {
  background: #eff6ff;
  color: #1d4ed8;
  font-weight: 600;
}
#mob-services-btn {
  min-height: 44px;
}

/* ── Unified hero section spacing (clears fixed h-20 nav) ── */
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--co-nav-h) + 2.5rem); /* nav + pt-10 */
  padding-bottom: 4rem; /* pb-16 */
}
@media (min-width: 1024px) {
  .hero-section {
    padding-top: calc(var(--co-nav-h) + 3.5rem); /* nav + lg:pt-14 */
    padding-bottom: 5rem; /* lg:pb-20 */
  }
}
.hero-section-inner {
  max-width: 80rem; /* max-w-7xl */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .hero-section-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .hero-section-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.hero-section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-section-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 3rem;
  }
}
.hero-section-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  .hero-section-copy {
    grid-column: span 6 / span 6;
  }
}
.hero-section-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero-section-visual {
    grid-column: span 6 / span 6;
  }
}

/* ── Footer (light theme) ── */
.site-footer {
  position: relative;
  background: #FFFFFF;
  border-top: 1px solid #E2E8F0;
}

.footer-nav-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 640px) {
  .footer-nav-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .footer-nav-grid {
    grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
    align-items: start;
  }
  .footer-col--nav {
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }
  .footer-col--nav .footer-col-title {
    margin-bottom: 1.25rem;
  }
  .footer-col-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .footer-col-list.space-y-3 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 0;
  }
}

.footer-brand-logo {
  display: block;
  transition: opacity 0.25s ease;
}
.footer-brand:hover .footer-brand-logo {
  opacity: 0.85;
}

.footer-col-title {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: #2563EB;
  border-radius: 1px;
  transition: width 0.35s ease;
}
.footer-col:hover .footer-col-title::after { width: 100%; }

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: #1E293B;
  font-size: 0.875rem;
  line-height: 1.625;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease, gap 0.25s ease;
}
.footer-link::before {
  content: '';
  width: 0;
  height: 1px;
  background: #2563EB;
  transition: width 0.25s ease;
  order: -1;
}
.footer-link:hover,
.footer-link-active {
  color: #2563EB;
}
.footer-link:hover {
  transform: translateX(4px);
  gap: 0.5rem;
}
.footer-link:hover::before { width: 12px; }

button.footer-link {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
  text-align: left;
  width: 100%;
}

.footer-reveal-delay-4 { transition-delay: 0.4s; }

/* ── Legal modals ── */
#legal-modal {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
#legal-modal.is-open {
  opacity: 1;
  visibility: visible;
}
#legal-modal .legal-modal-card {
  transform: scale(0.96) translateY(10px);
  transition: transform 0.25s ease;
}
#legal-modal.is-open .legal-modal-card {
  transform: scale(1) translateY(0);
}
.legal-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  color: #64748B;
  transition: color 0.2s ease, background 0.2s ease;
}
.legal-modal-close:hover {
  color: #0F172A;
  background: #F8FAFC;
}
.legal-modal-close-icon {
  width: 2.25rem;
  height: 2.25rem;
  font-size: 1.25rem;
  line-height: 1;
}
.legal-modal-close-btn {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0F172A;
  border: 1px solid #E2E8F0;
  background: #FFFFFF;
}
.legal-modal-close-btn:hover {
  border-color: #CBD5E1;
  background: #F8FAFC;
}
.legal-modal-body h3 {
  color: #0F172A;
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
  line-height: 1.5;
}
.legal-modal-body h3:first-child {
  margin-top: 0;
}
.legal-modal-body p,
.legal-modal-body li {
  color: #1E293B;
  font-size: 0.875rem;
  line-height: 1.625;
}
.legal-modal-body ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
  list-style: disc;
}
.legal-modal-body .legal-updated {
  color: #64748B;
  font-size: 0.8125rem;
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid #E2E8F0;
  margin-top: 3rem;
  padding-top: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}
@media (min-width: 640px) {
  .footer-bottom-left {
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
  }
}

.footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.footer-legal-sep {
  color: #CBD5E1;
  font-size: 0.75rem;
  line-height: 1;
}

button.footer-legal-link {
  font-size: 0.75rem;
  color: #64748B;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s ease;
  font-family: inherit;
  line-height: normal;
}
button.footer-legal-link:hover {
  color: #2563EB;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #E2E8F0;
  background: #FFFFFF;
  color: #64748B;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: #2563EB;
  border-color: #2563EB;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px -4px rgba(37, 99, 235, 0.4);
}

.footer-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.footer-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.footer-reveal-delay-1 { transition-delay: 0.1s; }
.footer-reveal-delay-2 { transition-delay: 0.2s; }
.footer-reveal-delay-3 { transition-delay: 0.3s; }

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.625rem;
  width: 100%;
  max-width: 18rem;
  margin-left: 0;
  padding-left: 0;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem; /* w-9 */
  height: 2.25rem;
  border-radius: 0.5rem; /* rounded-lg */
  background: #F1F5F9; /* slate-100 */
  border: none;
  color: #64748B; /* slate-500 */
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.footer-social-link:hover {
  color: #2563EB;
  background: #EFF6FF; /* blue-50 */
  transform: translateY(-1px);
}
.footer-social-icon {
  width: 1rem;
  height: 1rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  width: 100%;
  margin-left: 0;
  padding-left: 0;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--co-radius-control);
  width: 100%;
  max-width: 18rem;
  box-sizing: border-box;
  border: 1px solid #E2E8F0;
  background: #F8FAFC;
  color: #0F172A;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.footer-contact-text {
  border-bottom: 1px dashed #94A3B8;
  text-underline-offset: 3px;
}
.footer-contact-hint {
  font-size: var(--co-text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2563EB;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
.footer-contact-link:hover,
.footer-contact-link:focus-visible {
  color: #2563EB;
  background: #FFFFFF;
  border-color: rgba(37, 99, 235, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px -10px rgba(37, 99, 235, 0.45);
}
.footer-contact-link:hover .footer-contact-text,
.footer-contact-link:focus-visible .footer-contact-text {
  border-bottom-style: solid;
  border-bottom-color: currentColor;
}
.footer-contact-link:hover .footer-contact-hint,
.footer-contact-link:focus-visible .footer-contact-hint {
  opacity: 1;
  transform: translateX(0);
}
.footer-contact-link--phone:hover,
.footer-contact-link--phone:focus-visible {
  color: #059669;
  border-color: rgba(5, 150, 105, 0.4);
  box-shadow: 0 8px 18px -10px rgba(5, 150, 105, 0.35);
}
.footer-contact-link--phone .footer-contact-hint {
  color: #059669;
}
.footer-contact-link--phone .footer-contact-icon {
  color: #059669;
}
.footer-contact-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: #2563EB;
}
.footer-contact-icon--fill {
  color: #25D366;
}

.footer-bottom-contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.footer-bottom-link {
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  border-bottom: 1px dashed #94A3B8;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-bottom-link:hover,
.footer-bottom-link:focus-visible {
  color: #2563EB;
  border-bottom-style: solid;
  border-bottom-color: #2563EB;
}
.footer-bottom-link--wa:hover,
.footer-bottom-link--wa:focus-visible {
  color: #128C7E;
  border-bottom-color: #128C7E;
}

/* Floating WhatsApp — muted accent so primary blue CTAs stay dominant */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem 0.375rem 0.375rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--co-radius-card);
  box-shadow: 0 10px 28px -12px rgba(15, 23, 42, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  text-decoration: none;
  color: #0F172A;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.wa-float:hover,
.wa-float:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(18, 140, 126, 0.28);
  box-shadow: 0 14px 32px -12px rgba(15, 23, 42, 0.28);
}
.wa-float-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--co-radius-control);
  background: rgba(17, 94, 89, 0.1);
  color: #0F766E;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.wa-float-icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 1px solid rgba(15, 118, 110, 0.18);
  opacity: 0.7;
  pointer-events: none;
}
.wa-float-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}
.wa-float-label {
  font-size: var(--co-text-xs);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #334155;
  white-space: nowrap;
  line-height: 1.2;
}
@media (prefers-reduced-motion: reduce) {
  .wa-float { transition: none; }
}
@media (max-width: 639px) {
  .wa-float {
    right: 1rem;
    bottom: 1rem;
    padding: 0.375rem;
  }
  .wa-float-label { display: none; }
}

/* Extra gutter on Contact so the float never crowds form fields */
body.contact-page .wa-float {
  right: 1.75rem;
  bottom: 1.75rem;
}
@media (min-width: 1024px) {
  body.contact-page .wa-float {
    right: 2.25rem;
    bottom: 2rem;
  }
}

/* ── Clients / partners marquee ── */
.clients-section {
  background: #FFFFFF;
}
.clients-mask {
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.clients-track {
  display: flex;
  width: max-content;
  animation: clientsScroll 42s linear infinite;
}
.clients-track-reverse {
  animation-direction: reverse;
  animation-duration: 38s;
}
.clients-set {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  flex-shrink: 0;
}
.clients-wrap:hover .clients-track { animation-play-state: paused; }
@keyframes clientsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.client-tile {
  flex-shrink: 0;
  width: 240px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  border-radius: var(--co-radius-card-lg);
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.client-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.25);
  background: #FFFFFF;
  box-shadow: 0 8px 24px -8px rgba(15, 23, 42, 0.08);
}
.client-tile img {
  max-height: 52px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}
.client-tile:hover img { transform: scale(1.03); }
@media (prefers-reduced-motion: reduce) {
  .clients-track { animation: none; }
}

/* ── Creative page banners (shared) ── */
.page-banner {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.page-banner-ambient {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.page-banner-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #CBD5E1 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 15%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 15%, transparent 70%);
}
.page-banner-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  animation: pageBannerOrb 16s ease-in-out infinite;
}
.page-banner-orb--1 { width: 24rem; height: 24rem; top: -12%; right: -8%; background: rgba(37, 99, 235, 0.11); }
.page-banner-orb--2 { width: 18rem; height: 18rem; bottom: -8%; left: 5%; background: rgba(147, 197, 253, 0.14); animation-delay: -6s; }
.page-banner-orb--3 { width: 12rem; height: 12rem; top: 40%; left: 45%; background: rgba(37, 99, 235, 0.07); animation-delay: -10s; }
@keyframes pageBannerOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-14px, 10px) scale(1.05); }
}
.page-banner-kicker {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--co-radius-badge);
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.12);
  font-size: var(--co-text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2563EB;
  margin-bottom: 1.25rem;
}
.page-banner-kicker--title {
  text-transform: none;
  letter-spacing: 0.01em;
  font-weight: 600;
}
.page-banner-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2563EB;
  animation: pageBannerPulse 2s ease-in-out infinite;
}
@keyframes pageBannerPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
/* No decorative highlight bars on hero accent words */
h1 .text-brand::before,
h1 .text-brand::after,
h1 span.text-brand::before,
h1 span.text-brand::after,
h2 .text-brand::before,
h2 .text-brand::after,
h2 span.text-brand::before,
h2 span.text-brand::after {
  content: none !important;
  display: none !important;
}
.page-banner-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.page-banner-stat {
  padding: 0.625rem 1rem;
  border-radius: 0.875rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid #E2E8F0;
  box-shadow: 0 2px 8px -2px rgba(15, 23, 42, 0.06);
}
.page-banner-stat strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.2;
}
.page-banner-stat span {
  font-size: var(--co-text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748B;
}
.page-banner-visual {
  position: relative;
  min-height: 280px;
}
.page-banner-float {
  position: absolute;
  border-radius: 1rem;
  border: 1px solid #E2E8F0;
  background: #fff;
  box-shadow: 0 12px 32px -8px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.page-banner-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.18);
}
.page-banner-float-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
}
.page-banner-float-dot { width: 7px; height: 7px; border-radius: 50%; background: #CBD5E1; }
.page-banner-float--main { width: 72%; top: 8%; right: 0; z-index: 3; animation: pageBannerFloatA 7s ease-in-out infinite; }
.page-banner-float--a { width: 48%; top: 42%; left: 0; z-index: 2; animation: pageBannerFloatB 8s ease-in-out infinite; }
.page-banner-float--b { width: 42%; bottom: 4%; right: 12%; z-index: 1; animation: pageBannerFloatC 9s ease-in-out infinite; }
@keyframes pageBannerFloatA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes pageBannerFloatB {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@keyframes pageBannerFloatC {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.page-banner-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  aspect-ratio: 1;
  border: 1px dashed rgba(37, 99, 235, 0.15);
  border-radius: 50%;
  pointer-events: none;
}
.page-banner-phases {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 2rem;
}
.page-banner-phase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.page-banner-phase-num {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 4px 12px -2px rgba(15, 23, 42, 0.2);
}
.page-banner-phase-line {
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, #CBD5E1, #2563EB, #CBD5E1);
  opacity: 0.5;
}
.page-banner-section {
  position: relative;
  overflow: hidden;
}
.page-banner-section-ambient {
  pointer-events: none;
  position: absolute;
  inset: 0;
}
.page-banner-section-ambient .page-banner-orb { filter: blur(80px); opacity: 0.7; }
.contact-banner-panel .page-banner-orb--1 { top: -20%; right: -15%; }
.contact-banner-panel .page-banner-orb--2 { bottom: 10%; left: -10%; }
.contact-deco-card {
  position: absolute;
  padding: 0.75rem 1rem;
  border-radius: 0.875rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid #E2E8F0;
  box-shadow: 0 8px 24px -6px rgba(15, 23, 42, 0.1);
  font-size: 0.75rem;
  font-weight: 600;
  color: #0F172A;
  animation: pageBannerFloatA 6s ease-in-out infinite;
}
.contact-deco-card--a { top: 12%; right: 8%; animation-delay: -2s; }
.contact-deco-card--b { bottom: 18%; right: 5%; animation-delay: -4s; }
@media (prefers-reduced-motion: reduce) {
  .page-banner-orb,
  .page-banner-float,
  .contact-deco-card { animation: none !important; }
}

/* Bottom CTA band — blue gradient (all pages) */
.section-cta-light {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background: transparent !important;
  border-top: none !important;
}
.section-cta-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 45%, #0f172a 100%);
  z-index: 0;
}
.section-cta-light::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}
.section-cta-light > div {
  position: relative;
  z-index: 2;
}
.section-cta-light h2 {
  color: #fff !important;
}
.section-cta-light p {
  color: rgba(226, 232, 240, 0.85) !important;
}
.section-cta-light .portfolio-cta-btn,
.section-cta-light a[href*="contact"]:not([href^="mailto"]) {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--co-radius-control);
  background: #2563eb;
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 32px -4px rgba(37, 99, 235, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.section-cta-light .portfolio-cta-btn:hover,
.section-cta-light a[href*="contact"]:not([href^="mailto"]):hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -6px rgba(37, 99, 235, 0.65);
}
.section-cta-light a[href^="mailto:"],
.section-cta-light .cta-mail-link,
.portfolio-cta a[href^="mailto:"],
.portfolio-cta .cta-mail-link {
  color: #FFFFFF !important;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.15rem 0.45rem;
  border-radius: 0.4rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(255, 255, 255, 0.75);
  box-shadow: none !important;
  display: inline !important;
  transform: none !important;
}
.section-cta-light a[href^="mailto:"]:hover,
.section-cta-light .cta-mail-link:hover,
.portfolio-cta a[href^="mailto:"]:hover,
.portfolio-cta .cta-mail-link:hover {
  color: #FFFFFF !important;
  background: rgba(255, 255, 255, 0.22);
  text-decoration-color: #FFFFFF;
}
