html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, sans-serif;
}

.bg-grid {
  background-image:
    radial-gradient(circle at 20% 20%, rgba(247, 148, 29, 0.22), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(32, 125, 233, 0.22), transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(247, 148, 29, 0.12), transparent 45%),
    linear-gradient(135deg, #0B1220, #0F172A);
}

.site-header.scrolled {
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-animated {
  position: relative;
  background: #0a1628;
}

.hero-animated canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-animated::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(10, 22, 40, 0.2), rgba(10, 22, 40, 0.85));
  pointer-events: none;
  z-index: 1;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  z-index: 10;
  pointer-events: auto;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.hero-scroll:hover {
  transform: translateX(-50%) translateY(4px);
  border-color: rgba(255, 255, 255, 0.6);
}

.hero-scroll-ring {
  position: absolute;
  inset: -6px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: pulseRing 2.2s ease-out infinite;
}

@keyframes pulseRing {
  0% { transform: scale(0.9); opacity: 0.7; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { opacity: 0; }
}

.hero-glass-card {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  padding: 28px;
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.45);
}


.hero-cta-outline {
  border-radius: 9999px;
  padding: 0.85rem 2.1rem;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.hero-cta-outline:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
}

.hero-cta-outline-blue {
  border-color: rgba(59, 130, 246, 0.7);
  color: #e0f2fe;
}

.hero-cta-outline-blue:hover {
  border-color: rgba(59, 130, 246, 0.95);
  background: rgba(59, 130, 246, 0.08);
}

.mobile-menu-btn {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.mobile-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 14, 26, 0.96);
  backdrop-filter: blur(16px);
}

.mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
}

.mobile-services {
  padding: 8px 0 16px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.mobile-services a {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 8px 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mobile-action {
  flex: 1;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.mobile-action-wa {
  border-color: rgba(37, 211, 102, 0.5);
  background: rgba(37, 211, 102, 0.15);
}

.hero-down {
  margin: 32px auto 0;
  height: 44px;
  width: 44px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: transform 0.2s ease, border-color 0.2s ease;
  animation: bounce 2s ease-in-out infinite;
}

.hero-down:hover {
  transform: translateY(4px);
  border-color: rgba(255, 255, 255, 0.6);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.btn {
  border-radius: 9999px;
  padding: 0.85rem 2.2rem;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-small {
  padding: 0.55rem 1.3rem;
  font-size: 0.8rem;
}

.btn-primary {
  background: #F7941D;
  color: #0B1220;
  box-shadow: 0 20px 60px rgba(247, 148, 29, 0.28);
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  background: #207DE9;
  color: #ffffff;
}

.btn-secondary:hover {
  opacity: 0.9;
}

.btn-quote {
  position: relative;
  overflow: hidden;
}

.btn-quote::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.25), transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn-quote:hover::after {
  transform: translateX(0);
}

.whatsapp-pill {
  background: #25D366;
  color: #ffffff;
  width: 42px;
  height: 42px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.whatsapp-pill:hover {
  opacity: 0.85;
}

.service-icon {
  height: 32px;
  width: 32px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #0F172A;
  box-shadow: none;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.9));
}

.service-card:hover .service-icon {
  transform: translateY(-3px) scale(1.02);
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.service-list li::before {
  content: none;
}

.service-list ion-icon {
  color: #16a34a;
  font-size: 0.95rem;
}

.service-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 12px 14px;
  color: #475569;
  background: #ffffff;
}

.service-feature ion-icon {
  color: #16a34a;
  font-size: 1.1rem;
}

.service-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: radial-gradient(circle at top, #ffffff 0%, #f8fafc 55%, #f1f5f9 100%);
  padding: 22px 18px;
  color: #334155;
  box-shadow: 0 22px 45px -40px rgba(15, 23, 42, 0.45);
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-feature-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

.service-feature-icon {
  flex: 0 0 36px;
  height: 36px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px -16px rgba(15, 23, 42, 0.6);
}

.service-feature-icon ion-icon {
  color: #0f172a;
  font-size: 1.1rem;
}

.service-feature-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  pointer-events: none;
}

.service-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 23, 42, 0.18);
  box-shadow: 0 28px 60px -36px rgba(15, 23, 42, 0.6);
}

.what-you-get-section {
  position: relative;
  overflow: hidden;
}

.what-you-get-section::before {
  content: "";
  position: absolute;
  right: -20%;
  top: -30%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(32, 125, 233, 0.12), rgba(255, 255, 255, 0));
  filter: blur(10px);
  pointer-events: none;
}

.what-you-get-section::after {
  content: "";
  position: absolute;
  left: -15%;
  bottom: -25%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(247, 148, 29, 0.12), rgba(255, 255, 255, 0));
  filter: blur(8px);
  pointer-events: none;
}

.process-mini {
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  padding: 20px;
}

.process-mini h3 {
  margin-top: 8px;
  font-weight: 700;
}

.process-mini p {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #64748b;
}

.deliverable {
  border-radius: 14px;
  border: 1px dashed rgba(15, 23, 42, 0.15);
  padding: 12px 14px;
  color: #475569;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.value-card {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  padding: 16px 18px;
  color: #475569;
}

.cta-panel {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cta-grid-bg {
  position: relative;
  overflow: hidden;
}

.cta-grid-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.6;
  pointer-events: none;
}

.cta-grid-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.18), transparent 50%),
              radial-gradient(circle at 80% 30%, rgba(248, 148, 29, 0.18), transparent 50%);
  pointer-events: none;
}

.cta-grid-bg .cta-panel {
  position: relative;
  z-index: 2;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: center;
  justify-items: center;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  padding: 24px;
}

.client-logo-grid img {
  max-height: 52px;
  width: auto;
  opacity: 0.75;
  filter: saturate(0.9);
}

.client-proof-wrap {
  border-radius: 28px;
  background: #0b1220;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
  overflow: hidden;
}

.client-logo-grid-dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.client-logo-grid-dark img {
  opacity: 0.9;
  filter: none;
}

.testimonial-marquee {
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #f8fafc;
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: testimonialMarquee 32s linear infinite;
  padding: 18px 28px;
}

.testimonial-card {
  min-width: 240px;
  max-width: 300px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  padding: 16px 18px;
  color: #334155;
  font-size: 0.95rem;
}

.testimonial-card span {
  margin-top: 12px;
  display: block;
  font-size: 0.8rem;
  color: #64748b;
}

.testimonial-marquee-dark {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.testimonial-marquee::before,
.testimonial-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.testimonial-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(248, 250, 252, 1), rgba(248, 250, 252, 0));
}

.testimonial-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(248, 250, 252, 1), rgba(248, 250, 252, 0));
}

.testimonial-marquee-dark::before {
  background: linear-gradient(90deg, rgba(11, 18, 32, 1), rgba(11, 18, 32, 0));
}

.testimonial-marquee-dark::after {
  background: linear-gradient(270deg, rgba(11, 18, 32, 1), rgba(11, 18, 32, 0));
}

.testimonial-marquee-dark .testimonial-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(15, 23, 42, 0.6);
  color: #e2e8f0;
}

.testimonial-marquee-dark .testimonial-card span {
  color: rgba(226, 232, 240, 0.7);
}

.testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.testimonial-stars {
  display: inline-flex;
  gap: 4px;
  color: #f59e0b;
  font-size: 0.9rem;
}

.testimonial-badge {
  color: #3b82f6;
  font-size: 1.1rem;
}

.clients-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
  justify-items: center;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #ffffff;
  padding: 20px;
}

.clients-row img {
  max-height: 46px;
  width: auto;
  opacity: 0.8;
}

.service-hero {
  background: linear-gradient(135deg, #0a1628, #0f1f3b);
}

.service-hero-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  gap: 20px;
  z-index: 1;
}

.service-hero-icons ion-icon {
  font-size: 2.4rem;
  color: #e0f2fe;
  animation: floatSlow 10s ease-in-out infinite;
}

.service-hero-content {
  position: relative;
  z-index: 2;
}

.hero-contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.hero-contact-chip ion-icon {
  font-size: 1rem;
}

.hero-contact-chip-wa {
  border-color: rgba(16, 185, 129, 0.5);
  color: #d1fae5;
}

.service-hero-icons ion-icon:nth-child(2) { animation-delay: 1s; }
.service-hero-icons ion-icon:nth-child(3) { animation-delay: 2s; }
.service-hero-icons ion-icon:nth-child(4) { animation-delay: 3s; }
.service-hero-icons ion-icon:nth-child(5) { animation-delay: 4s; }
.service-hero-icons ion-icon:nth-child(6) { animation-delay: 5s; }

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.service-cta {
  position: absolute;
  right: 20px;
  top: 20px;
  height: 38px;
  width: 38px;
  border-radius: 9999px;
  background: #0F172A;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-cta {
  opacity: 1;
  transform: translateY(0);
}

.stats-band {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-band:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.stat-number {
  font-feature-settings: "tnum" 1, "lnum" 1;
  letter-spacing: -0.02em;
  transition: transform 0.6s ease, opacity 0.6s ease;
  opacity: 0.4;
  transform: translateY(6px);
}

.stat-number.is-visible {
  opacity: 1;
  transform: translateY(0);
  text-shadow: 0 12px 24px rgba(15, 23, 42, 0.15);
}

.testimonial-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 320px;
  min-height: 170px;
  line-height: 1.5;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
}

.testimonial-section {
  background:
    radial-gradient(circle at 20% 10%, rgba(247, 148, 29, 0.15), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(32, 125, 233, 0.16), transparent 45%),
    linear-gradient(135deg, #0B1220, #0F172A);
}

.testimonial-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(transparent 75%, rgba(255, 255, 255, 0.05) 76%),
    linear-gradient(90deg, transparent 75%, rgba(255, 255, 255, 0.05) 76%);
  background-size: 24px 24px;
  opacity: 0.15;
  pointer-events: none;
}

.testimonial-section {
  position: relative;
  overflow: hidden;
}

.testimonial-marquee {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
  padding: 16px 0;
  gap: 32px;
}

.testimonial-marquee-reverse {
  animation-direction: reverse;
  margin-top: 12px;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
  color: #0F172A;
  text-align: left;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.35s ease;
  opacity: 0;
}

.faq-item.open .faq-panel {
  max-height: 200px;
  opacity: 1;
  margin-top: 16px;
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.footer-glow {
  position: relative;
  overflow: hidden;
}

.footer-glow::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(247, 148, 29, 0.28), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

.footer-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.footer-col {
  min-height: 100%;
}

.footer-services-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-icon {
  height: 40px;
  width: 40px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.footer-icon:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 9999px;
  padding: 0.75rem 1.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(15, 23, 42, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
  border-color: rgba(15, 23, 42, 0.3);
}

.contact-btn-phone {
  color: #0F172A;
  background: #ffffff;
}

.contact-btn-whatsapp {
  color: #0F172A;
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.3);
}

.sticky-bar {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.sticky-bar a {
  color: #0F172A;
}

.sticky-bar ion-icon {
  color: #0F172A;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  border-radius: 28px;
  background: #ffffff;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.25);
  animation: modalIn 0.25s ease;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 9999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@keyframes modalIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.process-stack-list {
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 28px;
}

.process-card {
  position: sticky;
  top: 120px;
  z-index: var(--z);
  will-change: transform;
}

.process-card-inner {
  transform: translateY(calc(var(--offset) * 14px - var(--progress, 0) * 18px))
    scale(calc(1 - var(--offset) * 0.02 + var(--progress, 0) * 0.015));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card-inner:hover {
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.process-stack {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}

.process-left {
  background: linear-gradient(135deg, rgba(247, 148, 29, 0.12), rgba(32, 125, 233, 0.12));
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.process-right {
  padding: 24px;
}

.process-icon {
  height: 54px;
  width: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #0F172A;
  font-size: 1.4rem;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}

.process-step {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.6);
}

@media (min-width: 768px) {
  .process-stack {
    grid-template-columns: 1fr 1fr;
  }

  .process-left {
    border-right: 1px solid rgba(15, 23, 42, 0.08);
  }
}

@media (max-width: 1024px) {
  .process-stack-list {
    max-width: 100%;
  }

  .process-card {
    position: relative;
    top: auto;
  }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-marquee {
  animation: ticker 28s linear infinite;
  width: max-content;
}


@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero-media {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  min-height: 360px;
}

.hero-media canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media .hero-overlay {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.pill-label {
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.4rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.section-title {
  font-weight: 800;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .cta-panel {
    padding: 24px;
  }

  .client-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 18px;
  }

  .service-hero-content {
    padding-top: 7.5rem;
  }

  .service-hero-content .pill-label {
    margin-top: 0.5rem;
  }

  .client-proof-wrap {
    padding: 24px;
  }
}

@media (min-width: 768px) {
  .cta-panel {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@keyframes testimonialMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-track {
    animation: none;
  }
}



/* =========================
   TESTIMONIALS DARK FIX
========================= */

.testimonial-section {
  background: linear-gradient(135deg, #0B1220, #0F172A);
}

.testimonial-section .testimonial-card,
.testimonial-section .testimonial-marquee,
.testimonial-section .testimonial-track {
  background: transparent !important;
}

.testimonial-section .testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}



 /* ============================
   FORCE DARK TESTIMONIAL FIX
   (OVERRIDES LIGHT MARQUEE)
============================ */

/* Remove white marquee background */
.testimonial-section .testimonial-marquee {
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.12);
}

/* Kill white fade edges */
.testimonial-section .testimonial-marquee::before,
.testimonial-section .testimonial-marquee::after {
  display: none !important;
}

/* Dark glass cards */
.testimonial-section .testimonial-card {
  background: rgba(15, 23, 42, 0.65) !important;
  border-color: rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
}

/* Text tone fix */
.testimonial-section .testimonial-card p {
  color: rgba(226, 232, 240, 0.85);
}
