﻿/* ===================================================================
   Istmic Labs - Design System Tokens
   =================================================================== */

:root {
  /* - Colors - */
  --bg: #f9f8f3;
  --bg-soft: #f2efe8;
  --surface: rgba(124, 58, 237, 0.04);
  --surface-strong: rgba(124, 58, 237, 0.08);
  --card-surface: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(124, 58, 237, 0.08) 54%,
    rgba(124, 58, 237, 0.12) 100%
  );
  --card-surface-strong: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(124, 58, 237, 0.12) 54%,
    rgba(124, 58, 237, 0.18) 100%
  );
  --text: #1a1a1a;
  --muted: #6b7280;
  --accent: #7c3aed;
  --accent-soft: #1a1a1a;
  --accent-rose: #ff6b35;
  --cta: #7c3aed;
  --cta-hover: #6d28d9;
  --border: #e5e5e5;

  /* - Spacing & Layout - */
  --container: 1120px;
  --page-gutter: 3.6rem;
  --radius: 24px;
  --radius-sm: 14px;

  /* - Effects - */
  --shadow: 0 20px 48px rgba(26, 26, 26, 0.08);
  --shadow-glow: 0 0 45px rgba(124, 58, 237, 0.12);
  --blur: 18px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* - Animation Props - */
  --reveal-delay: 0ms;
  --scroll-progress: 0;
}


/* ===================================================================
   Reset & Base
   =================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
  isolation: isolate;
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

img {
  max-width: 100%;
  display: block;
  border-radius: calc(var(--radius) - 8px);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}


/* ===================================================================
   Ambient Background - Animated Orbs
   =================================================================== */

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  pointer-events: auto;
  border-radius: 50%;
  filter: blur(72px);
}

body::before {
  top: -10%;
  left: -5%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12), transparent 65%);
  animation: orbFloat1 18s ease-in-out infinite alternate;
}

body::after {
  bottom: -15%;
  right: -8%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1), transparent 65%);
  animation: orbFloat2 22s ease-in-out infinite alternate;
}

@keyframes orbFloat1 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(6vw, 8vh) scale(1.08); }
  100% { transform: translate(-4vw, 3vh) scale(0.95); }
}

@keyframes orbFloat2 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-5vw, -6vh) scale(1.1); }
  100% { transform: translate(3vw, -4vh) scale(0.92); }
}

/* Static fallback gradient behind the orbs */
body {
  background-image:
    linear-gradient(145deg, #f9f8f3 0%, #f6f3ed 28%, #f3efe7 58%, #f8f6f0 100%);
}


/* ===================================================================
   Accessibility
   =================================================================== */

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  background: var(--cta);
  color: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
}


/* ===================================================================
   Layout
   =================================================================== */

.container {
  width: min(calc(100% - var(--page-gutter)), var(--container));
  margin: 0 auto;
}


/* ===================================================================
   Scroll Progress Bar
   =================================================================== */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 50;
  background: transparent;
  pointer-events: none;
}

.scroll-progress::after {
  content: "";
  display: block;
  height: 100%;
  width: calc(var(--scroll-progress) * 100%);
  background: linear-gradient(90deg, var(--accent), var(--cta));
  border-radius: 0 2px 2px 0;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.5);
}


/* ===================================================================
   Header - Floating Pill Navbar
   =================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 0.5rem 0 0.24rem;
  background: transparent;
  transition: padding 0.35s var(--ease-out);
}

.site-header.is-scrolled {
  padding: 0.5rem 0 0.24rem;
}

.navbar-wrapper {
  position: relative;
  width: min(100%, 860px);
  margin: 0 auto;
}

.navbar {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0.44rem 0.52rem;
  gap: 0.62rem;
  border-radius: 18px;
  border: 0;
  background: rgba(232, 225, 216, 0.95);
  backdrop-filter: blur(18px) saturate(108%);
  -webkit-backdrop-filter: blur(18px) saturate(108%);
  box-shadow: none;
  transition:
    transform 0.35s var(--ease-out),
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.site-header.is-scrolled .navbar {
  border: 0;
  background: rgba(232, 225, 216, 0.95);
  box-shadow: none;
}

.brand {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 0;
  background: rgba(232, 225, 216, 0.95);
  box-shadow: none;
  flex-shrink: 0;
  overflow: hidden;
}

.brand::before {
  content: none;
}

.brand-logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 0;
  opacity: 1;
  transition: transform 0.35s var(--ease-out);
}

.is-scrolled .brand-logo {
  transform: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-rail {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 40px;
  border-radius: 12px;
  border: 0;
  background: transparent;
  overflow: hidden;
}

.nav-rail::after {
  display: none;
}

.desktop-nav {
  display: none;
}

.nav-toggle {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 0;
  background: rgba(232, 225, 216, 0.95);
  color: rgba(44, 49, 55, 0.8);
  padding: 0;
  cursor: pointer;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s var(--ease-out);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(236, 229, 220, 0.72);
  border-color: transparent;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  position: absolute;
  display: block;
  width: 15px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.45s var(--ease-out),
    opacity 0.28s ease,
    background 0.28s ease;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  left: 0;
}

.nav-toggle-icon::before {
  transform: rotate(90deg);
}

.nav-toggle-icon::after {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle-icon {
  transform: rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-icon::before {
  transform: rotate(90deg);
  opacity: 1;
}

@media (min-width: 980px) {
  .navbar-wrapper {
    width: min(100%, 1060px);
  }

  .navbar {
    min-height: 74px;
    padding: 0.5rem 0.62rem;
    border-radius: 24px;
    border: 0;
    background: rgba(236, 231, 224, 0.82);
    box-shadow: 0 20px 44px rgba(31, 41, 55, 0.14);
    backdrop-filter: blur(18px) saturate(110%);
    -webkit-backdrop-filter: blur(18px) saturate(110%);
  }

  .site-header.is-scrolled .navbar {
    border: 0;
    background: rgba(236, 231, 224, 0.82);
    box-shadow: 0 20px 44px rgba(31, 41, 55, 0.14);
  }

  .brand {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: transparent;
    box-shadow: none;
  }

  .brand-logo {
    width: 30px;
    height: 30px;
  }

  .nav-rail,
  .nav-toggle,
  .nav-panel {
    display: none !important;
  }

  .desktop-nav {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 58px;
    padding: 0 0.35rem 0 0.8rem;
    border-radius: 18px;
    background: transparent;
    box-shadow: none;
  }

  .desktop-nav-links {
    display: flex;
    align-items: center;
    gap: clamp(1.1rem, 2.2vw, 2.3rem);
    margin-inline: auto;
  }

  .desktop-nav-links a {
    font-size: 1.02rem;
    font-weight: 600;
    color: #111827;
    letter-spacing: 0.01em;
    transition: color 0.25s ease, transform 0.25s var(--ease-spring);
  }

  .desktop-nav-links a:hover,
  .desktop-nav-links a:focus-visible {
    color: #6d28d9;
    transform: translateY(-1px);
  }

  .desktop-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    background: linear-gradient(120deg, #6d28d9, #c026d3);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.02rem;
    box-shadow: 0 7px 14px rgba(109, 40, 217, 0.14);
    transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease, filter 0.25s ease;
  }

  .desktop-nav-cta:hover,
  .desktop-nav-cta:focus-visible {
    transform: translateY(-2px);
    filter: brightness(1.03);
    box-shadow: 0 9px 17px rgba(109, 40, 217, 0.17);
  }
}

.nav-panel {
  position: absolute;
  top: calc(100% + 0.2rem);
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px) scaleY(0.94);
  transform-origin: top center;
  filter: blur(6px);
  transition:
    opacity 0.44s ease,
    transform 0.56s var(--ease-out),
    filter 0.56s var(--ease-out),
    visibility 0s linear 0.62s;
}

.nav-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition-delay: 0s;
}

.nav-panel-card {
  position: relative;
  border-radius: 0 0 28px 28px;
  border: 0;
  background: rgba(232, 225, 216, 0.95);
  backdrop-filter: blur(18px) saturate(108%);
  -webkit-backdrop-filter: blur(18px) saturate(108%);
  box-shadow: none;
  overflow: hidden;
}

.nav-panel-card::before {
  content: "";
  position: absolute;
  top: -26px;
  left: 0;
  right: 0;
  height: 30px;
  background: rgba(232, 225, 216, 0.95);
}

.navbar-wrapper:has(.nav-panel.is-open) .navbar {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  box-shadow: none;
}

.nav-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
}

.nav-panel-links {
  padding: 1.35rem 1.35rem 1.5rem;
}

.nav-panel-side {
  padding: 1.35rem 1.35rem 1.5rem 1.5rem;
  border-left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.9rem;
}

.nav-panel-label {
  margin: 0 0 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(72, 80, 90, 0.72);
}

.nav-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.nav-links a {
  display: block;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 0;
  background: rgba(232, 225, 216, 0.95);
  color: rgba(35, 40, 46, 0.92);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.45s var(--ease-out),
    opacity 0.35s ease;
  opacity: 0;
  transform: translateY(10px);
  white-space: nowrap;
}

.nav-panel.is-open .nav-links a,
.nav-panel.is-open .nav-panel-side > * {
  opacity: 1;
  transform: translateY(0);
}

.nav-panel.is-open .nav-links a:nth-child(1) { transition-delay: 0.05s; }
.nav-panel.is-open .nav-links a:nth-child(2) { transition-delay: 0.09s; }
.nav-panel.is-open .nav-links a:nth-child(3) { transition-delay: 0.13s; }
.nav-panel.is-open .nav-links a:nth-child(4) { transition-delay: 0.17s; }
.nav-panel.is-open .nav-links a:nth-child(5) { transition-delay: 0.21s; }

.nav-panel.is-open .nav-panel-side > :nth-child(1) { transition-delay: 0.09s; }
.nav-panel.is-open .nav-panel-side > :nth-child(2) { transition-delay: 0.15s; }
.nav-panel.is-open .nav-panel-side > :nth-child(3) { transition-delay: 0.21s; }

.nav-panel-side > * {
  opacity: 0;
  transform: translateY(10px);
  transition:
    transform 0.52s var(--ease-out),
    opacity 0.42s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #131517;
  background: rgba(236, 229, 220, 0.72);
  border-color: transparent;
  transform: translateY(-2px);
}

.nav-links a.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.9), rgba(109, 40, 217, 0.92));
  border-color: rgba(124, 58, 237, 0.26);
}

.nav-links a[href*="/contacto/"],
.nav-links a[href$="/contacto"] {
  border: 1.5px solid rgba(124, 58, 237, 0.58);
  box-shadow: inset 0 0 0 1px rgba(124, 58, 237, 0.16);
}

.nav-links a[href*="/contacto/"]:hover,
.nav-links a[href*="/contacto/"]:focus-visible,
.nav-links a[href$="/contacto"]:hover,
.nav-links a[href$="/contacto"]:focus-visible {
  border-color: rgba(124, 58, 237, 0.76);
  box-shadow:
    inset 0 0 0 1px rgba(124, 58, 237, 0.2),
    0 0 0 2px rgba(124, 58, 237, 0.12);
}

.nav-links a[href*="/contacto/"].is-active,
.nav-links a[href$="/contacto"].is-active {
  border-color: rgba(191, 166, 255, 0.92);
  box-shadow: inset 0 0 0 1px rgba(236, 228, 255, 0.3);
}

.nav-login.button.button-small {
  min-height: 44px;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  border-radius: 999px;
}

.nav-panel-note {
  margin: 0;
  color: rgba(76, 84, 94, 0.85);
  font-size: 0.9rem;
  line-height: 1.6;
}


/* ===================================================================
   Hero
   =================================================================== */

.hero {
  padding: 3.2rem 0 2.6rem;
}

.hero-grid,
.split-section,
.footer-grid,
.cta-card {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.76rem;
  font-weight: 700;
}

h1, h2, h3 {
  font-family: "Inter", sans-serif;
  line-height: 1.1;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.35rem, 4.8vw, 4.2rem);
  margin-bottom: 1rem;
  max-width: 13ch;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.hero-text,
.section-heading p:last-child,
.split-copy > p,
.site-footer p,
.testimonial span,
.card p,
.process-step p,
.hero-card p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.35rem 0 1.25rem;
}


/* ===================================================================
   Buttons - Glass + Shine
   =================================================================== */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--cta), var(--cta-hover));
  color: #ffffff;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s var(--ease-spring),
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  box-shadow: 0 16px 36px rgba(124, 58, 237, 0.26);
}

.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.22),
    transparent
  );
  transition: none;
  animation: none;
}

.button:hover::before,
.button:focus-visible::before {
  animation: buttonShine 0.8s ease forwards;
}

@keyframes buttonShine {
  to { left: 140%; }
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 22px 40px rgba(124, 58, 237, 0.32);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--border);
  color: var(--text);
  box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(124, 58, 237, 0.3);
  background: rgba(124, 58, 237, 0.06);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.08);
}

.button-small {
  min-height: 44px;
  padding: 0.7rem 1rem;
}


/* ===================================================================
   Hero Metrics
   =================================================================== */

.hero-metrics,
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

/* Shared surface styles */
.hero-metrics li,
.logo-items span,
.process-step,
.testimonial,
.card,
.hero-card,
.image-card,
.cta-card,
.logo-strip,
.contact-form,
.status-pill {
  border: 1px solid var(--border);
}

.hero-metrics li,
.card,
.process-step,
.testimonial,
.hero-card,
.image-card,
.cta-card,
.logo-strip {
  background: var(--card-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-metrics li {
  padding: 1rem;
  transition: border-color 0.3s ease, transform 0.3s var(--ease-spring);
}

.hero-metrics li:hover {
  border-color: rgba(124, 58, 237, 0.25);
  transform: translateY(-2px);
}

.hero-metrics strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.hero-card {
  padding: 2rem;
}

.hero-visual {
  position: relative;
  display: flex;
  align-self: stretch;
  align-items: center;
  justify-content: center;
  min-height: 470px;
  padding: 0.4rem 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.projects-board {
  width: min(100%, 480px);
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.08);
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.98), rgba(26, 26, 26, 0.94));
  box-shadow:
    0 24px 64px rgba(26, 26, 26, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.projects-label {
  margin: 0;
  padding: 1.2rem 1.45rem 0.95rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
}

.project-entry {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.9rem;
  padding: 1.05rem 1.45rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    background 0.25s ease,
    transform 0.25s var(--ease-spring),
    border-color 0.25s ease;
}

.project-entry:hover,
.project-entry:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 107, 53, 0.24);
  transform: translateX(3px);
}

.project-entry:focus-visible {
  outline: 2px solid rgba(255, 107, 53, 0.32);
  outline-offset: -2px;
}

.project-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cta);
  box-shadow: 0 0 16px rgba(124, 58, 237, 0.45);
}

.project-main strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 1.16rem;
  line-height: 1.15;
  color: #ffffff;
}

.project-main span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
}

.project-meta {
  font-size: 1rem;
  color: #ffffff;
  white-space: nowrap;
}

.projects-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.45rem 1.05rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.projects-status {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-style: italic;
  font-size: 0.84rem;
}

.status-live {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #16b36f;
  box-shadow: 0 0 0 0 rgba(22, 179, 111, 0.5);
  animation: statusPulse 1.9s ease-out infinite;
}

@keyframes statusPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(22, 179, 111, 0.5);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(22, 179, 111, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(22, 179, 111, 0);
  }
}

.projects-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: 12px;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffffff;
  transition: background 0.2s ease, color 0.2s ease;
}

.projects-cta:hover,
.projects-cta:focus-visible {
  background: rgba(124, 58, 237, 0.12);
  color: #ffffff;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  background: rgba(124, 58, 237, 0.12);
  color: var(--accent-soft);
}

.feature-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-list article {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}


/* ===================================================================
   Logo Strip
   =================================================================== */

.logo-strip {
  display: grid;
  gap: 1rem;
  align-items: center;
  justify-items: center;
  text-align: center;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.logo-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

.logo-items span {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.logo-items span:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  border-color: rgba(124, 58, 237, 0.2);
}

.why-choose-section {
  padding-top: 0.75rem;
}

.why-choose-section .section-heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding-inline: 0.75rem;
}

.why-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  min-height: 100%;
  padding: 1.3rem 1.2rem;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 14% 12%, rgba(124, 58, 237, 0.12), transparent 46%),
    radial-gradient(circle at 88% 90%, rgba(255, 107, 53, 0.12), transparent 44%),
    var(--card-surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition:
    transform 0.35s var(--ease-spring),
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.why-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.2rem;
}

.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

.why-card:hover,
.why-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(124, 58, 237, 0.26);
  box-shadow:
    0 24px 48px rgba(26, 26, 26, 0.14),
    0 0 34px rgba(124, 58, 237, 0.14);
  background:
    radial-gradient(circle at 14% 12%, rgba(124, 58, 237, 0.18), transparent 48%),
    radial-gradient(circle at 88% 90%, rgba(255, 107, 53, 0.16), transparent 46%),
    var(--card-surface-strong);
}

.why-card-slide {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  will-change: transform, opacity;
}

.why-choose-section.is-armed .why-card-slide {
  opacity: 0;
  transition:
    opacity 0.9s var(--ease-out),
    transform 1.05s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.why-choose-section.is-armed .why-card-slide:nth-child(odd) {
  transform: translate3d(calc(-100vw - 4rem), 18px, 0) rotate(-5deg) scale(0.96);
}

.why-choose-section.is-armed .why-card-slide:nth-child(even) {
  transform: translate3d(calc(100vw + 4rem), 18px, 0) rotate(5deg) scale(0.96);
}

.why-choose-section.is-armed.is-in-view .why-card-slide:nth-child(1) {
  transition-delay: 0.04s;
}

.why-choose-section.is-armed.is-in-view .why-card-slide:nth-child(2) {
  transition-delay: 0.12s;
}

.why-choose-section.is-armed.is-in-view .why-card-slide:nth-child(3) {
  transition-delay: 0.2s;
}

.why-choose-section.is-armed.is-in-view .why-card-slide:nth-child(4) {
  transition-delay: 0.28s;
}

.why-choose-section.is-armed.is-in-view .why-card-slide {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
}

.trusted-logos-section {
  --trusted-gap: 2.65rem;
  --trusted-slot: 146px;
  padding: 0.95rem 0 1rem;
}

.trusted-logos-heading {
  display: grid;
  justify-items: center;
  text-align: center;
  max-width: none;
  margin-inline: auto;
  margin-bottom: 1.25rem;
}

.trusted-logos-heading .eyebrow,
.trusted-logos-heading h2 {
  text-align: center;
}

.trusted-logos-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
}

.trusted-logos-slider {
  position: relative;
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto;
  padding: 0.75rem 0;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
}

.trusted-logos-track {
  display: flex;
  align-items: center;
  gap: var(--trusted-gap);
  width: max-content;
  animation: trustedLogosSlide 32s linear infinite;
  will-change: transform;
}

.trusted-logos-slider:hover .trusted-logos-track,
.trusted-logos-slider:focus-within .trusted-logos-track {
  animation-play-state: paused;
}

.trusted-logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 var(--trusted-slot);
  width: var(--trusted-slot);
  min-height: 34px;
  opacity: 0.94;
  transition: opacity 0.25s ease, transform 0.25s var(--ease-spring);
}

.trusted-logo-item:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.trusted-logo-item img {
  display: block;
  height: 22px;
  width: min(132px, calc(var(--trusted-slot) - 12px));
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%);
  opacity: 1;
}

.trusted-logo-item img[src*="github.png"] {
  height: 34px;
  width: min(152px, var(--trusted-slot));
}

@keyframes trustedLogosSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - (var(--trusted-gap) / 2)));
  }
}


/* ===================================================================
   Sections
   =================================================================== */

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.explore-section .section-heading {
  margin-inline: auto;
  text-align: center;
}

.explore-section .service-grid {
  max-width: 1080px;
  margin-inline: auto;
}


/* ===================================================================
   Service Cards - Glassmorphism
   =================================================================== */

.service-grid,
.process-grid,
.testimonial-grid,
.review-grid {
  display: grid;
  gap: 1.5rem;
  padding-inline: 0.75rem;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

#nosotros .service-grid,
#diferencial .service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

#nosotros .split-section {
  grid-template-columns: 0.82fr 1.18fr;
  gap: 2.2rem;
  align-items: center;
  margin-bottom: 2rem;
}

#nosotros .split-section .section-heading {
  max-width: none;
  margin-bottom: 0;
}

#nosotros .split-section .image-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: flex;
  justify-content: flex-end;
}

#nosotros .split-section .image-card img {
  width: min(100%, 460px);
  max-width: none;
  aspect-ratio: auto;
  object-fit: contain;
  transform: scale(1.08);
  transform-origin: center right;
}

#reviews .section-heading {
  margin-inline: auto;
  text-align: center;
}

.card,
.process-step,
.testimonial {
  padding: 1.6rem;
}

.card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1.35rem 1rem;
  min-height: 100%;
  background:
    radial-gradient(circle at 14% 12%, rgba(124, 58, 237, 0.14), transparent 45%),
    radial-gradient(circle at 86% 88%, rgba(255, 107, 53, 0.12), transparent 42%),
    var(--card-surface);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.card::after {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.14), transparent 70%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* Service icon container */
.service-visual {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin: 0 auto 1rem;
  border-radius: 26px;
  border: 1px solid rgba(214, 202, 182, 0.74);
  background: linear-gradient(180deg, rgba(255, 254, 250, 0.98), rgba(246, 239, 227, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 14px 28px rgba(120, 102, 78, 0.16);
  transition:
    transform 0.35s var(--ease-spring),
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.service-visual svg {
  width: 50px;
  height: 50px;
}

.service-visual svg * {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

/* SVG color assignments */
.service-web svg rect,
.service-web svg path { stroke: var(--accent-soft); }
.service-web svg circle { stroke: var(--accent-rose); }

.service-landing svg rect,
.service-landing svg path { stroke: var(--accent-soft); }
.service-landing svg path:last-child { stroke: var(--accent-rose); }

.service-whatsapp svg path:first-child { stroke: var(--accent-soft); }
.service-whatsapp svg path:nth-child(2) { stroke: var(--accent-rose); }
.service-whatsapp svg path:nth-child(3) { stroke: #f6edff; }

.service-leads svg circle,
.service-leads svg path { stroke: var(--accent-soft); }
.service-leads svg path:last-child { stroke: var(--accent-rose); }

/* Card interaction */
.service-grid .card {
  text-align: center;
  transition:
    transform 0.4s var(--ease-spring),
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.service-grid .card h3 {
  font-size: 1.02rem;
  line-height: 1.2;
  min-height: 2.4em;
}

.service-grid .card p {
  font-size: 0.86rem;
  line-height: 1.64;
  margin-bottom: 0;
}

.service-grid .card:hover,
.service-grid .card:focus-within {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 107, 53, 0.34);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.34),
    0 0 40px rgba(124, 58, 237, 0.15);
  background:
    radial-gradient(circle at 14% 12%, rgba(124, 58, 237, 0.2), transparent 48%),
    radial-gradient(circle at 86% 88%, rgba(255, 119, 196, 0.18), transparent 44%),
    var(--card-surface-strong);
}

.service-grid .card:hover .service-visual,
.service-grid .card:focus-within .service-visual {
  transform: translateY(-4px) scale(1.06);
  border-color: rgba(255, 107, 53, 0.28);
  background: linear-gradient(180deg, rgba(255, 254, 251, 1), rgba(248, 241, 230, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 20px 34px rgba(120, 102, 78, 0.2),
    0 0 30px rgba(255, 107, 53, 0.16);
}


/* ===================================================================
   Process Timeline
   =================================================================== */

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
  align-items: start;
  gap: 1.25rem;
  padding-top: 1rem;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 3rem;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(124, 58, 237, 0.1),
    rgba(124, 58, 237, 0.75),
    rgba(255, 107, 53, 0.7),
    rgba(124, 58, 237, 0.12));
  box-shadow: 0 0 18px rgba(124, 58, 237, 0.18);
  background-size: 200% 100%;
  animation: timelineGlow 4s ease-in-out infinite alternate;
}

@keyframes timelineGlow {
  0%   { background-position: 0% 0%; box-shadow: 0 0 14px rgba(124, 58, 237, 0.14); }
  100% { background-position: 100% 0%; box-shadow: 0 0 24px rgba(255, 107, 53, 0.22); }
}

.process-step span {
  position: absolute;
  top: -1.1rem;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 107, 53, 0.22), transparent 48%),
    linear-gradient(180deg, rgba(124, 58, 237, 0.92), rgba(124, 58, 237, 0.82));
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.28),
    0 0 22px rgba(124, 58, 237, 0.16);
  color: var(--accent-soft);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  z-index: 2;
}

.process-step {
  position: relative;
  min-height: 100%;
  padding: 3.6rem 1.35rem 1.5rem;
  background:
    radial-gradient(circle at 16% 12%, rgba(124, 58, 237, 0.13), transparent 44%),
    radial-gradient(circle at 85% 88%, rgba(255, 107, 53, 0.1), transparent 44%),
    var(--card-surface);
  transition: transform 0.3s var(--ease-spring), border-color 0.3s ease;
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.3);
}

.process-step::before {
  content: "";
  position: absolute;
  top: 2.1rem;
  left: 50%;
  width: 14px;
  height: 14px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent-rose));
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.42);
  z-index: 1;
}

.process-step:nth-child(2),
.process-step:nth-child(4) {
  margin-top: 2rem;
}

.process-step h3,
.process-step p {
  text-align: center;
}


/* ===================================================================
   Split / Hosting Section
   =================================================================== */

.split-section {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.check-list li:hover {
  color: var(--text);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(124, 58, 237, 0.5);
  transition: box-shadow 0.3s ease;
}

.check-list li:hover::before {
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.7);
}

.image-card {
  overflow: hidden;
  padding: 1rem;
}

.image-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 2000 / 1125;
  object-fit: contain;
}

.image-card figcaption {
  margin-top: 1rem;
  color: var(--muted);
}


/* ===================================================================
   Pricing / Testimonials
   =================================================================== */

.pricing2-period {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.72rem;
  margin: 0 0 1.4rem;
  color: var(--text);
  font-weight: 600;
}

.pricing2-switch {
  position: relative;
  width: 52px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  cursor: pointer;
  background: rgba(26, 26, 26, 0.16);
  transition: background 0.2s ease;
}

.pricing2-switch[aria-checked="true"] {
  background: rgba(124, 58, 237, 0.78);
}

.pricing2-switch-thumb {
  position: absolute;
  top: 3px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(26, 26, 26, 0.18);
  transition: transform 0.24s var(--ease-spring);
}

.pricing2-switch[aria-checked="true"] .pricing2-switch-thumb {
  transform: translateX(20px);
}

.pricing2-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-inline: 0.55rem;
}

#precios .pricing-heading-centered {
  text-align: center;
  max-width: 56rem;
  margin-inline: auto;
}

.pricing2-card {
  display: flex;
  flex-direction: column;
  min-height: 560px;
  border-radius: 24px;
  border: 1px solid rgba(124, 58, 237, 0.22);
  background:
    radial-gradient(circle at 14% 11%, rgba(124, 58, 237, 0.14), transparent 44%),
    radial-gradient(circle at 88% 90%, rgba(255, 107, 53, 0.1), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 239, 229, 0.96));
  box-shadow: 0 16px 44px rgba(124, 58, 237, 0.1);
}

.pricing2-card-featured {
  border-color: rgba(124, 58, 237, 0.42);
  box-shadow:
    0 20px 50px rgba(124, 58, 237, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.55) inset;
}

.pricing2-card-header,
.pricing2-card-body,
.pricing2-card-footer {
  padding-inline: 1.1rem;
}

.pricing2-card-header {
  padding-top: 1.4rem;
}

.pricing2-card-header h3 {
  margin: 0;
  text-align: left;
  font-size: clamp(1.22rem, 1.8vw, 1.52rem);
}

.pricing2-card-header > p:first-of-type {
  margin: 0.65rem 0 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.58;
}

.pricing2-price {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.pricing2-price span {
  font-size: 1.3rem;
  vertical-align: top;
}

.pricing2-price strong {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  margin-left: 0.15rem;
}

.pricing2-price em {
  margin-left: 0.35rem;
  font-style: normal;
  font-size: 0.92rem;
  color: var(--muted);
}

.pricing2-setup {
  margin: 0 0 0.35rem;
  color: #3f2e1d;
  font-size: 0.9rem;
  font-weight: 600;
}

.pricing2-setup strong {
  color: var(--text);
  font-size: 1rem;
}

.pricing2-note {
  margin: 0.5rem 0 0.2rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.pricing2-card-body {
  margin-top: 0.45rem;
}

.pricing2-feature-kicker {
  margin: 0 0 0.58rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

.pricing2-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.pricing2-features li {
  position: relative;
  padding-left: 1.55rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #1a1a1a;
}

.pricing2-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.08rem;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(124, 58, 237, 0.16);
  color: #7c3aed;
  font-size: 0.72rem;
  font-weight: 700;
}

.pricing2-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  padding-bottom: 1.1rem;
}

.pricing2-button {
  width: 100%;
  min-height: 46px;
}

.pricing-membership-card {
  margin: 1.15rem 0 1.9rem;
  padding: 1.5rem 1.3rem;
  text-align: center;
  border-radius: 24px;
  border: 1px solid rgba(124, 58, 237, 0.24);
  background:
    radial-gradient(circle at 16% 16%, rgba(124, 58, 237, 0.12), transparent 44%),
    radial-gradient(circle at 88% 86%, rgba(255, 107, 53, 0.12), transparent 46%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(245, 238, 228, 0.95));
  box-shadow: 0 18px 42px rgba(124, 58, 237, 0.1);
}

.pricing-membership-card h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.pricing-membership-card p {
  margin: 0.7rem 0 1rem;
  color: var(--muted);
  max-width: 66ch;
  margin-inline: auto;
}

.pricing-membership-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  max-width: 920px;
  margin-inline: auto;
}

.pricing-membership-card li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 180px;
  max-width: 230px;
  min-height: 52px;
  padding: 0.6rem 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(124, 58, 237, 0.18);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  transition:
    transform 0.4s var(--ease-spring),
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.pricing-membership-card li:hover,
.pricing-membership-card li:focus-within {
  transform: translateY(-10px) scale(1.02);
  background: var(--card-surface-strong) !important;
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.22),
    0 0 36px rgba(124, 58, 237, 0.14) !important;
}

.pricing-grid,
.testimonial-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-grid {
  gap: 1rem;
  padding-inline: 0.55rem;
  align-items: stretch;
}

.pricing-grid-ecommerce {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 940px;
  gap: 0.95rem;
  margin: 1.1rem auto 0;
}

#precios .pricing-ecommerce-block {
  display: none;
}

#precios[data-ecommerce-enabled="true"] .pricing-ecommerce-block {
  display: block;
}

.pricing-grid-ecommerce .pricing-card {
  width: 100%;
  max-width: 448px;
  justify-self: center;
}

.complex-project-cta {
  margin: 1.7rem 0 0;
  padding: 2.2rem clamp(1.2rem, 4vw, 3rem);
  border-radius: 24px;
  border: 1px solid rgba(124, 58, 237, 0.28);
  background:
    radial-gradient(circle at 14% 20%, rgba(124, 58, 237, 0.18), transparent 44%),
    radial-gradient(circle at 86% 84%, rgba(255, 107, 53, 0.12), transparent 48%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(245, 239, 233, 0.98));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem 2rem;
  box-shadow: 0 24px 54px rgba(124, 58, 237, 0.12);
}

.complex-project-content h3 {
  margin: 0;
  max-width: 20ch;
  color: var(--text);
  font-size: clamp(1.55rem, 2.8vw, 2.95rem);
}

.complex-project-content p {
  margin: 1rem 0 0;
  max-width: 52ch;
  color: var(--muted);
  font-size: clamp(1.01rem, 1.3vw, 1.15rem);
  line-height: 1.55;
}

.complex-project-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 237, 0.28);
  background: linear-gradient(135deg, var(--cta), var(--cta-hover));
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 18px 32px rgba(124, 58, 237, 0.24);
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s ease, filter 0.2s ease;
}

.complex-project-button:hover,
.complex-project-button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 22px 40px rgba(124, 58, 237, 0.3);
}

.pricing-divider {
  margin: 2.1rem 0 1.2rem;
  text-align: center;
  display: grid;
  gap: 0.45rem;
}

.pricing-divider-kicker {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: #1a1a1a;
  letter-spacing: 0.01em;
}

.pricing-divider h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  color: var(--text);
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 570px;
  padding: 1.7rem 1.05rem 1.1rem;
  border-radius: 24px;
  border: 1px solid rgba(124, 58, 237, 0.28);
  background:
    radial-gradient(circle at 14% 10%, rgba(124, 58, 237, 0.16), transparent 46%),
    radial-gradient(circle at 88% 90%, rgba(255, 107, 53, 0.09), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 239, 233, 0.96));
  box-shadow: 0 16px 44px rgba(124, 58, 237, 0.1);
}

.pricing-card h3 {
  margin-top: 0.35rem;
  margin-bottom: 0.9rem;
  font-size: clamp(1.25rem, 1.85vw, 1.62rem);
  color: var(--text);
  text-align: center;
}

.pricing-price {
  margin: 0 0 0.65rem;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.75rem, 3.1vw, 2.45rem);
  line-height: 1;
  color: #1a1a1a;
  font-weight: 700;
  text-align: center;
}

.pricing-description {
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.58;
}

.pricing-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.58rem;
  margin-bottom: 0.95rem;
}

.pricing-features li {
  position: relative;
  padding-left: 1.55rem;
  color: #1a1a1a;
  font-size: 0.86rem;
  line-height: 1.48;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(124, 58, 237, 0.16);
  color: #7c3aed;
  font-size: 0.72rem;
  font-weight: 700;
}

.pricing-select {
  margin-top: auto;
  min-height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: 1px solid rgba(124, 58, 237, 0.28);
  background: linear-gradient(135deg, var(--cta), var(--cta-hover));
  color: #ffffff;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease, border-color 0.25s ease;
}

.pricing-select:hover,
.pricing-select:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(124, 58, 237, 0.36);
  box-shadow: 0 14px 26px rgba(124, 58, 237, 0.24);
}

.pricing-card-popular {
  padding-top: 2.05rem;
  background:
    radial-gradient(circle at 15% 8%, rgba(255, 107, 53, 0.14), transparent 46%),
    radial-gradient(circle at 84% 92%, rgba(124, 58, 237, 0.18), transparent 45%),
    linear-gradient(180deg, rgba(252, 248, 255, 0.98), rgba(124, 58, 237, 0.1));
  border-color: rgba(124, 58, 237, 0.42);
  box-shadow:
    0 18px 48px rgba(124, 58, 237, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.48) inset;
}

.pricing-card-popular .pricing-price,
.pricing-card-popular h3,
.pricing-card-popular .pricing-features li {
  color: var(--text);
}

.pricing-card-popular .pricing-select {
  background: linear-gradient(135deg, var(--cta), var(--cta-hover));
  border-color: rgba(124, 58, 237, 0.28);
}

.pricing-badge {
  position: absolute;
  top: -0.78rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0.32rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, var(--cta), var(--cta-hover));
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.testimonial p {
  font-size: 1.05rem;
}

.testimonial h3 {
  margin-bottom: 0.2rem;
}

.testimonial {
  transition: transform 0.3s var(--ease-spring), border-color 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.25);
}


/* ===================================================================
   Reviews Carousel
   =================================================================== */

#reviews .reviews-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  touch-action: pan-y;
  padding: 2rem 0 1.2rem;
}

.reviews-carousel::before,
.reviews-carousel::after {
  content: none;
}

.reviews-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: transform 0.52s var(--ease-out);
  will-change: transform;
}

.review-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  flex: 0 0 min(72vw, 368px);
  width: min(72vw, 368px);
  min-height: 376px;
  height: 376px;
  padding: 1.8rem;
  border-radius: 30px;
  border: 1px solid rgba(124, 58, 237, 0.2);
  background:
    radial-gradient(circle at 18% 16%, rgba(124, 58, 237, 0.18), transparent 46%),
    linear-gradient(170deg, rgba(255, 255, 255, 0.94), rgba(124, 58, 237, 0.08));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 54px rgba(124, 58, 237, 0.11);
  opacity: 0.76;
  transform: scale(0.88);
  cursor: pointer;
  transition:
    transform 0.52s var(--ease-out),
    opacity 0.52s ease,
    border-color 0.52s ease,
    box-shadow 0.52s ease;
}

.review-card:focus-visible {
  outline: 2px solid rgba(124, 58, 237, 0.45);
  outline-offset: 3px;
}

.review-card::before,
.review-card::after {
  position: absolute;
  font-family: "Inter", sans-serif;
  font-size: 4.4rem;
  line-height: 1;
  color: var(--accent-soft);
  opacity: 0.45;
}

.review-card::before {
  content: "\201C";
  top: 1.2rem;
  left: 1.4rem;
}

.review-card::after {
  content: "\201D";
  right: 1.4rem;
  bottom: 0.8rem;
}

.review-card.is-active {
  opacity: 1;
  transform: scale(1.02);
  border-color: rgba(124, 58, 237, 0.45);
  box-shadow:
    0 22px 62px rgba(124, 58, 237, 0.14),
    var(--shadow-glow);
}

.review-company {
  margin: 1.6rem 0 0.7rem;
  padding-right: 1.75rem;
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.16rem, 2vw, 1.52rem);
  line-height: 1.32;
  font-weight: 700;
  min-height: 3.96em;
}

.review-card h3 {
  margin: 0 0 0.95rem;
  color: var(--accent-soft);
  font-size: 0.88rem;
  line-height: 1.34;
}

.review-quote {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.75rem;
}

.review-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.3);
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s var(--ease-spring),
    box-shadow 0.25s ease;
}

.review-dot:hover {
  background: rgba(124, 58, 237, 0.5);
  transform: scale(1.15);
}

.review-dot.is-active {
  background: var(--accent);
  transform: scale(1.2);
  box-shadow: 0 0 18px rgba(124, 58, 237, 0.5);
}


/* ===================================================================
   CTA Section - Shimmer Border
   =================================================================== */

.cta-section {
  padding-bottom: 5rem;
}

.cta-card {
  grid-template-columns: 1fr 0.9fr;
  align-items: start;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.35),
    rgba(255, 107, 53, 0.25),
    rgba(124, 58, 237, 0.1),
    rgba(255, 107, 53, 0.35)
  );
  background-size: 300% 300%;
  animation: borderShimmer 6s ease-in-out infinite;
  z-index: -1;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  padding: 1px;
}

@keyframes borderShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cta-support {
  color: var(--accent-soft);
  font-weight: 600;
}

.services-cta-section {
  padding-top: 1.2rem;
}

.services-cta-card {
  grid-template-columns: minmax(0, 1.15fr) auto;
  gap: 1.6rem 2rem;
  align-items: stretch;
  border: 1px solid rgba(124, 58, 237, 0.3);
  background:
    radial-gradient(circle at 16% 18%, rgba(124, 58, 237, 0.16), transparent 48%),
    radial-gradient(circle at 86% 82%, rgba(255, 107, 53, 0.11), transparent 50%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(243, 236, 228, 0.94));
  box-shadow:
    0 22px 56px rgba(124, 58, 237, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.services-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 237, 0.24);
  background: rgba(255, 255, 255, 0.68);
  letter-spacing: 0.16em;
}

.services-cta-card h2 {
  max-width: 13ch;
  margin-bottom: 0.85rem;
}

.services-cta-card > div:first-child > p:last-child {
  max-width: 42ch;
  margin: 0;
}

.services-cta-actions {
  justify-self: end;
  align-self: end;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  width: min(100%, 260px);
  margin: 0;
}

.services-cta-actions .button {
  width: 100%;
  min-height: 52px;
  padding-inline: 1.2rem;
}

.services-cta-actions .button-secondary {
  background: rgba(255, 255, 255, 0.9);
}


/* ===================================================================
   Contact Form - Polished Inputs
   =================================================================== */

.contact-form {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: var(--radius);
  background: rgba(26, 26, 26, 0.025);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form span {
  font-weight: 600;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 50px;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  color: var(--text);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus {
  outline: none;
  border-color: rgba(255, 107, 53, 0.4);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.12), 0 0 20px rgba(255, 107, 53, 0.08);
  background: #ffffff;
}

.contact-form input::placeholder {
  color: #6b7280;
}

.form-note {
  min-height: 1.5rem;
  margin: 0;
  color: var(--accent-soft);
}

.contact-form .button-secondary {
  width: 100%;
}

.form-success-dialog {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.1rem;
  border-radius: var(--radius);
  background: rgba(249, 248, 243, 0.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  z-index: 3;
}

.form-success-dialog.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.form-success-dialog-content {
  width: min(100%, 420px);
  text-align: center;
  padding: 1.2rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(124, 58, 237, 0.24);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 40px rgba(26, 26, 26, 0.16);
}

.form-success-dialog-content p {
  margin: 0 0 0.9rem;
  color: var(--text);
  font-weight: 600;
  line-height: 1.6;
}

.form-success-close {
  min-height: 42px;
  padding: 0.65rem 1.1rem;
}


/* ===================================================================
   Footer - Polished
   =================================================================== */

.site-footer {
  padding: 2rem 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: #36454f;
  color: rgba(236, 240, 244, 0.9);
}

.site-footer p {
  color: rgba(224, 231, 238, 0.82);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.6fr 0.8fr;
  align-items: start;
}

.footer-grid h2 {
  font-size: 0.94rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
  color: #f8fafc;
}

.footer-grid a,
.footer-grid span {
  display: block;
  color: rgba(224, 231, 238, 0.82);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.6rem;
}

.footer-grid a {
  position: relative;
  width: fit-content;
  transition: color 0.2s ease;
}

.footer-grid a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(248, 250, 252, 0.92);
  transition: width 0.3s var(--ease-out);
}

.footer-grid a:hover {
  color: #ffffff;
}

.footer-grid a:hover::after {
  width: 100%;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.7rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(236, 240, 244, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
  margin-bottom: 0;
  transition: transform 0.2s var(--ease-spring), background 0.2s ease, color 0.2s ease;
}

.footer-socials a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  transform: translateY(-2px);
  background: #ffffff;
  color: #36454f;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  overflow: visible;
  margin-bottom: 0.8rem;
}

.footer-brand::after {
  display: none;
}

.footer-brand-logo {
  width: 78px;
  height: auto;
  display: block;
  object-fit: contain;
}

.copyright {
  text-align: center;
  color: rgba(224, 231, 238, 0.78);
  margin: 2rem 0 0;
  font-size: 0.95rem;
}

/* ===================================================================
   Footer - Hover Style
   =================================================================== */

.site-footer.site-footer-hover {
  position: relative;
  overflow: hidden;
  margin-top: clamp(2.1rem, 4vw, 3.1rem);
  padding: clamp(2.5rem, 4.6vw, 3.4rem) 0 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #11131b;
  color: rgba(241, 243, 251, 0.92);
}

.site-footer.site-footer-hover p,
.site-footer.site-footer-hover .hover-footer-col span {
  color: rgba(223, 227, 240, 0.82);
}

.hover-footer-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(90% 80% at 12% 8%, rgba(124, 58, 237, 0.34), transparent 62%),
    radial-gradient(75% 65% at 90% 100%, rgba(255, 107, 53, 0.22), transparent 66%),
    radial-gradient(55% 50% at 55% 45%, rgba(124, 58, 237, 0.18), transparent 70%);
}

.hover-footer-inner {
  position: relative;
  z-index: 1;
  padding-bottom: 20vw !important;
}

.hover-footer-top,
.hover-footer-grid,
.hover-footer-divider,
.hover-footer-bottom {
  position: relative;
  z-index: 2;
}

.hover-footer-top {
  display: block !important;
  margin-bottom: 0.8rem !important;
}

.hover-footer-brand-wrap h2 {
  margin: 0.4rem 0 0.85rem;
  font-size: clamp(1.82rem, 3.4vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #f6f7ff;
  max-width: 16ch;
}

.hover-footer-brand-wrap p {
  margin: 0;
  max-width: 52ch;
  font-size: 1.03rem;
}

.hover-footer-subscribe {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 68px;
  padding: 0.42rem;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 237, 0.62);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hover-footer-brand-wrap h2,
.hover-footer-brand-wrap p,
.hover-footer-subscribe {
  display: none !important;
}

.hover-footer-subscribe input {
  flex: 1;
  min-width: 0;
  height: 54px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 0 1.05rem;
  color: #f3f4ff;
  font-size: 1rem;
}

.hover-footer-subscribe input::placeholder {
  color: rgba(230, 234, 248, 0.72);
}

.hover-footer-subscribe input:focus {
  outline: none;
}

.hover-footer-subscribe button {
  height: 54px;
  border: 0;
  border-radius: 999px;
  padding: 0 1.45rem;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 700;
  background: linear-gradient(115deg, #6d28d9 0%, #a855f7 52%, #ff6b35 100%);
  box-shadow: 0 10px 20px rgba(124, 58, 237, 0.28);
  cursor: pointer;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease, filter 0.25s ease;
}

.hover-footer-subscribe button:hover,
.hover-footer-subscribe button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 13px 24px rgba(124, 58, 237, 0.34);
  filter: brightness(1.02);
}

.hover-footer-grid {
  margin-top: 0 !important;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 2.4rem);
}

.hover-footer-col h3 {
  margin: 0 0 0.85rem;
  font-size: 0.96rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #f8f9ff;
}

.hover-footer-col a,
.hover-footer-col span {
  display: block;
  width: fit-content;
  margin-bottom: 0.62rem;
  font-size: 0.97rem;
  line-height: 1.5;
}

.hover-footer-col a {
  color: rgba(225, 230, 246, 0.9);
  transition: color 0.2s ease;
}

.hover-footer-col a:hover,
.hover-footer-col a:focus-visible {
  color: #ffffff;
}

.hover-footer-contact .footer-email {
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 0.72rem;
  line-height: 1.28;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.site-footer-hover .footer-socials {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  margin-top: 0.45rem;
}

.site-footer-hover .footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  margin: 0;
  border: 1px solid rgba(226, 231, 249, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #e8ecff;
  transition: transform 0.2s var(--ease-spring), background 0.2s ease, color 0.2s ease;
}

.site-footer-hover .footer-socials a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.site-footer-hover .footer-socials a:hover,
.site-footer-hover .footer-socials a:focus-visible {
  transform: translateY(-2px);
  background: #ffffff;
  color: #11131b;
}

.hover-footer-divider {
  margin: 1.95rem 0 1.05rem;
  height: 1px;
  background: rgba(221, 227, 247, 0.16);
}

.hover-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hover-footer-bottom p {
  margin: 0;
  font-size: 0.95rem;
}

.hover-footer-bottom a {
  color: #f4f6ff;
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.hover-footer-wordmark {
  position: absolute;
  left: 50% !important;
  right: auto !important;
  top: auto !important;
  bottom: -0.08em !important;
  transform: translateX(-50%) !important;
  width: 100vw !important;
  max-width: none !important;
  margin: 0;
  text-align: center !important;
  white-space: nowrap !important;
  font-size: 29vw !important;
  line-height: 0.62 !important;
  letter-spacing: -0.075em !important;
  font-weight: 800;
  user-select: none;
  pointer-events: none !important;
  z-index: 1;
}

.hover-footer-wordmark span {
  display: inline-block !important;
  width: auto !important;
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.5) 0%, rgba(255, 107, 53, 0.38) 50%, rgba(124, 58, 237, 0.5) 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: none !important;
  filter: none !important;
}

.hover-footer-wordmark::after {
  content: none !important;
  display: none !important;
}

@media (max-width: 980px) {
  .hover-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hover-footer-inner {
    padding-bottom: 22vw !important;
  }

  .hover-footer-wordmark {
    width: 100vw !important;
    font-size: 29vw !important;
    bottom: -0.08em !important;
  }
}

@media (max-width: 760px) {
  .why-choose-section.is-armed .why-card-slide:nth-child(odd) {
    transform: translate3d(-2.4rem, 14px, 0) rotate(-2deg) scale(0.985);
  }

  .why-choose-section.is-armed .why-card-slide:nth-child(even) {
    transform: translate3d(2.4rem, 14px, 0) rotate(2deg) scale(0.985);
  }

  .site-footer.site-footer-hover {
    margin-top: 1.7rem;
    padding-top: 2rem;
  }

  .hover-footer-inner {
    padding-bottom: 24vw !important;
  }

  .hover-footer-grid {
    grid-template-columns: 1fr;
  }

  .hover-footer-contact .footer-email {
    font-size: 1.2rem;
  }

  .hover-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hover-footer-wordmark {
    width: 100vw !important;
    font-size: 29vw !important;
    bottom: -0.04em !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-card-slide,
  .why-choose-section.is-armed .why-card-slide,
  .why-choose-section.is-armed .why-card-slide:nth-child(odd),
  .why-choose-section.is-armed .why-card-slide:nth-child(even),
  .why-choose-section.is-armed.is-in-view .why-card-slide {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ===================================================================
   Reveal Animations - Staggered
   =================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
  transition-delay: var(--reveal-delay);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ===================================================================
   Responsive - Narrow Desktop (max-width: 1120px)
   =================================================================== */

@media (max-width: 1120px) and (min-width: 761px) {
  .hero {
    padding-top: 2.9rem;
  }

  .hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 1.5rem;
  }

  .hero-visual {
    min-height: 460px;
  }

  .projects-board {
    border-radius: 24px;
  }

  .projects-label {
    padding: 1.25rem 1.2rem 0.95rem;
    font-size: 0.7rem;
  }

  .project-entry {
    padding: 1rem 1.2rem;
  }

  .project-main strong {
    font-size: 1.08rem;
  }

  .project-main span {
    font-size: 0.8rem;
  }

  .project-meta {
    font-size: 0.96rem;
  }

  .projects-footer {
    padding: 0.95rem 1.2rem 1rem;
  }

  .projects-status {
    font-size: 0.82rem;
  }

  .projects-cta {
    font-size: 0.8rem;
  }

  .navbar {
    min-height: 54px;
    padding: 0.44rem 0.52rem;
  }

  .navbar-wrapper {
    width: min(100%, 760px);
  }

  .brand {
    width: 38px;
    height: 38px;
  }

  .brand-logo {
    width: 20px;
    height: 20px;
  }

  .nav-panel-links,
  .nav-panel-side {
    padding: 1.2rem;
  }

  .nav-links a {
    font-size: 0.88rem;
    padding: 0.8rem 0.9rem;
  }

  .nav-login.button.button-small {
    min-height: 42px;
    padding: 0.7rem 0.9rem;
    font-size: 0.78rem;
  }
}


/* ===================================================================
   Responsive - Tablet (max-width: 980px)
   =================================================================== */

@media (max-width: 980px) {
  :root {
    --page-gutter: 3.2rem;
  }

  .hero-grid,
  .split-section,
  .service-grid,
  .pricing-grid,
  .process-grid,
  .testimonial-grid,
  .cta-card,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-grid,
  .pricing-grid,
  .pricing2-cards,
  .process-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-membership-card li {
    flex: 1 1 180px;
  }

  .pricing-card {
    min-height: 525px;
  }

  .pricing-divider {
    margin-top: 1.85rem;
  }

  .complex-project-cta {
    padding: 1.85rem;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.2rem;
  }

  .complex-project-button {
    min-height: 52px;
    padding-inline: 1.5rem;
    font-size: 1rem;
  }

  .services-cta-card {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .services-cta-actions {
    justify-self: start;
    align-self: end;
    width: min(100%, 320px);
    margin-top: 0.2rem;
  }

  #nosotros .service-grid,
  #diferencial .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .process-grid::before {
    left: 8%;
    right: 8%;
  }
}


/* ===================================================================
   Responsive - Mobile (max-width: 760px)
   =================================================================== */

@media (max-width: 760px) {
  :root {
    --page-gutter: 2.8rem;
  }

  .hero {
    padding-top: 2.3rem;
    padding-bottom: 2.2rem;
  }

  .hero-actions {
    margin: 1.1rem 0 1rem;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 0;
  }

  .projects-board {
    width: 100%;
    border-radius: 22px;
  }

  .projects-label {
    padding: 1rem 1rem 0.85rem;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .project-entry {
    gap: 0.75rem;
    padding: 0.9rem 1rem;
  }

  .project-main strong {
    font-size: 1rem;
  }

  .project-main span {
    font-size: 0.78rem;
  }

  .project-meta {
    font-size: 0.92rem;
  }

  .projects-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.9rem 1rem 1rem;
  }

  .projects-cta {
    font-size: 0.78rem;
    padding: 0.45rem 0.65rem;
  }

  body::before,
  body::after {
    display: none;
  }

  .site-header {
    padding-top: 0.8rem;
  }

  .navbar-wrapper {
    width: min(calc(100% - 0.9rem), 100%);
    margin-inline: auto;
  }

  .navbar {
    min-height: 50px;
    padding: 0.36rem 0.44rem;
    border-radius: 16px;
  }

  .brand,
  .nav-toggle {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .brand-logo {
    width: 18px;
    height: 18px;
  }

  .nav-rail {
    height: 36px;
    border-radius: 12px;
  }

  .nav-panel {
    top: calc(100% + 0.2rem);
  }

  .nav-panel-grid {
    grid-template-columns: 1fr;
  }

  .nav-panel-links {
    padding: 1rem 1rem 1.1rem;
  }

  .nav-panel-side {
    padding: 1rem;
    border-left: 0;
    border-top: 0;
  }

  .nav-links {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .nav-links a {
    padding: 0.8rem 0.9rem;
    font-size: 0.88rem;
    border-radius: 16px;
  }

  .nav-panel-note {
    font-size: 0.86rem;
  }

  .services-cta-card h2 {
    max-width: none;
  }

  .services-cta-actions {
    width: 100%;
    gap: 0.65rem;
  }

  .services-cta-actions .button {
    width: 100%;
    min-height: 50px;
  }

  .hero {
    padding-top: 2.3rem;
  }

  .hero-grid,
  .split-section,
  .service-grid,
  .pricing-grid,
  .pricing2-cards,
  .process-grid,
  .testimonial-grid,
  .why-choose-grid,
  .cta-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pricing-membership-card li {
    flex: 1 1 150px;
    max-width: none;
  }

  .pricing-card {
    min-height: auto;
  }

  .pricing-divider {
    margin: 1.7rem 0 1rem;
    gap: 0.35rem;
  }

  .pricing-divider h3 {
    font-size: clamp(1.32rem, 7vw, 1.72rem);
  }

  .pricing-grid-ecommerce {
    max-width: none;
  }

  .pricing-grid-ecommerce .pricing-card {
    max-width: none;
  }

  .complex-project-cta {
    margin-top: 1.35rem;
    padding: 1.4rem 1.1rem;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 1rem;
  }

  .complex-project-content h3 {
    font-size: clamp(1.45rem, 8vw, 2.1rem);
    max-width: none;
  }

  .complex-project-content p {
    margin-top: 0.8rem;
    max-width: none;
    font-size: 1rem;
  }

  .complex-project-button {
    width: 100%;
    min-height: 50px;
    font-size: 0.98rem;
    padding-inline: 1rem;
  }

  .trusted-logos-section {
    --trusted-gap: 1.45rem;
    --trusted-slot: 116px;
    padding: 0.5rem 0 0.8rem;
  }

  .trusted-logos-heading {
    margin-bottom: 0.95rem;
  }

  .trusted-logos-heading h2 {
    font-size: clamp(1.3rem, 7.2vw, 1.85rem);
  }

  .trusted-logos-track {
    animation-duration: 26s;
  }

  .trusted-logo-item img {
    height: 18px;
    width: min(104px, calc(var(--trusted-slot) - 8px));
    max-width: 100%;
  }

  .trusted-logo-item img[src*="github.png"] {
    height: 26px;
    width: min(120px, var(--trusted-slot));
  }

  h1 {
    max-width: none;
  }

  #nosotros .split-section .image-card {
    justify-content: center;
  }

  #nosotros .split-section .image-card img {
    width: 100%;
    transform: none;
  }

  #nosotros .service-grid,
  #diferencial .service-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    flex-basis: min(86vw, 320px);
    width: min(86vw, 320px);
    min-height: 348px;
    height: 348px;
    padding: 1.45rem;
  }

  .review-company {
    margin-top: 1.3rem;
    font-size: 1.08rem;
    min-height: 3.7em;
  }

  .review-card h3 {
    font-size: 0.86rem;
  }

  .review-quote {
    font-size: 0.86rem;
    line-height: 1.64;
  }

  .service-grid .card h3 {
    min-height: auto;
  }

  .process-grid {
    gap: 1.5rem;
    padding-top: 0;
  }

  .process-grid::before {
    left: 1.2rem;
    right: auto;
    top: 1rem;
    bottom: 1rem;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg,
      rgba(124, 58, 237, 0.2),
      rgba(124, 58, 237, 0.85),
      rgba(255, 107, 53, 0.65),
      rgba(124, 58, 237, 0.15));
    animation: none;
  }

  .process-step,
  .process-step:nth-child(2),
  .process-step:nth-child(4) {
    margin-top: 0;
  }

  .process-step {
    padding: 1.3rem 1.2rem 1.3rem 4rem;
  }

  .process-step::before {
    top: 1.85rem;
    left: 1.2rem;
    transform: none;
  }

  .process-step span {
    top: 0.8rem;
    left: 1.2rem;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    font-size: 0.9rem;
  }

  .process-step h3,
  .process-step p {
    text-align: left;
  }

  .cta-card::before {
    animation: none;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(255, 107, 53, 0.2));
  }

  .navbar,
  .nav-panel-card,
  .card,
  .why-card,
  .review-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}


/* ===================================================================
   Card / Box Unification
   =================================================================== */

.card,
.process-step,
.testimonial,
.hero-card,
.image-card,
.cta-card,
.logo-strip,
.logo-items span,
.why-card,
.review-card,
.pricing-card,
.pricing2-card,
.pricing2-card-featured,
.pricing-membership-card,
.pricing-membership-card li,
.complex-project-cta,
.contact-form {
  border: 0 !important;
  background: var(--card-surface) !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow) !important;
}

.pricing-membership-card li {
  border-radius: var(--radius-sm) !important;
}

#nosotros .split-section .image-card {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

/* ===================================================================
   Small Chips - Solid Style
   =================================================================== */

.logo-items span,
.pricing-membership-card li {
  background: #efefef !important;
  border: 0 !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  color: #1f2937 !important;
}

.logo-items span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.8rem 1.2rem;
}

.pricing-membership-card li {
  min-height: 56px;
  padding: 0.7rem 1rem;
}

.logo-items span:hover,
.logo-items span:focus-visible,
.pricing-membership-card li:hover,
.pricing-membership-card li:focus-within {
  background: #f5f5f5 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 22px rgba(26, 26, 26, 0.08) !important;
}

/* ===================================================================
   Reduced Motion
   =================================================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .reviews-track,
  .review-card {
    transition: none !important;
  }
}

@media (prefers-reduced-data: reduce) {
  body::before,
  body::after,
  .cta-card::before,
  .process-grid::before {
    display: none;
  }

  .navbar,
  .nav-panel-card,
  .card,
  .why-card,
  .review-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}




