/* ============================================================
   Ian Ayala — Landing MVP
   Mobile-first. Un solo media query mayor (>=768) y otro (>=1100).
   Tokens en :root. Sin frameworks.
   ============================================================ */

:root {
  /* Color */
  --orange-500: #FF6B2C;
  --orange-600: #E85A1F;
  --orange-700: #C7491A;
  --orange-grad: linear-gradient(135deg, #FF8A3D 0%, #FF5A1F 100%);
  --orange-grad-soft: linear-gradient(135deg, #FFE6D6 0%, #FFD2B5 100%);
  --orange-shadow: 0 8px 24px rgba(255, 107, 44, 0.28);
  --orange-shadow-hover: 0 14px 32px rgba(255, 107, 44, 0.36);

  --ink-900: #0F1419;
  --ink-700: #2A3038;
  --ink-500: #5A6470;
  --ink-300: #9AA3AD;

  --bg: #FFFFFF;
  --bg-soft: #FAFAF8;
  --bg-card: #FFFFFF;
  --border: #E8EAED;
  --border-strong: #D5D9DE;

  --shadow-sm: 0 2px 8px rgba(15, 20, 25, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 20, 25, 0.06);
  --shadow-lg: 0 16px 40px rgba(15, 20, 25, 0.10);

  /* Tipo */
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Hanken Grotesk', 'Inter', system-ui, sans-serif;
  --font-script: 'Caveat', cursive;

  /* Radio */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Espaciado fluido */
  --space-section: clamp(3.5rem, 7vw, 6rem);
  --space-block: clamp(2rem, 4vw, 3rem);

  /* Container */
  --container-max: 1120px;
  --container-narrow: 760px;
  --container-pad: clamp(1rem, 4vw, 2rem);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; height: auto; }

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

button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

p { margin: 0; }

ul, ol { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--orange-500); color: #fff; }

/* ============================================================
   Utilidades
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.container--narrow { max-width: var(--container-narrow); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink-900);
  color: #fff;
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.eyebrow {
  display: inline-block;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange-600);
  margin: 0 0 .75rem;
}
.eyebrow--center { display: block; text-align: center; }

.section-head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-title {
  font-size: clamp(1.625rem, 4.5vw, 2.5rem);
  font-weight: 800;
}

.accent {
  background: var(--orange-grad);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 12px rgba(255, 107, 44, 0.18));
}

.accent-strong {
  background: var(--orange-grad);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 6px 16px rgba(255, 107, 44, 0.30));
}

/* ============================================================
   Botones
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9375rem;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-align: center;
  white-space: nowrap;
}

.btn--lg {
  padding: 1.125rem 1.875rem;
  font-size: 1rem;
  border-radius: var(--radius);
}

.btn--sm {
  padding: .625rem 1.125rem;
  font-size: .875rem;
}

.btn--block { display: flex; width: 100%; }

.btn--primary {
  color: #fff;
  background: var(--orange-grad);
  box-shadow: var(--orange-shadow);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--orange-shadow-hover);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  color: var(--ink-900);
  background: transparent;
  border: 1.5px solid var(--border-strong);
}
.btn--ghost:hover {
  border-color: var(--orange-500);
  color: var(--orange-600);
}

.link-cta {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-weight: 600;
  color: var(--orange-600);
  font-size: .9375rem;
  transition: gap .2s ease, color .2s ease;
}
.link-cta:hover {
  gap: .5rem;
  color: var(--orange-700);
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  padding: 1.125rem 0;
  border-bottom: 1px solid transparent;
  position: relative;
  z-index: 10;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.0625rem;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}

.logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--orange-grad);
  color: #fff;
  font-weight: 800;
  font-size: 1.125rem;
  box-shadow: var(--orange-shadow);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding: clamp(2rem, 5vw, 4rem) 0 var(--space-section);
  overflow: hidden;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__title {
  font-size: clamp(2rem, 7.5vw, 3.75rem);
  font-weight: 800;
  margin: 0 0 1rem;
  max-width: 16ch;
}

.hero__sub {
  font-size: clamp(1.0625rem, 2.2vw, 1.25rem);
  color: var(--ink-500);
  max-width: 36ch;
  margin: 0 auto clamp(2rem, 4vw, 2.5rem);
}

.hero__video {
  width: 100%;
  max-width: 760px;
  margin: 0 auto clamp(2rem, 4vw, 2.5rem);
}

.hero__video-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #1A2028 0%, #0F1419 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero__video-placeholder::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at center, rgba(255, 107, 44, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.hero__video-play {
  width: 64px;
  height: 64px;
  padding: 18px;
  border-radius: 50%;
  background: var(--orange-grad);
  color: #fff;
  box-shadow: var(--orange-shadow);
  position: relative;
}

.hero__video-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  position: relative;
  margin: 0;
}

.hero__microcopy {
  margin-top: 1rem;
  font-size: .875rem;
  color: var(--ink-500);
}

/* ============================================================
   Proof (+110K)
   ============================================================ */
.proof {
  padding: var(--space-section) 0;
  background: var(--ink-900);
  color: #fff;
}

.proof__inner { text-align: center; }

.proof .eyebrow { color: #FF8A3D; }

.proof__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 6.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin: .5rem 0 1rem;
}

.proof__number .accent-strong {
  filter: drop-shadow(0 6px 24px rgba(255, 107, 44, 0.50));
}

.proof__caption {
  font-size: clamp(1.0625rem, 2.2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 52ch;
  margin: 0 auto;
}

.proof__credential {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 52ch;
  margin: 0 auto;
}

.proof__screenshot {
  margin: clamp(2rem, 5vw, 3rem) auto;
  max-width: 640px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.40);
}

.proof__screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

.proof__screenshot figcaption {
  padding: .875rem 1.25rem;
  font-size: .8125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.80);
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  text-align: center;
}

/* ============================================================
   Servicios
   ============================================================ */
.services {
  padding: var(--space-section) 0;
}

.services__grid {
  display: grid;
  gap: 1.25rem;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.service-card--featured {
  border: 2px solid var(--orange-500);
  padding-top: 2.5rem;
  box-shadow: 0 12px 32px rgba(255, 107, 44, 0.18);
}
.service-card--featured:hover {
  box-shadow: 0 18px 44px rgba(255, 107, 44, 0.28);
}

.service-card__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--orange-grad);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .375rem .875rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--orange-shadow);
  white-space: nowrap;
}

.service-card__tier {
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin: 0 0 1rem;
}
.service-card--featured .service-card__tier { color: var(--orange-600); }

.service-card__price-block { margin-bottom: 1.25rem; }

.price-badge {
  display: inline-block;
  background: var(--orange-grad);
  color: #fff;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: .25rem .625rem;
  border-radius: var(--radius-pill);
  margin-bottom: .75rem;
  box-shadow: var(--orange-shadow);
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  flex-wrap: wrap;
  line-height: 1;
}

.price-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.03em;
}

.price-currency {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-500);
}

.price-main .price-period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-500);
  margin-left: -.25rem;
}

.price-old {
  font-weight: 500;
  color: var(--ink-300);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--ink-300);
}

.price-main .price-old {
  font-size: 1.125rem;
  margin-left: .25rem;
}

.price-secondary {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin-top: .5rem;
  font-size: .875rem;
  flex-wrap: wrap;
}

.price-secondary .price-old {
  font-size: .8125rem;
  text-decoration-thickness: 1.5px;
}

.price-secondary .price-new {
  color: var(--ink-700);
  font-weight: 600;
}

.price-secondary .price-period {
  font-size: .875em;
  font-weight: 400;
  color: var(--ink-500);
  margin-left: .15rem;
}

.duration-pill {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  margin-top: 1rem;
  padding: .375rem .75rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: .8125rem;
  font-weight: 500;
  color: var(--ink-700);
}
.duration-pill__icon {
  width: 14px;
  height: 14px;
  color: var(--ink-500);
}

.service-card__desc {
  font-size: .9375rem;
  color: var(--ink-500);
  margin: 0 0 1.5rem;
  line-height: 1.55;
}

.service-card__list { margin-bottom: 1.25rem; }

.list-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin: 0 0 .625rem;
}

.check-list,
.x-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.x-list li {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .9375rem;
  color: var(--ink-700);
  line-height: 1.45;
}
.x-list li { color: var(--ink-500); }

.list-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.list-icon--check { color: var(--orange-500); }
.list-icon--x { color: var(--ink-300); }

.service-card__tagline {
  font-style: italic;
  font-size: .875rem;
  color: var(--ink-500);
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

.service-card__note {
  margin: 0 0 1.25rem;
  font-size: .75rem;
  color: var(--ink-500);
  font-style: italic;
  line-height: 1.5;
}

.service-card .btn {
  margin-top: auto;
  width: 100%;
}

.btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ============================================================
   Resultados de clientes
   ============================================================ */
.results {
  padding: var(--space-section) 0;
  background: var(--bg-soft);
  overflow: hidden;
}

/* Marquee testimonios */
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.marquee__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: scroll-x 50s linear infinite;
}

.marquee:hover .marquee__track { animation-play-state: paused; }

@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.testimonial {
  flex: 0 0 auto;
  width: 260px;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.testimonial img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* ============================================================
   FAQs
   ============================================================ */
.faqs {
  padding: var(--space-section) 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.faq {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq[open] {
  border-color: var(--orange-500);
  box-shadow: var(--shadow-sm);
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.125rem 3rem 1.125rem 1.25rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink-900);
  position: relative;
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--orange-600);
  background: var(--orange-grad-soft);
  border-radius: 50%;
  transition: transform .25s ease, background .25s ease;
}
.faq[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}

.faq__body {
  padding: 0 1.25rem 1.25rem;
  color: var(--ink-500);
  font-size: .9375rem;
}
.faq__body p + p { margin-top: .75rem; }
.faq__body strong { color: var(--ink-700); font-weight: 600; }

/* ============================================================
   CTA Final + Calendly
   ============================================================ */
.cta-final {
  padding: var(--space-section) 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}

.cta-final__sub {
  font-size: 1.0625rem;
  color: var(--ink-500);
  max-width: 48ch;
  margin: 1rem auto 0;
}

.calendly-inline-widget {
  display: block;
  min-width: 320px;
  height: 1000px;
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .calendly-inline-widget {
    height: 850px;
    margin-top: 2.5rem;
  }
}

/* ============================================================
   CTA mini (cierre de página)
   ============================================================ */
.cta-mini {
  padding: var(--space-section) 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  text-align: center;
}

.cta-mini__title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  margin: 0 0 .75rem;
}

.cta-mini__sub {
  font-size: 1.0625rem;
  color: var(--ink-500);
  max-width: 42ch;
  margin: 0 auto 2rem;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  padding: 3rem 0 5rem;
  background: var(--ink-900);
  color: #fff;
}

.site-footer__inner {
  display: grid;
  gap: 2rem;
  text-align: center;
}

.site-footer .logo,
.site-footer .logo__name { color: #fff; }

.site-footer__tag {
  margin-top: .25rem;
  font-size: .875rem;
  color: var(--ink-300);
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  justify-content: center;
}
.site-footer__nav a {
  color: #fff;
  font-weight: 500;
  font-size: .9375rem;
  transition: color .2s ease;
}
.site-footer__nav a:hover { color: var(--orange-500); }

.site-footer__legal {
  font-size: .8125rem;
  color: var(--ink-300);
}

/* ============================================================
   WhatsApp flotante
   ============================================================ */
.whatsapp-float {
  position: fixed;
  right: 1.125rem;
  bottom: 1.125rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.40);
  z-index: 50;
  opacity: 0;
  transform: translateY(12px) scale(.9);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.whatsapp-float.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.whatsapp-float:hover { transform: translateY(-2px) scale(1.05); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* ============================================================
   Reveal animations (IntersectionObserver toggles .is-visible)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Responsive — desktop overrides
   ============================================================ */
@media (min-width: 768px) {
  body { font-size: 1.0625rem; }

  .hero {
    padding: clamp(3rem, 6vw, 5rem) 0 var(--space-section);
  }

  .services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .testimonial { width: 320px; }

  .site-footer__inner {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    text-align: left;
  }
  .site-footer__brand { text-align: left; }
  .site-footer__legal { text-align: right; }

  .whatsapp-float {
    right: 1.5rem;
    bottom: 1.5rem;
    width: 60px;
    height: 60px;
  }
}

@media (min-width: 1100px) {
  .hero__title { font-size: 4rem; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}

/* ============================================================
   Proof stats
   ============================================================ */
.proof__stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: clamp(2rem, 5vw, 3rem) auto 0;
  padding: clamp(1.5rem, 4vw, 2rem) 0 0;
  max-width: 760px;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.proof__stat {
  text-align: center;
}

.proof__stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.8vw, 2.125rem);
  font-weight: 800;
  color: var(--orange-500);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: .375rem;
}

.proof__stat-label {
  display: block;
  font-size: .9375rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.45;
}

@media (min-width: 768px) {
  .proof__stats {
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    padding-top: clamp(2rem, 4vw, 2.5rem);
  }
  .proof__stat {
    flex: 1;
    max-width: 240px;
  }
}

/* ============================================================
   Proof stat link (a testimonios)
   ============================================================ */
.proof__stat-link {
  display: inline-block;
  margin-top: .5rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--orange-500);
  transition: color .2s ease;
}
.proof__stat-link:hover {
  color: #FFB385;
}

/* ============================================================
   Services hint (texto debajo del stack de servicios)
   ============================================================ */
.services__hint {
  margin: clamp(2rem, 4vw, 2.5rem) auto 0;
  max-width: 640px;
  text-align: center;
  font-size: .9375rem;
  color: var(--ink-500);
  line-height: 1.6;
}
.services__hint a {
  color: var(--orange-600);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  transition: color .2s ease;
}
.services__hint a:hover {
  color: var(--orange-700);
}
