/* ============================================================
   Dostics — Home page styles
   Built on the Dostics design system. Uses brand tokens only.
   ============================================================ */

@import url("colors_and_type.css");
@import url("https://unpkg.com/lucide-static@0.469.0/font/lucide.css");

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

html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  overflow-x: hidden;
}

/* ------------------------------------------------------------
   Layout primitives
   ------------------------------------------------------------ */
.shell {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

section { position: relative; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0;
}
.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--dostics-blue);
}

/* ------------------------------------------------------------
   Header / Nav
   ------------------------------------------------------------ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              backdrop-filter var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom-color: var(--divider);
}
.nav__logo .logo--white { display: none; }
.nav--on-dark:not(.is-stuck) .nav__logo .logo--default { display: none; }
.nav--on-dark:not(.is-stuck) .nav__logo .logo--white { display: block; }

.nav--on-dark:not(.is-stuck) .nav__menu a,
.nav--on-dark:not(.is-stuck) .nav__cta .btn--ghost {
  color: var(--dostics-white);
}
.nav--on-dark:not(.is-stuck) .nav__menu a:hover {
  color: var(--dostics-navy);
}
.nav--on-dark:not(.is-stuck) .nav__menu a.is-active {
  color: var(--dostics-white);
}
.nav--on-dark:not(.is-stuck) .nav__menu a.is-active::after {
  background: var(--dostics-blue);
}
.nav--on-dark:not(.is-stuck) .nav__cta .btn--primary {
  background: var(--dostics-white);
  color: var(--dostics-navy);
  border-color: var(--dostics-white);
}
.nav--on-dark:not(.is-stuck) .nav__cta .btn--primary:hover {
  background: var(--navy-100);
  border-color: var(--navy-100);
}
.nav__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg-strong);
}
.nav__logo img { height: 28px; width: auto; display: block; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav__menu a {
  display: inline-block;
  padding: 10px 14px;
  font-size: 15px;
  font-weight: var(--fw-semibold);
  color: var(--fg);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: color var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
}
.nav__menu a:hover {
  color: var(--fg-strong);
  background: var(--brand-soft);
}
.nav__menu a.is-active { color: var(--fg-strong); }
.nav__menu a.is-active::after {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background: var(--dostics-blue);
  border-radius: 2px;
  margin: 4px auto 0;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 44px;
  padding: 0 22px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--brand);
  color: var(--fg-on-brand);
}
.btn--primary:hover { background: var(--brand-hover); }
.btn--primary:active { background: var(--brand-press); }

.btn--ghost {
  background: transparent;
  color: var(--fg-strong);
  border-color: var(--border-strong);
}
.btn--ghost:hover {
  background: var(--brand-soft);
  border-color: var(--dostics-blue);
}

.btn--lg {
  height: 52px;
  padding: 0 28px;
  font-size: 16px;
}

.btn--on-dark {
  background: var(--dostics-white);
  color: var(--dostics-navy);
}
.btn--on-dark:hover { background: var(--dostics-mist); }

.btn--ghost-on-dark {
  background: transparent;
  color: var(--dostics-white);
  border-color: rgba(255,255,255,0.3);
}
.btn--ghost-on-dark:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

/* ------------------------------------------------------------
   Hero
   ------------------------------------------------------------ */
.hero {
  position: relative;
  padding: 168px 0 96px;
  overflow: hidden;
  background: var(--bg);
}
.hero::before {
  /* subtle tinted glow at bottom-left */
  content: "";
  position: absolute;
  inset: auto 0 -200px -200px;
  width: 600px; height: 600px;
  background: radial-gradient(closest-side, rgba(var(--dostics-blue-rgb), 0.18), transparent 70%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero__copy { max-width: 640px; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 6px;
  background: var(--brand-soft);
  border: 1px solid var(--navy-100);
  border-radius: var(--radius-full);
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--dostics-navy);
  margin-bottom: 28px;
}
.hero__eyebrow .dot {
  width: 18px; height: 18px;
  border-radius: var(--radius-full);
  background: var(--dostics-navy);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--dostics-white);
  font-size: 10px;
}
.hero__title {
  font-size: clamp(40px, 5.4vw, 68px);
  font-weight: var(--fw-bold);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--fg-strong);
  margin: 0 0 24px;
  text-wrap: balance;
}
.hero__title em {
  font-style: normal;
  color: var(--dostics-navy);
  position: relative;
  white-space: nowrap;
}
.hero__title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 4px;
  height: 10px;
  background: var(--dostics-blue);
  opacity: 0.45;
  z-index: -1;
  border-radius: 2px;
}
.hero__subtitle {
  font-size: 19px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0 0 36px;
  max-width: 540px;
  text-wrap: pretty;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero__ctas .btn--ghost { color: var(--fg-strong); }
.hero__meta {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--fg-muted);
}
.hero__meta .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(31, 138, 91, 0.5);
  animation: pulse 2s var(--ease-out) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(31, 138, 91, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(31, 138, 91, 0); }
  100% { box-shadow: 0 0 0 0 rgba(31, 138, 91, 0); }
}

/* Hero visual */
.hero__visual {
  position: relative;
  width: 100%;
  height: 480px;
  max-width: 520px;
  margin-left: auto;
}
.hero__visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(31,44,91,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(31,44,91,0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(closest-side, black 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(closest-side, black 60%, transparent 100%);
}
.hero__visual-iso {
  position: absolute;
  inset: 8% 8% 8% 8%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__visual-iso img {
  width: 76%;
  height: auto;
  filter: drop-shadow(0 30px 40px rgba(31, 44, 91, 0.18));
  animation: drift 9s ease-in-out infinite;
}
@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-10px) rotate(-1.5deg); }
}
.hero__visual-card {
  position: absolute;
  background: var(--dostics-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: var(--fw-semibold);
  color: var(--fg-strong);
  animation: float 7s ease-in-out infinite;
}
.hero__visual-card .icon {
  width: 32px; height: 32px;
  border-radius: var(--radius-md);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.hero__visual-card .icon--code  { background: var(--brand-soft); color: var(--dostics-navy); }
.hero__visual-card .icon--data  { background: #E5F4EC; color: var(--success); }
.hero__visual-card .icon--shield{ background: #F4EAEA; color: var(--danger); }

.hero__visual-card .label {
  display: block;
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 2px;
}

.hero__visual-card--a { top: 8%;  left: -6%;  animation-delay: 0s; }
.hero__visual-card--b { top: 44%; right: -10%; animation-delay: -2s; }
.hero__visual-card--c { bottom: 6%; left: 10%;  animation-delay: -4s; }

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

/* ------------------------------------------------------------
   Credibility band
   ------------------------------------------------------------ */
.credibility {
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  background: var(--bg-tint);
  padding: 56px 0;
}
.credibility__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}
.metric {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 20px;
  border-left: 1px solid var(--navy-200);
}
.metric__value {
  font-family: var(--font-condensed);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--dostics-navy);
}
.metric__value .plus { color: var(--dostics-blue); }
.metric__label {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.5;
  max-width: 26ch;
}

.logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 40px;
}
.logos__label {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--fg-subtle);
  flex: 0 0 100%;
  margin-bottom: 4px;
}
.logos__item {
  font-family: var(--font-condensed);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--fg-muted);
  opacity: 0.7;
  transition: opacity var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}
.logos__item:hover {
  opacity: 1;
  color: var(--dostics-navy);
}

/* ------------------------------------------------------------
   Problem (manifesto)
   ------------------------------------------------------------ */
.problem {
  padding: 128px 0;
  position: relative;
}
.problem__inner {
  max-width: 880px;
  margin: 0 auto;
}
.problem__mark {
  font-family: var(--font-display);
  font-size: 160px;
  line-height: 0.8;
  color: var(--dostics-blue);
  opacity: 0.45;
  margin-bottom: -32px;
  user-select: none;
}
.problem__body {
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: var(--fw-light);
  line-height: 1.35;
  color: var(--fg-strong);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.problem__body p { margin: 0 0 24px; }
.problem__body p:last-child { margin: 0; }
.problem__body strong {
  font-weight: var(--fw-semibold);
  color: var(--dostics-navy);
}

/* ------------------------------------------------------------
   Solutions
   ------------------------------------------------------------ */
.solutions {
  padding: 112px 0;
  background: var(--bg);
  border-top: 1px solid var(--divider);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 56px;
}
.section-head__copy { max-width: 640px; }
.section-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: var(--fw-bold);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg-strong);
  margin: 12px 0 0;
}
.section-head__lede {
  margin-top: 12px;
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.solution-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--dostics-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  min-height: 360px;
}
.solution-card::after {
  content: "";
  position: absolute;
  inset: auto auto -40px -40px;
  width: 220px; height: 220px;
  background: var(--grad-mist);
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
  z-index: 0;
  filter: blur(40px);
}
.solution-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--dostics-blue);
}
.solution-card:hover::after { opacity: 0.4; }
.solution-card > * { position: relative; z-index: 1; }

.solution-card__num {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--fg-subtle);
  margin-bottom: 24px;
}
.solution-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-lg);
  background: var(--brand-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dostics-navy);
  margin-bottom: 28px;
  transition: background var(--dur-base) var(--ease-out);
}
.solution-card:hover .solution-card__icon {
  background: var(--dostics-navy);
  color: var(--dostics-white);
}
.solution-card__title {
  font-size: 24px;
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--fg-strong);
  margin: 0 0 12px;
}
.solution-card__body {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0 0 24px;
  flex-grow: 1;
}
.solution-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: var(--fw-semibold);
  color: var(--dostics-navy);
  text-decoration: none;
}
.solution-card__link .arrow {
  transition: transform var(--dur-base) var(--ease-out);
}
.solution-card:hover .solution-card__link .arrow { transform: translateX(4px); }

/* ------------------------------------------------------------
   Process — "Así trabajamos"
   ------------------------------------------------------------ */
.process {
  padding: 112px 0;
  background: var(--dostics-navy);
  color: var(--fg-on-dark);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/dostics-isotype.svg');
  background-size: 800px auto;
  background-position: right -200px top -150px;
  background-repeat: no-repeat;
  opacity: 0.06;
  pointer-events: none;
}
.process .section-head h2 { color: var(--dostics-white); }
.process .section-head__lede { color: rgba(255,255,255,0.7); }
.process .section-eyebrow { color: var(--dostics-mist); }
.process .section-eyebrow::before { background: var(--dostics-blue); }

.process__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}
.step {
  display: flex;
  flex-direction: column;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.16);
  position: relative;
}
.step__num {
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--dostics-blue);
  margin-bottom: 12px;
}
.step__big {
  font-family: var(--font-condensed);
  font-size: 120px;
  line-height: 0.9;
  font-weight: 700;
  color: var(--dostics-white);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  background: linear-gradient(180deg, var(--dostics-white) 0%, rgba(255,255,255,0.25) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.step__title {
  font-size: 22px;
  font-weight: var(--fw-semibold);
  color: var(--dostics-white);
  line-height: 1.25;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.step__body {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

/* ------------------------------------------------------------
   Case study
   ------------------------------------------------------------ */
.case {
  padding: 112px 0;
  background: var(--bg-tint);
}
.case__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--dostics-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.case__visual {
  background: var(--grad-brand);
  position: relative;
  overflow: hidden;
  min-height: 460px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--dostics-white);
}
.case__visual::before {
  content: "";
  position: absolute;
  inset: -20%;
  background-image: radial-gradient(circle at 30% 30%, rgba(152,178,220,0.25), transparent 50%);
  pointer-events: none;
}
.case__big-number {
  position: relative;
  font-family: var(--font-condensed);
  font-size: clamp(96px, 12vw, 168px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: var(--dostics-white);
}
.case__big-number .unit {
  font-size: 0.4em;
  color: var(--dostics-blue);
  font-weight: 600;
  margin-left: 4px;
  letter-spacing: 0;
}
.case__big-caption {
  position: relative;
  font-size: 17px;
  line-height: 1.45;
  color: rgba(255,255,255,0.85);
  max-width: 28ch;
  margin-top: 24px;
}
.case__placeholder-tag {
  position: relative;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--dostics-mist);
  border: 1px dashed rgba(255,255,255,0.3);
  border-radius: var(--radius-full);
  padding: 6px 12px;
}
.case__body {
  padding: 48px 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.case__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--dostics-navy);
  background: var(--brand-soft);
  border-radius: var(--radius-full);
  padding: 6px 12px;
  align-self: flex-start;
}
.case__h2 {
  font-size: 32px;
  font-weight: var(--fw-bold);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg-strong);
  margin: 0;
  text-wrap: balance;
}
.case__fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}
.case__field {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--divider);
  align-items: baseline;
}
.case__field:last-child { border-bottom: 1px solid var(--divider); }
.case__field dt {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--fg-subtle);
}
.case__field dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--fg);
}
.case__cta { margin-top: 8px; align-self: flex-start; }
.case__cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: var(--fw-semibold);
  color: var(--dostics-navy);
  text-decoration: none;
}
.case__cta a .arrow { transition: transform var(--dur-base) var(--ease-out); }
.case__cta a:hover .arrow { transform: translateX(4px); }

/* ------------------------------------------------------------
   Closing — human CTA
   ------------------------------------------------------------ */
.close {
  padding: 144px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.close::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 720px; height: 720px;
  background: radial-gradient(closest-side, rgba(var(--dostics-blue-rgb), 0.16), transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.close__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.close__iso {
  width: 52px;
  height: 52px;
  margin: 0 auto 32px;
  opacity: 0.9;
}
.close__h2 {
  font-size: clamp(36px, 4.6vw, 56px);
  font-weight: var(--fw-bold);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg-strong);
  margin: 0 0 36px;
  text-wrap: balance;
}
.close .btn--lg { margin: 0 auto; }

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer__logo { height: 32px; margin-bottom: 16px; }
.footer__tag {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.65);
  max-width: 280px;
  margin: 0;
}
.footer__col h4 {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--dostics-blue);
  margin: 0 0 20px;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 14.5px;
  transition: color var(--dur-fast) var(--ease-out);
}
.footer__col a:hover { color: var(--dostics-white); }

.city {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.city + .city { margin-top: 12px; }
.city__name {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--dostics-white);
}
.city__detail {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.45;
}

.socials {
  display: flex;
  gap: 8px;
}
.socials a {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.socials a:hover { background: var(--dostics-blue); color: var(--dostics-navy); }

.footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
}
.footer__bar a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.footer__bar a:hover { color: var(--dostics-white); }

/* ------------------------------------------------------------
   WhatsApp FAB
   ------------------------------------------------------------ */
.fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 14px;
  background: #25D366;
  color: #ffffff;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: var(--fw-semibold);
  font-size: 14px;
  box-shadow: 0 12px 24px -6px rgba(37, 211, 102, 0.5),
              0 4px 10px rgba(11, 15, 30, 0.18);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
  border: none;
  cursor: pointer;
}
.fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -6px rgba(37, 211, 102, 0.6),
              0 6px 14px rgba(11, 15, 30, 0.22);
}
.fab__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.fab__icon svg { width: 16px; height: 16px; color: #25D366; }
.fab__label { padding-right: 4px; }

/* ------------------------------------------------------------
   Reveal on scroll
   ------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */
@media (max-width: 1100px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 420px; margin: 0 auto; }
  .solutions__grid { grid-template-columns: 1fr; }
  .process__list { grid-template-columns: 1fr; gap: 24px; }
  .credibility__metrics { grid-template-columns: 1fr; gap: 24px; }
  .case__card { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 720px) {
  .shell { padding: 0 20px; }
  .nav { height: 64px; }
  .nav__menu { display: none; }
  .hero { padding: 128px 0 64px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .case__body { padding: 32px 24px; }
  .footer__grid { grid-template-columns: 1fr; }
  .step__big { font-size: 96px; }
  .fab__label { display: none; }
  .fab { padding: 14px; }
}


/* ============================================================
   v2 ADDITIONS — hero mocks, credibility rework, grayscale logos
   ============================================================ */

/* ---- Hero stack of dashboard mocks ---- */
.hero-mocks {
  position: absolute;
  inset: 0;
}
.hero-mocks__screen {
  position: absolute;
  border-radius: var(--radius-lg);
  background: var(--dostics-white);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    var(--shadow-lg);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.hero-mocks__screen svg { display: block; width: 100%; height: 100%; }

.hero-mocks__screen--app {
  top: 0; right: 0;
  width: 64%; aspect-ratio: 360 / 240;
  transform: rotate(2deg);
  z-index: 2;
}
.hero-mocks__screen--monitor {
  bottom: 26%; left: -2%;
  width: 52%; aspect-ratio: 320 / 240;
  transform: rotate(-3deg);
  z-index: 1;
  background: var(--navy-950);
}
.hero-mocks__screen--data {
  bottom: 0; right: 6%;
  width: 72%; aspect-ratio: 360 / 240;
  transform: rotate(-1deg);
  z-index: 3;
}

.hero-mocks__screen--data { animation: floatA 8s ease-in-out infinite; }
.hero-mocks__screen--app { animation: floatB 9s ease-in-out infinite; }
.hero-mocks__screen--monitor { animation: floatC 10s ease-in-out infinite; }
@keyframes floatA {
  0%,100% { transform: rotate(-1deg) translateY(0); }
  50%     { transform: rotate(-1deg) translateY(-6px); }
}
@keyframes floatB {
  0%,100% { transform: rotate(2deg) translateY(0); }
  50%     { transform: rotate(2deg) translateY(-8px); }
}
@keyframes floatC {
  0%,100% { transform: rotate(-3deg) translateY(0); }
  50%     { transform: rotate(-3deg) translateY(-5px); }
}

/* Service chips floating around the stack */
.hero-mocks__chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--dostics-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--fg-strong);
  box-shadow: var(--shadow-md);
  z-index: 4;
  white-space: nowrap;
}
.hero-mocks__chip .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.hero-mocks__chip--dev  { top: -10px; left: 12%; }
.hero-mocks__chip--data { top: 38%; right: -16px; }
.hero-mocks__chip--sec  { bottom: 12%; left: -14px; }

/* ---- Credibility rework ---- */
.credibility {
  padding: 72px 0 64px;
}
.credibility__split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  padding-bottom: 56px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--navy-100);
  align-items: center;
}

.metric--years .metric__value {
  font-family: var(--font-condensed);
  font-size: 96px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--dostics-navy);
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.metric--years .metric__value .plus {
  color: var(--dostics-blue);
  font-size: 0.55em;
  font-weight: 700;
  line-height: 1;
}
.metric--years .metric__unit {
  font-family: var(--font-condensed);
  font-size: 22px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0;
  margin-left: 14px;
  align-self: end;
  padding-bottom: 12px;
}
.metric--years .metric__label {
  margin-top: 12px;
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 28ch;
  line-height: 1.5;
}

.metric--sectors {
  border-left: 1px solid var(--navy-100);
  padding-left: 48px;
}
.metric__eyebrow {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.sectors {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  column-gap: 48px;
  row-gap: 18px;
}
.sector {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: var(--fw-semibold);
  letter-spacing: -0.01em;
  color: var(--fg-strong);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.sector__bullet {
  width: 10px; height: 10px;
  background: var(--dostics-blue);
  transform: rotate(45deg);
  display: inline-block;
}

/* ---- Client logos strip ---- */
.clients {
  text-align: center;
}
.clients__label {
  display: block;
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 28px;
}
.clients__strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 24px 40px;
}
.clients__logo {
  height: 88px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.75;
  filter: grayscale(100%);
  transition: opacity var(--dur-base) var(--ease-out),
              filter var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}
.clients__logo img {
  max-height: calc(88px * var(--logo-scale, 1));
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.clients__logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-1px);
}

/* ---- Problem block: strip the giant quote, pure typography ---- */
.problem {
  padding: 144px 0;
  text-align: center;
}
.problem__inner {
  max-width: 880px;
}
.problem__body {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.4vw, 52px);
  font-weight: var(--fw-medium);
  line-height: 1.2;
  letter-spacing: -0.018em;
  color: var(--fg-strong);
  text-wrap: balance;
}
.problem__body p { margin: 0 0 36px; }
.problem__body p:last-child { margin: 0; }
.problem__body strong {
  font-weight: var(--fw-bold);
  color: var(--dostics-navy);
}

/* ---- Responsive additions ---- */
@media (max-width: 1100px) {
  .credibility__split { grid-template-columns: 1fr; gap: 40px; }
  .metric--sectors { border-left: 0; padding-left: 0; padding-top: 32px; border-top: 1px solid var(--navy-100); }
  .hero-mocks__chip--dev  { top: 0; left: 4%; }
  .hero-mocks__chip--data { top: auto; bottom: -18px; right: 4%; }
  .hero-mocks__chip--sec  { bottom: 38%; left: -8px; }
}
@media (max-width: 720px) {
  .clients__strip { gap: 20px 24px; grid-template-columns: repeat(2, 1fr); }
  .clients__logo { height: 72px; }
  .clients__logo img { max-height: calc(72px * var(--logo-scale, 1)); }
  .sectors { grid-template-columns: 1fr; }
  .problem { padding: 88px 0; }
  .hero-mocks__chip { font-size: 11px; padding: 6px 10px; }
}


/* ============================================================
   NOSOTROS PAGE
   ============================================================ */

/* Reusable: stock-photo placeholder */
.ph {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  background: var(--dostics-mist);
  background-image:
    repeating-linear-gradient(135deg,
      rgba(31,44,91,0.06) 0,
      rgba(31,44,91,0.06) 1px,
      transparent 1px,
      transparent 10px);
  overflow: hidden;
  isolation: isolate;
}
.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 30% 20%,
    rgba(255,255,255,0.55), transparent 55%),
    radial-gradient(80% 80% at 80% 90%,
    rgba(31,44,91,0.18), transparent 60%);
  pointer-events: none;
}
.ph__tag {
  position: absolute;
  left: 16px; bottom: 16px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.94);
  color: var(--fg-strong);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  z-index: 2;
  border: 1px solid rgba(31,44,91,0.08);
}
.ph--circle {
  border-radius: 50%;
  aspect-ratio: 1 / 1;
}
.ph--rounded {
  border-radius: var(--radius-xl);
  aspect-ratio: 1 / 1;
}
.ph--rounded .ph__tag,
.ph--circle .ph__tag {
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  text-align: center;
  font-size: 9.5px;
}

/* ---------- BLOCK 1 — Hero ---------- */
.about-hero {
  position: relative;
  background: var(--dostics-navy);
  color: var(--dostics-white);
  padding: 152px 0 88px;
  overflow: hidden;
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/dostics-isotype.svg');
  background-size: 620px auto;
  background-position: right -160px top -140px;
  background-repeat: no-repeat;
  opacity: 0.05;
  pointer-events: none;
}
.about-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.about-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--dostics-mist);
  margin-bottom: 24px;
}
.about-hero__eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--dostics-blue);
}
.about-hero__title {
  font-size: clamp(36px, 4.2vw, 60px);
  font-weight: var(--fw-bold);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--dostics-white);
  margin: 0 0 24px;
  text-wrap: balance;
}
.about-hero__title em {
  font-style: normal;
  color: var(--dostics-mist);
}
.about-hero__sub {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin: 0;
}
.about-hero__visual {
  position: relative;
}
.about-hero__visual .ph {
  aspect-ratio: 5 / 4;
  box-shadow: var(--shadow-xl);
}
.about-hero__visual .ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-hero__badge {
  position: absolute;
  right: -12px;
  bottom: -18px;
  background: var(--dostics-white);
  color: var(--dostics-navy);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.about-hero__badge .num {
  font-family: var(--font-condensed);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.about-hero__badge .num .plus { color: var(--dostics-blue); }
.about-hero__badge .lbl {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--fg-muted);
  max-width: 12ch;
  line-height: 1.2;
}

/* ---------- Common section head ---------- */
.about-head { max-width: 720px; margin-bottom: 56px; }
.about-head h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: var(--fw-bold);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
  color: var(--fg-strong);
  text-wrap: balance;
}
.about-head p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0;
  max-width: 560px;
}

/* ---------- BLOCK 2 — Purpose ---------- */
.purpose {
  background: var(--bg);
  padding: 128px 0;
}
.purpose__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.purpose__copy { max-width: 540px; }
.purpose__copy h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: var(--fw-bold);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 12px 0 28px;
  text-wrap: balance;
}
.purpose__copy p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-muted);
  margin: 0 0 18px;
}
.purpose__copy p:last-child { margin-bottom: 0; }
.purpose__visual .ph {
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
}
.purpose__visual .ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ---------- BLOCK 3 — Team ---------- */
.team {
  background: var(--bg);
  padding: 112px 0 128px;
  border-top: 1px solid var(--divider);
}
.team__hero {
  margin: 0 0 56px;
}
.team__hero .ph {
  aspect-ratio: 21 / 9;
  box-shadow: var(--shadow-lg);
}
.team__hero .ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.team__hero .ph__tag {
  left: 24px;
  bottom: 24px;
  font-size: 11px;
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vcard {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px;
  background: var(--dostics-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}
.vcard:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--dostics-blue);
}
.vcard__num {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--dostics-blue);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--divider);
}
.vcard__title {
  font-size: 22px;
  font-weight: var(--fw-bold);
  letter-spacing: -0.01em;
  color: var(--fg-strong);
  margin: 0;
}
.vcard__line {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0;
}

/* ---------- BLOCK 4 — Principles ---------- */
.principles {
  background: var(--dostics-mist);
  padding: 128px 0;
}
.principles .about-head h2,
.principles .about-head p { color: var(--fg-strong); }
.principles .about-head p { color: var(--fg-muted); }
.principles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.principle {
  background: var(--dostics-white);
  border: 1px solid rgba(31,44,91,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}
.principle:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--dostics-blue);
}
.principle__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.principle__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--brand-soft);
  color: var(--dostics-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.principle__num {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--dostics-blue);
}
.principle__name {
  font-size: 20px;
  font-weight: var(--fw-bold);
  letter-spacing: -0.01em;
  color: var(--fg-strong);
  margin: 0;
}
.principle__body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0;
}

/* ---------- BLOCK 5 — Trajectory ---------- */
.trajectory {
  background: var(--bg);
  padding: 128px 0;
}
.trajectory__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 32px;
  padding: 56px 0;
  border-top: 1px solid var(--navy-100);
  border-bottom: 1px solid var(--navy-100);
}
.tmetric {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 32px;
}
.tmetric + .tmetric { border-left: 1px solid var(--navy-100); padding-left: 32px; }
.tmetric__value {
  font-family: var(--font-condensed);
  font-size: 88px;
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: var(--dostics-navy);
}
.tmetric__value .plus { color: var(--dostics-blue); }
.tmetric__value .unit {
  font-size: 28px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0;
  margin-left: 8px;
}
.tmetric__label {
  font-size: 16px;
  line-height: 1.5;
  color: var(--fg-muted);
  margin: 0;
  max-width: 24ch;
}
.tmetric__eyebrow {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0 0 4px;
}
.tmetric__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
}
.tmetric__list li {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: var(--fw-semibold);
  letter-spacing: -0.01em;
  color: var(--fg-strong);
}
.tmetric__list li + li::before {
  content: "·";
  color: var(--dostics-blue);
  margin: 0 14px;
  font-weight: 700;
}
.trajectory__note {
  margin-top: 32px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 640px;
}

/* ---------- BLOCK 6 — Reach & Distinction ---------- */
.reach {
  background: var(--bg);
  padding: 128px 0;
  border-top: 1px solid var(--divider);
}
.reach__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}
.reach__col { max-width: 520px; }
.reach__title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: var(--fw-bold);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg-strong);
  margin: 12px 0 24px;
  text-wrap: balance;
}
.reach__body {
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-muted);
  margin: 0 0 36px;
}
.reach__scope {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--navy-100);
  border-bottom: 1px solid var(--navy-100);
}
.reach__scope-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 0;
}
.reach__scope-item + .reach__scope-item {
  border-left: 1px solid var(--navy-100);
  padding-left: 28px;
}
.reach__scope-num {
  font-family: var(--font-condensed);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--dostics-navy);
}
.reach__scope-lbl {
  font-size: 14.5px;
  line-height: 1.4;
  color: var(--fg-muted);
}

/* ---------- Distinctive ---------- */
.distinctive {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  padding: 40px;
  background: var(--dostics-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.distinctive::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--dostics-blue);
}
.distinctive__seal {
  width: 120px;
  height: 120px;
  color: var(--dostics-navy);
  flex-shrink: 0;
}
.distinctive__seal svg { display: block; }
.distinctive__seal img { width: 100%; height: 100%; object-fit: contain; display: block; }
.distinctive__eyebrow { margin-bottom: 8px; }
.distinctive__name {
  font-size: 22px;
  font-weight: var(--fw-bold);
  letter-spacing: -0.01em;
  color: var(--fg-strong);
  margin: 0 0 12px;
}
.distinctive__copy {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0;
}

/* ---------- BLOCK 7 — Final CTA ---------- */
.cta-final {
  position: relative;
  background: var(--dostics-navy);
  color: var(--dostics-white);
  padding: 144px 0;
  text-align: center;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/dostics-isotype.svg');
  background-size: 720px auto;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.05;
  pointer-events: none;
}
.cta-final__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}
.cta-final h2 {
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: var(--fw-bold);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--dostics-white);
  margin: 0 0 20px;
  text-wrap: balance;
}
.cta-final p {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0 0 40px;
}
.cta-final__ctas {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .about-hero__grid,
  .purpose__grid { grid-template-columns: 1fr; gap: 48px; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .principles__grid { grid-template-columns: repeat(2, 1fr); }
  .trajectory__metrics { grid-template-columns: 1fr; gap: 0; padding: 0; border: 0; }
  .tmetric { padding: 28px 0; border-top: 1px solid var(--navy-100); }
  .tmetric + .tmetric { border-left: 0; padding-left: 0; }
  .tmetric:last-child { border-bottom: 1px solid var(--navy-100); }
  .reach__grid { grid-template-columns: 1fr; gap: 56px; }
  .reach__col { max-width: none; }
}
@media (max-width: 720px) {
  .about-hero { padding: 116px 0 64px; }
  .purpose, .team, .principles, .trajectory, .reach, .cta-final { padding: 80px 0; }
  .team__grid { grid-template-columns: 1fr; }
  .team__hero .ph { aspect-ratio: 4 / 3; }
  .principles__grid { grid-template-columns: 1fr; }
  .tmetric__value { font-size: 72px; }
  .distinctive {
    grid-template-columns: 1fr;
    padding: 28px;
    text-align: center;
  }
  .distinctive__seal { margin: 0 auto; }
}


/* ============================================================
   NAV DROPDOWN (Soluciones)
   ============================================================ */
.nav__menu .has-dropdown { position: relative; }
.nav__menu .has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav__menu .has-dropdown > a .caret {
  transition: transform var(--dur-fast) var(--ease-out);
}
.nav__menu .has-dropdown:hover > a .caret,
.nav__menu .has-dropdown:focus-within > a .caret {
  transform: rotate(180deg);
}
.nav__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  min-width: 320px;
  background: var(--dostics-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity .18s var(--ease-out),
              transform .18s var(--ease-out),
              visibility 0s .18s;
  z-index: 60;
}
.nav__dropdown::before {
  /* invisible bridge so cursor can travel from trigger to menu */
  content: "";
  position: absolute;
  inset: -10px 0 100% 0;
}
.nav__menu .has-dropdown:hover .nav__dropdown,
.nav__menu .has-dropdown:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition: opacity .18s var(--ease-out),
              transform .18s var(--ease-out),
              visibility 0s;
}
.nav__dropdown a {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start !important;
  gap: 2px;
  padding: 12px 14px !important;
  border-radius: var(--radius-md) !important;
  text-decoration: none;
  color: var(--fg-strong) !important;
  background: transparent !important;
}
.nav__dropdown a:hover {
  background: var(--brand-soft) !important;
  color: var(--dostics-navy) !important;
}
.nav__dropdown a.is-active {
  background: var(--brand-soft) !important;
}
.nav__dropdown a.is-active::after { display: none; }
.nav__dropdown a .title {
  font-size: 14.5px;
  font-weight: var(--fw-semibold);
  line-height: 1.2;
  color: var(--fg-strong);
}
.nav__dropdown a .desc {
  font-size: 12.5px;
  line-height: 1.35;
  color: var(--fg-muted);
}
.nav__dropdown a:hover .desc { color: var(--dostics-navy); }


/* ============================================================
   SOLUCIONES — Desarrollo a la Medida
   Shares hero / final-CTA chrome with Nosotros; adds new blocks.
   ============================================================ */

/* ---- Section 2 — ¿Te suena familiar? (quote-style cards) ---- */
.familiar {
  background: var(--bg-tint);
  padding: 112px 0 128px;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.familiar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.qcard {
  position: relative;
  background: var(--dostics-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}
.qcard:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--dostics-blue);
}
.qcard__mark {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 0.6;
  color: var(--dostics-blue);
  opacity: 0.55;
  user-select: none;
  display: block;
  margin-bottom: 12px;
}
.qcard__body {
  font-size: 18px;
  line-height: 1.5;
  color: var(--fg-strong);
  margin: 0;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}

/* ---- Section 3 — Cómo lo resolvemos (4 steps on navy) ---- */
.solve {
  padding: 128px 0 132px;
  background: var(--dostics-navy);
  color: var(--fg-on-dark);
  position: relative;
  overflow: hidden;
}
.solve::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/dostics-isotype.svg');
  background-size: 740px auto;
  background-position: right -200px top -150px;
  background-repeat: no-repeat;
  opacity: 0.05;
  pointer-events: none;
}
.solve .about-head h2,
.solve .about-head p { color: var(--dostics-white); }
.solve .about-head p { color: rgba(255,255,255,0.72); }
.solve .about-head .section-eyebrow { color: var(--dostics-mist); }
.solve .about-head .section-eyebrow::before { background: var(--dostics-blue); }

.solve__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}
.solve__step {
  display: flex;
  flex-direction: column;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.16);
}
.solve__num {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--dostics-blue);
  margin-bottom: 10px;
}
.solve__big {
  font-family: var(--font-condensed);
  font-size: 96px;
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  background: linear-gradient(180deg, var(--dostics-white) 0%, rgba(255,255,255,0.22) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.solve__title {
  font-size: 19px;
  font-weight: var(--fw-semibold);
  color: var(--dostics-white);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.solve__body {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

/* ---- Section 4 — En qué te podemos ayudar (6 capability cards) ---- */
.caps {
  background: var(--bg);
  padding: 128px 0;
}
.caps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ccard {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--dostics-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}
.ccard:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--dostics-blue);
}
.ccard__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--brand-soft);
  color: var(--dostics-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out);
}
.ccard:hover .ccard__icon {
  background: var(--dostics-navy);
  color: var(--dostics-white);
}
.ccard__title {
  font-size: 20px;
  font-weight: var(--fw-bold);
  letter-spacing: -0.01em;
  color: var(--fg-strong);
  margin: 0;
}
.ccard__body {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0;
}

/* ---- Section 5 — Herramientas y metodologías ---- */
.tools {
  background: var(--bg-tint);
  padding: 112px 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.tools__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  margin-bottom: 28px;
}
.tools__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--dostics-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: var(--fw-semibold);
  color: var(--fg-strong);
  letter-spacing: 0;
  transition: border-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
}
.tools__chip::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--dostics-blue);
  transform: rotate(45deg);
  display: inline-block;
}
.tools__chip:hover {
  border-color: var(--dostics-blue);
  color: var(--dostics-navy);
  transform: translateY(-1px);
}
.tools__note {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  color: var(--fg-muted);
  font-style: italic;
  margin: 0;
  max-width: 540px;
}

/* ---- Section 6 — Caso de éxito · Próximamente ---- */
.case-soon {
  background: var(--bg);
  padding: 128px 0;
}
.case-soon__card {
  position: relative;
  background: var(--dostics-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.case-soon__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/dostics-isotype.svg');
  background-size: 420px auto;
  background-position: right -120px center;
  background-repeat: no-repeat;
  opacity: 0.04;
  pointer-events: none;
}
.case-soon__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto 36px;
  padding: 8px 16px;
  background: var(--brand-soft);
  color: var(--dostics-navy);
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: 1px solid var(--navy-100);
}
.case-soon__badge .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--dostics-blue);
  animation: pulse-blue 2.4s var(--ease-out) infinite;
}
@keyframes pulse-blue {
  0%   { transform: scale(1);    opacity: 1; }
  70%  { transform: scale(2.2);  opacity: 0; }
  100% { transform: scale(2.2);  opacity: 0; }
}
.case-soon__head {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
.case-soon__title {
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: var(--fw-bold);
  letter-spacing: -0.02em;
  color: var(--fg-strong);
  margin: 0;
  text-wrap: balance;
  max-width: 28ch;
  margin-inline: auto;
}
.case-soon__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--navy-100);
}
.case-soon__col {
  padding: 32px 28px 8px;
}
.case-soon__col + .case-soon__col {
  border-left: 1px solid var(--navy-100);
}
.case-soon__col-eyebrow {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--dostics-blue);
  margin: 0 0 16px;
}
.case-soon__col-line {
  height: 14px;
  background: var(--dostics-mist);
  border-radius: 4px;
  margin-bottom: 10px;
  width: 100%;
}
.case-soon__col-line.short { width: 70%; }
.case-soon__col-line.shorter { width: 45%; }

/* ---- Familiar variants additions ---- */
.familiar--chat .familiar__chat {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 880px;
  margin: 8px auto 0;
}
.bubble {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  max-width: 78%;
}
.bubble--left  { align-self: flex-start; }
.bubble--right { align-self: flex-end; flex-direction: row-reverse; }
.bubble__avatar {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--dostics-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid var(--navy-100);
}
.bubble--right .bubble__avatar {
  background: var(--dostics-navy);
  color: var(--dostics-white);
  border-color: var(--dostics-navy);
}
.bubble__wrap {
  background: var(--dostics-white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.bubble--left  .bubble__wrap { border-bottom-left-radius: 4px; }
.bubble--right .bubble__wrap {
  border-bottom-right-radius: 4px;
  background: var(--dostics-navy);
  border-color: var(--dostics-navy);
}
.bubble__who {
  font-family: var(--font-condensed);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--dostics-blue);
  margin-bottom: 6px;
}
.bubble--right .bubble__who { color: var(--dostics-mist); }
.bubble__body {
  font-size: 16.5px;
  line-height: 1.5;
  color: var(--fg-strong);
  letter-spacing: -0.005em;
}
.bubble--right .bubble__body { color: var(--dostics-white); }

/* ---- Familiar — strike list ---- */
.familiar--strike .familiar__strike {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--navy-100);
}
.sline {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 28px 12px;
  border-bottom: 1px solid var(--navy-100);
  transition: background var(--dur-fast) var(--ease-out);
}
.sline:hover { background: rgba(31,44,91,0.025); }
.sline__num {
  font-family: var(--font-condensed);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--dostics-blue);
}
.sline__body {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.4;
  font-weight: var(--fw-medium);
  color: var(--fg-strong);
  text-decoration: line-through;
  text-decoration-color: rgba(217, 75, 75, 0.55);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  letter-spacing: -0.005em;
}
.sline__x {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(217, 75, 75, 0.1);
  color: #C84B4B;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---- Solve — timeline variant ---- */
.solve--timeline .solve__timeline {
  position: relative;
  z-index: 1;
  padding-top: 12px;
}
.solve--timeline .solve__rail {
  position: absolute;
  top: 36px;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.25) 8%,
    rgba(255,255,255,0.25) 92%,
    rgba(255,255,255,0) 100%
  );
}
.solve--timeline .solve__tl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.tl-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 12px;
}
.tl-step__dot {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--dostics-navy);
  border: 1px solid rgba(255,255,255,0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  z-index: 2;
}
.tl-step__dot::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
}
.tl-step__dot-n {
  font-family: var(--font-condensed);
  font-size: 18px;
  font-weight: 700;
  color: var(--dostics-white);
  letter-spacing: -0.02em;
}
.tl-step:nth-child(1) .tl-step__dot { background: var(--dostics-blue); border-color: var(--dostics-blue); }
.tl-step:nth-child(1) .tl-step__dot .tl-step__dot-n { color: var(--dostics-navy); }
.tl-step__title {
  font-size: 19px;
  font-weight: var(--fw-semibold);
  color: var(--dostics-white);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.tl-step__body {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

/* ---- Solve — stack variant ---- */
.solve--stack .solve__stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}
.slab {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  align-items: center;
  padding: 28px 32px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}
.slab:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.2);
  transform: translateX(4px);
}
.slab__num {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  border-right: 1px solid rgba(255,255,255,0.12);
  padding-right: 24px;
}
.slab__num-lbl {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--dostics-blue);
}
.slab__num-val {
  font-family: var(--font-condensed);
  font-size: 64px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--dostics-white);
}
.slab__copy { padding-right: 12px; }
.slab__title {
  font-size: 22px;
  font-weight: var(--fw-semibold);
  color: var(--dostics-white);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.slab__body {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  margin: 0;
}
.slab__bar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: rgba(255,255,255,0.06);
}
.slab__bar-fill {
  height: 100%;
  background: linear-gradient(to right, var(--dostics-blue), var(--dostics-white));
  transition: width var(--dur-slow) var(--ease-out);
}

/* ---- Section — Otras soluciones ---- */
.other-sols {
  background: var(--bg-tint);
  padding: 112px 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.other-sols__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}
.osc {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px;
  background: var(--dostics-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}
.osc:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--dostics-blue);
}
.osc__head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.osc__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--brand-soft);
  color: var(--dostics-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out);
}
.osc:hover .osc__icon {
  background: var(--dostics-navy);
  color: var(--dostics-white);
}
.osc__title {
  font-size: 20px;
  font-weight: var(--fw-bold);
  letter-spacing: -0.01em;
  color: var(--fg-strong);
  margin: 0;
}
.osc__body {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0;
}
.osc__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: var(--fw-semibold);
  color: var(--dostics-navy);
  margin-top: auto;
  padding-top: 4px;
}
.osc__link .arrow { transition: transform var(--dur-base) var(--ease-out); }
.osc:hover .osc__link .arrow { transform: translateX(4px); }

/* ---- Section 8 — Final CTA with rombo decoration ---- */
.cta-final--rombo::before {
  background-image: none;
  background:
    radial-gradient(closest-side at 50% 50%,
      rgba(152,178,220,0.10), transparent 70%);
  opacity: 1;
}
.cta-final--rombo .rombo {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  pointer-events: none;
  z-index: 0;
}
.cta-final--rombo .rombo span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
}
.cta-final--rombo .rombo .r1 { width: 460px; height: 460px; transform: translate(-230px, -230px); }
.cta-final--rombo .rombo .r2 { width: 640px; height: 640px; transform: translate(-320px, -320px); border-color: rgba(255,255,255,0.07); }
.cta-final--rombo .rombo .r3 { width: 820px; height: 820px; transform: translate(-410px, -410px); border-color: rgba(255,255,255,0.04); }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .familiar__grid { grid-template-columns: 1fr; }
  .solve__list { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .solve--timeline .solve__tl-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .solve--timeline .solve__rail { display: none; }
  .caps__grid { grid-template-columns: repeat(2, 1fr); }
  .case-soon__grid { grid-template-columns: 1fr; }
  .case-soon__col + .case-soon__col {
    border-left: 0;
    border-top: 1px solid var(--navy-100);
  }
  .other-sols__grid { grid-template-columns: 1fr; }
  .slab { grid-template-columns: 120px 1fr; gap: 24px; padding: 24px 24px 28px; }
  .slab__num-val { font-size: 52px; }
}
@media (max-width: 720px) {
  .nav__menu .has-dropdown,
  .nav__dropdown { display: none; }
  .familiar, .solve, .caps, .tools, .case-soon, .other-sols { padding: 80px 0; }
  .solve__list { grid-template-columns: 1fr; }
  .solve__big { font-size: 72px; }
  .solve--timeline .solve__tl-grid { grid-template-columns: 1fr; gap: 32px; }
  .caps__grid { grid-template-columns: 1fr; }
  .case-soon__card { padding: 36px 24px; }
  .case-soon__col { padding: 24px 4px 8px; }
  .bubble { max-width: 92%; }
  .sline { grid-template-columns: 56px 1fr 32px; gap: 16px; padding: 20px 4px; }
  .sline__num { font-size: 30px; }
  .slab { grid-template-columns: 1fr; padding: 24px; }
  .slab__num { flex-direction: row; align-items: baseline; gap: 12px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 0 0 12px; }
  .slab__num-val { font-size: 42px; }
}
