:root {
  --orange: #fd4f00;
  --orange-dark: #c33b00;
  --black: #0b0b0d;
  --ink: #17171a;
  --muted: #666a73;
  --soft: #f6f6f4;
  --line: #e7e4df;
  --white: #ffffff;
  --shadow: 0 22px 64px rgba(17, 17, 19, 0.1);
  --page-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--white);
  background: var(--black);
  transform: translateY(calc(-100% - 24px));
}

.skip-link:focus {
  transform: translateY(0);
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 74px;
  margin: 0;
  padding: 0 max(16px, calc((100vw - var(--page-width)) / 2));
  display: flex;
  align-items: center;
  gap: 28px;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: #ececec;
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 118px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-left: auto;
}

.main-nav > a,
.nav-dropdown-toggle {
  padding: 9px 13px;
  border: 0;
  border-radius: 999px;
  color: #4d5159;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.main-nav > a:hover,
.nav-dropdown-toggle:hover,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--black);
  background: #f1efec;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -18px;
  right: -18px;
  height: 28px;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-dropdown.is-open .nav-dropdown-toggle::after,
.nav-dropdown:hover .nav-dropdown-toggle::after {
  transform: translateY(1px) rotate(225deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  z-index: 30;
  width: 318px;
  padding: 10px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(231, 228, 223, 0.86);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 70px rgba(17, 17, 19, 0.12);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  padding: 12px 13px;
  border-radius: 14px;
  color: #343841;
  font-size: 13px;
  font-weight: 750;
  transition: background 180ms ease, color 180ms ease;
}

.nav-dropdown-menu a:hover {
  color: var(--orange-dark);
  background: #f7f5f2;
}

.header-action {
  flex: 0 0 auto;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(11, 11, 13, 0.18);
  transition: transform 180ms ease, background 180ms ease;
}

.header-action:hover {
  transform: translateY(-1px);
  background: #242428;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  z-index: 0;
  isolation: isolate;
  width: min(var(--page-width), calc(100% - 32px));
  min-height: clamp(570px, calc(100vh - 300px), 640px);
  margin: 0 auto;
  padding: 14px 0 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.92fr);
  align-items: center;
  gap: 36px;
  transform: translateY(-18px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background:
    radial-gradient(circle at 78% 18%, rgba(253, 79, 0, 0.1), transparent 34%),
    linear-gradient(180deg, #fff7f2 0%, #ffffff 70%);
}

.eyebrow {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(253, 79, 0, 0.12);
}

.hero h1,
.section-heading h2,
.advisor-cta h2,
.demo-heading h2 {
  margin: 0;
  color: var(--black);
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.04;
}

.hero-subtitle {
  max-width: 650px;
  margin: 12px 0 0;
  color: #4f535b;
  font-size: clamp(16px, 1.22vw, 18px);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 16px 38px rgba(253, 79, 0, 0.28);
}

.btn-primary:hover {
  background: #eb4900;
}

.btn:disabled,
.btn[disabled] {
  cursor: not-allowed;
  opacity: 0.46;
  transform: none;
  box-shadow: none;
}

.btn-secondary {
  background: var(--white);
  color: var(--black);
  border: 1px solid #dadada;
  box-shadow: 0 12px 30px rgba(17, 17, 19, 0.08);
}

.hero-metrics {
  max-width: 540px;
  margin-top: 17px;
  padding-top: 13px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid #e5e5e5;
}

.hero-metrics strong {
  display: block;
  color: var(--black);
  font-size: 19px;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.product-showcase {
  position: relative;
  padding-top: 28px;
}

.product-showcase::before {
  content: "";
  position: absolute;
  inset: 12% -4% 0 10%;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(253, 79, 0, 0.2), rgba(11, 11, 13, 0.08));
  filter: blur(12px);
}

.ecosystem-visual {
  position: relative;
  min-height: 492px;
  max-width: 650px;
  margin-left: auto;
}

.ecosystem-visual.has-real-mockup {
  min-height: 492px;
}

.hero-product-image {
  position: absolute;
  left: 50%;
  top: 46%;
  z-index: 2;
  width: min(146%, 948px);
  height: auto;
  display: block;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 34px 64px rgba(17, 17, 19, 0.18));
}

.ecosystem-visual::before {
  content: "";
  position: absolute;
  inset: 18% -2% 4% 9%;
  z-index: 0;
  border-radius: 48px;
  background:
    radial-gradient(circle at 24% 30%, rgba(253, 79, 0, 0.18), transparent 30%),
    radial-gradient(circle at 78% 62%, rgba(17, 17, 19, 0.1), transparent 34%),
    linear-gradient(135deg, rgba(253, 79, 0, 0.12), rgba(255, 255, 255, 0.08));
  filter: blur(18px);
}


.clients-strip,
.solutions,
.outcomes-section,
.faq-section,
.advisor-cta,
.demo-section {
  width: min(var(--page-width), calc(100% - 32px));
  margin: 0 auto;
}

.clients-strip {
  overflow: hidden;
  position: relative;
  z-index: 0;
  isolation: isolate;
  margin-top: 22px;
  padding: 20px 0 22px;
  border: 1px solid #e8e8e8;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 64px rgba(17, 17, 19, 0.08);
}

.clients-strip::before {
  content: "";
  position: absolute;
  inset: -48px calc(50% - 50vw) -64px;
  z-index: -1;
  background: #fafafa;
}

.clients-strip p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-transform: none;
}

.clients-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
}

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

.clients-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), transparent);
}

.clients-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.95), transparent);
}

.client-track {
  width: max-content;
  display: flex;
  gap: 16px;
  padding: 0 16px;
  animation: clients-scroll 36s linear infinite;
}

.clients-marquee:hover .client-track {
  animation-play-state: paused;
}

.client-track img {
  width: 174px;
  height: 86px;
  flex: 0 0 auto;
  object-fit: contain;
  padding: 14px;
  border: 1px solid #eeece8;
  border-radius: 20px;
  background: var(--white);
  filter: grayscale(100%);
  opacity: 0.55;
  transition: filter 260ms ease, opacity 260ms ease, transform 260ms ease;
}

.client-track img:hover {
  filter: grayscale(100%);
  opacity: 0.85;
  transform: translateY(-2px);
}

@keyframes clients-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.solutions {
  padding: 118px 0 0;
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.advisor-cta h2,
.demo-heading h2 {
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1.04;
}

.section-heading span,
.advisor-cta span,
.demo-heading span {
  display: block;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.solution-card {
  min-height: 278px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #e5e5e5;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 72px rgba(17, 17, 19, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  border-color: rgba(253, 79, 0, 0.3);
  box-shadow: 0 28px 90px rgba(17, 17, 19, 0.1);
}

.card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 34px rgba(253, 79, 0, 0.2);
}

.card-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.solution-card h3 {
  margin: 20px 0 12px;
  color: var(--black);
  font-size: 24px;
  line-height: 1.08;
}

.solution-card h3 span {
  color: var(--orange);
}

.solution-card a {
  width: fit-content;
  margin-top: 24px;
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
}

.solution-card a::after {
  content: " ->";
  color: var(--orange);
}

.outcomes-section {
  position: relative;
  z-index: 0;
  isolation: isolate;
  margin-top: 32px;
  padding: 96px 0 80px;
  border-radius: 0;
}

.outcomes-section::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background: #fff8f3;
}

.outcomes-shell {
  display: grid;
  gap: 30px;
  contain: layout paint;
}

.outcomes-heading {
  max-width: 720px;
  margin: 0 auto 10px;
  text-align: center;
}

.outcomes-heading span {
  display: block;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.outcomes-heading h2 {
  margin: 12px 0 0;
  color: var(--black);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
}

.outcome-tabs {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.outcome-tab {
  min-height: 132px;
  padding: 16px 14px 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 52px rgba(17, 17, 19, 0.075);
  color: var(--black);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
  will-change: transform;
}

.outcome-tab::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 11px;
  height: 2px;
  border-radius: 999px;
  background: rgba(253, 79, 0, 0.14);
  transform: scaleX(0.28);
  transform-origin: left center;
  transition: transform 180ms ease, background 180ms ease;
}

.outcome-tab:hover,
.outcome-tab:focus-visible,
.outcome-tab.is-active {
  border-color: rgba(253, 79, 0, 0.32);
  background: #ffffff;
  box-shadow: 0 24px 72px rgba(17, 17, 19, 0.09);
  transform: translate3d(0, -4px, 0) scale(1.01);
  outline: none;
}

.outcome-tab:hover::after,
.outcome-tab:focus-visible::after,
.outcome-tab.is-active::after {
  background: var(--orange);
  transform: scaleX(1);
}

.outcome-tab-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(253, 79, 0, 0.09);
  color: var(--orange);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.outcome-tab:hover .outcome-tab-icon,
.outcome-tab:focus-visible .outcome-tab-icon,
.outcome-tab.is-active .outcome-tab-icon {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-1px);
}

.outcome-tab svg,
.outcome-detail-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.outcome-tab strong {
  margin-top: 18px;
  padding-bottom: 14px;
  display: block;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.18;
}

.outcome-detail {
  min-height: 260px;
  padding: 36px;
  display: grid;
  grid-template-columns: auto minmax(260px, 0.95fr) minmax(320px, 1.2fr);
  gap: 30px;
  align-items: center;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 26px 84px rgba(17, 17, 19, 0.085);
  opacity: 1;
  transition: opacity 170ms ease, transform 170ms ease;
  will-change: opacity, transform;
}

.outcome-detail.is-changing {
  opacity: 0;
  transform: translate3d(0, 8px, 0);
}

.outcome-detail-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(253, 79, 0, 0.22);
}

.outcome-detail-icon svg {
  width: 34px;
  height: 34px;
}

.outcome-detail-copy span {
  display: block;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.outcome-detail-copy h3 {
  margin: 10px 0 12px;
  color: var(--black);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.03;
}

.outcome-detail-copy p {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.outcome-capabilities {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  list-style: none;
}

.outcome-capabilities li {
  min-height: 48px;
  padding: 13px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 16px;
  background: #fafafa;
  color: #343841;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.25;
}

.outcome-capabilities li::before {
  content: "✓";
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(253, 79, 0, 0.1);
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
}

.faq-section {
  padding: 78px 0 72px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 58px rgba(17, 17, 19, 0.07);
}

.faq-list summary {
  min-height: 64px;
  padding: 18px 52px 18px 20px;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--black);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--orange);
  background: rgba(253, 79, 0, 0.1);
  font-size: 18px;
  font-weight: 800;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: -4px 0 0;
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.advisor-cta {
  position: relative;
  margin-top: 82px;
  margin-bottom: 0;
  padding: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  border-radius: 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 20%, rgba(253, 79, 0, 0.45), transparent 30%),
    linear-gradient(135deg, #111114, #222228);
  box-shadow: var(--shadow);
}

.advisor-cta .btn {
  flex: 0 0 auto;
  align-self: center;
  margin-right: clamp(44px, 7vw, 110px);
}

.demo-section {
  position: relative;
  z-index: 0;
  isolation: isolate;
  padding: 88px 0 0;
}

.demo-section::before {
  content: "";
  position: absolute;
  inset: 34px calc(50% - 50vw) -18px;
  z-index: -1;
  background: #fafafa;
}

.demo-heading {
  max-width: 780px;
  margin: 0 auto 28px;
  text-align: center;
}

.demo-heading h2 {
  color: var(--orange);
}

.demo-heading span {
  margin-top: 14px;
}

.demo-form {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 6px;
}

.form-field span,
.phone-field legend {
  color: #343841;
  font-size: 13px;
  font-weight: 850;
}

.required {
  color: #d92d20;
  font-style: normal;
}

.demo-form input,
.demo-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(102, 106, 115, 0.28);
  border-radius: 0;
  padding: 11px 0;
  color: var(--black);
  background: transparent;
  font: inherit;
  font-size: 15px;
  font-weight: 650;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.iti {
  width: 100%;
}

.iti__country-container {
  padding-bottom: 1px;
}

.iti__tel-input {
  width: 100% !important;
  padding-left: 118px !important;
}

.iti--separate-dial-code .iti__selected-country {
  min-width: 104px;
  justify-content: flex-start;
}

.iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 7px;
  color: var(--black);
  font-weight: 750;
}

.iti__dropdown-content {
  border: 1px solid rgba(231, 228, 223, 0.9);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(17, 17, 19, 0.12);
}

.iti__search-input {
  border: 0 !important;
  border-bottom: 1px solid rgba(102, 106, 115, 0.18) !important;
  border-radius: 0 !important;
  font: inherit;
}

.phone-field.is-invalid .iti__tel-input {
  border-color: #d92d20;
  box-shadow: 0 1px 0 #d92d20;
}

.multi-select {
  position: relative;
}

.multi-select-toggle {
  width: 100%;
  min-height: 46px;
  padding: 11px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  border-bottom: 1px solid rgba(102, 106, 115, 0.28);
  color: var(--black);
  background: transparent;
  font: inherit;
  font-size: 15px;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
}

.multi-select-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.multi-select.is-open .multi-select-toggle {
  border-color: var(--orange);
  box-shadow: 0 1px 0 var(--orange);
}

.multi-select-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  z-index: 15;
  max-height: 258px;
  overflow: auto;
  padding: 8px;
  display: none;
  border: 1px solid rgba(231, 228, 223, 0.9);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(17, 17, 19, 0.1);
}

.multi-select.is-open .multi-select-menu {
  display: grid;
  gap: 4px;
}

.multi-select-menu button {
  width: 100%;
  padding: 11px 12px;
  border: 0;
  border-radius: 12px;
  color: #343841;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.multi-select-menu button:hover,
.multi-select-menu button.is-selected {
  color: var(--orange-dark);
  background: rgba(253, 79, 0, 0.08);
}

.privacy-consent {
  margin-top: 0;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
  color: #343841;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.privacy-consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--orange);
}

.privacy-note {
  margin: -8px 0 0 30px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.demo-form textarea {
  min-height: 82px;
  resize: vertical;
}

.demo-form input:focus,
.demo-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 1px 0 var(--orange);
}

.demo-form input[readonly] {
  color: var(--muted);
}

.demo-submit {
  width: fit-content;
  margin: 0 auto;
  border: 0;
  cursor: pointer;
}

.field-error {
  color: #b42318;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.field-error:empty {
  display: none;
}

.form-field.is-invalid input,
.form-field.is-invalid textarea,
.form-field.is-invalid .multi-select-toggle,
.privacy-consent.is-invalid input {
  border-color: #d92d20;
  box-shadow: 0 1px 0 #d92d20;
}

.consent-error {
  margin-top: -12px;
  padding-left: 30px;
}

.form-status {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(17, 17, 19, 0.12);
  border-radius: 12px;
  color: #343841;
  background: #f6f6f4;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.5;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.form-status[hidden] {
  display: none;
}

.form-status:not([hidden]) {
  display: flex;
}

.form-status button {
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  color: currentColor;
  background: transparent;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.form-status button[hidden] {
  display: none;
}

.form-status.is-success {
  border-color: rgba(6, 118, 71, 0.28);
  color: #067647;
  background: #ecfdf3;
}

.form-status.is-error {
  border-color: rgba(180, 35, 24, 0.24);
  color: #b42318;
  background: #fef3f2;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
}

.demo-section.is-highlighted .demo-heading h2 {
  color: var(--orange-dark);
  transition: color 220ms ease;
}

[data-shared-footer] {
  display: block;
  margin-top: 44px;
}

.solutions-page {
  position: relative;
  overflow: hidden;
  padding-top: 58px;
}

.solutions-page::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw) auto;
  z-index: -1;
  height: 520px;
  background:
    radial-gradient(circle at 18% 28%, rgba(253, 79, 0, 0.1), transparent 30%),
    linear-gradient(180deg, #fff7f2 0%, #ffffff 78%);
}

.solutions-hero,
.solutions-list,
.before-after-section,
.integrations-section {
  width: min(var(--page-width), calc(100% - 32px));
  margin: 0 auto;
}

.solutions-hero {
  max-width: 1120px;
  padding: 0 0 38px;
  text-align: center;
}

.solutions-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(253, 79, 0, 0.16);
  border-radius: 999px;
  color: var(--orange-dark);
  background: rgba(253, 79, 0, 0.07);
  font-size: 12px;
  font-weight: 900;
}

.solutions-hero h1 {
  max-width: 960px;
  margin: 0;
  margin-inline: auto;
  color: var(--black);
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: 0;
}

.solutions-jump-nav {
  max-width: 1120px;
  margin: 24px auto 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 8px;
}

.solution-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(17, 17, 19, 0.08);
  border-radius: 999px;
  color: #2f333a;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(17, 17, 19, 0.055);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.solution-chip:hover,
.solution-chip:focus-visible {
  color: var(--black);
  border-color: rgba(253, 79, 0, 0.38);
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(253, 79, 0, 0.12);
  transform: translateY(-1px);
  outline: none;
}

.solution-chip.is-active {
  color: #ffffff;
  border-color: rgba(253, 79, 0, 0.18);
  background: var(--orange);
  box-shadow: 0 16px 36px rgba(253, 79, 0, 0.28);
}

.solutions-list {
  display: grid;
  gap: 14px;
}

.solutions-list-secondary {
  margin-top: 14px;
}

.solution-panel {
  overflow: hidden;
  border: 1px solid rgba(231, 228, 223, 0.92);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 64px rgba(17, 17, 19, 0.07);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.solution-panel:hover,
.solution-panel.is-open {
  border-color: rgba(253, 79, 0, 0.22);
  box-shadow: 0 28px 86px rgba(17, 17, 19, 0.1);
}

.solution-summary {
  width: 100%;
  min-height: 214px;
  padding: 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(390px, 0.98fr);
  align-items: stretch;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.solution-icon {
  width: 42px;
  height: 42px;
  margin: 26px 0 0 26px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 32px rgba(253, 79, 0, 0.2);
}

.solution-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-copy {
  padding: 26px 24px 26px 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.solution-category {
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-copy strong {
  margin-top: 7px;
  color: var(--black);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.03;
}

.solution-copy span:not(.solution-category) {
  max-width: 590px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.solution-copy em {
  margin-top: 18px;
  color: var(--black);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.solution-visual {
  position: relative;
  overflow: hidden;
  min-height: 232px;
  margin: 14px 14px 14px 0;
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 93, 24, 0.16), rgba(255, 93, 24, 0.05) 44%, rgba(255, 255, 255, 0.96) 68%),
    linear-gradient(135deg, #fffaf7 0%, #ffffff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 18px 44px rgba(253, 79, 0, 0.08);
  isolation: isolate;
}

.solution-visual::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 60% 40%, rgba(253, 79, 0, 0.13), transparent 42%),
    rgba(255, 255, 255, 0.34);
  z-index: 0;
}

.solution-image {
  --image-scale: 1.18;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: translate(-50%, -50%) scale(var(--image-scale));
  filter: drop-shadow(0 22px 28px rgba(17, 17, 19, 0.13));
  transition: transform 260ms ease, filter 260ms ease;
  pointer-events: none;
  user-select: none;
}

.solution-panel:hover .solution-image,
.solution-panel.is-open .solution-image {
  transform: translate(-50%, -50%) scale(calc(var(--image-scale) + 0.04));
  filter: drop-shadow(0 28px 36px rgba(17, 17, 19, 0.16));
}

.visual-bots .solution-image {
  --image-scale: 1.14;
  object-position: 50% 48%;
}

.visual-chat .solution-image {
  --image-scale: 1.16;
  object-position: 50% 42%;
}

.visual-software .solution-image {
  --image-scale: 1.08;
  object-position: 50% 56%;
}

.visual-apps .solution-image {
  --image-scale: 1.16;
  object-position: 50% 40%;
}

.visual-automation .solution-image {
  --image-scale: 1.08;
  object-position: 52% 50%;
}

.visual-security .solution-image {
  --image-scale: 1.12;
  object-position: 50% 50%;
}

.integration-chips i {
  display: grid;
  place-items: center;
}

.solution-detail {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 360ms ease, opacity 260ms ease, transform 260ms ease;
}

.solution-panel.is-open .solution-detail {
  max-height: 820px;
  opacity: 1;
  transform: translateY(0);
}

.solution-detail-grid,
.placeholder-detail {
  margin: 0 26px 26px;
  padding: 30px;
  border: 1px solid rgba(231, 228, 223, 0.9);
  border-radius: 24px;
  background: #ffffff;
}

.solution-detail-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) 1.12fr;
  gap: 34px;
}

.detail-label {
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-detail h2,
.placeholder-detail h2 {
  margin: 12px 0 0;
  color: var(--black);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
}

.solution-detail p,
.placeholder-detail p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.detail-lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.detail-lists div {
  padding: 20px;
  border-radius: 20px;
  background: #fafafa;
}

.detail-lists h3 {
  margin: 0 0 14px;
  color: var(--black);
  font-size: 16px;
}

.detail-lists ul,
.comparison-grid ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

.detail-lists li,
.comparison-grid li {
  position: relative;
  padding-left: 20px;
  color: #4f535b;
  font-size: 13px;
  line-height: 1.35;
}

.detail-lists li::before,
.comparison-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 950;
}

.integrations-section {
  margin-top: 56px;
  padding-bottom: 22px;
}

.before-after-section {
  margin-top: 58px;
}

.before-after-section {
  padding: 28px;
  border: 1px solid rgba(231, 228, 223, 0.78);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(250, 250, 250, 0.96)),
    #fafafa;
}

.before-after-section h2,
.integrations-section h2 {
  margin: 0 0 24px;
  color: var(--black);
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.05;
  text-align: center;
}

.before-after-section h2 {
  margin-bottom: 10px;
  font-size: clamp(27px, 2.8vw, 38px);
}

.before-after-section > p {
  max-width: 620px;
  margin: 0 auto 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}

.comparison-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.comparison-grid article {
  min-height: 236px;
  padding: 20px;
  border: 1px solid rgba(231, 228, 223, 0.9);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(17, 17, 19, 0.045);
}

.compare-bridge {
  position: relative;
  width: 132px;
  display: grid;
  place-items: center;
}

.compare-bridge::before,
.compare-bridge::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: rgba(253, 79, 0, 0.34);
}

.compare-bridge::before {
  right: calc(50% + 42px);
}

.compare-bridge::after {
  left: calc(50% + 42px);
}

.compare-bridge span {
  position: relative;
  z-index: 1;
  padding: 10px 13px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--orange);
  box-shadow: 0 14px 30px rgba(253, 79, 0, 0.2);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

.compare-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-weight: 900;
}

.compare-icon.before {
  background: #ef6a5f;
  box-shadow: 0 10px 22px rgba(239, 106, 95, 0.16);
}

.compare-icon.after {
  background: #26b889;
  box-shadow: 0 10px 22px rgba(38, 184, 137, 0.16);
}

.comparison-grid h3 {
  margin: 12px 0 12px;
  color: var(--black);
  font-size: 20px;
}

.integration-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.integration-chips span {
  min-height: 44px;
  padding: 8px 14px 8px 9px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(231, 228, 223, 0.95);
  border-radius: 999px;
  color: #343841;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(17, 17, 19, 0.04);
  font-size: 13px;
  font-weight: 800;
}

.integration-chips i {
  min-width: 28px;
  height: 28px;
  padding: 0 6px;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange);
  font-size: 10px;
  font-style: normal;
  font-weight: 950;
}

.integration-chips img {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  object-fit: contain;
}

.site-footer {
  width: 100vw;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  color: #f7f7f8;
  background: #0b0d10;
  box-shadow: none;
}

.footer-grid {
  width: min(var(--page-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0 88px;
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr 1fr;
  gap: 56px;
}

.footer-column {
  min-width: 0;
  padding-top: 2px;
}

.footer-logo {
  width: 142px;
  filter: brightness(0) invert(1) saturate(0);
  opacity: 0.94;
}

.footer-legal {
  max-width: 260px;
  margin: 20px 0 0;
  color: #aeb0b8;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.55;
}

.footer-brand-column .footer-legal + .footer-legal {
  margin-top: 4px;
}

.footer-heading {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 850;
  letter-spacing: 0;
}

.footer-icon,
.mini-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--orange);
  background: rgba(255, 255, 255, 0.06);
}

.mini-icon {
  color: #f4f4f5;
}

.site-footer svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-column p,
.footer-column a {
  margin: 0;
  color: #c5c7cf;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.58;
}

.footer-column a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-line {
  margin-top: 18px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-line strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-size: 12.5px;
  font-weight: 800;
}

.advisor-cta h2 {
  color: var(--white);
}

.advisor-cta span {
  margin: 18px 0 0;
  max-width: 640px;
  color: #c9c9cf;
  text-align: left;
}

.advisor-cta .eyebrow {
  color: #ffb18b;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@media (max-width: 900px) {
  .solutions-hero {
    padding-top: 34px;
  }

  .solution-summary {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .solution-visual {
    grid-column: 1 / -1;
    min-height: 220px;
    margin: 0 14px 14px;
  }

  .solution-detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-lists {
    grid-template-columns: 1fr;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .compare-bridge {
    width: 100%;
  }

  .compare-bridge::before,
  .compare-bridge::after {
    display: none;
  }

  .compare-bridge span {
    width: min(100%, 260px);
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 56px;
    transform: none;
  }

  .hero-copy {
    max-width: 820px;
  }

  .product-showcase {
    max-width: 760px;
  }

  .ecosystem-visual {
    min-height: 500px;
    margin: 0 auto;
  }

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

  .solution-card {
    min-height: 230px;
  }

  .outcome-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .outcome-detail {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .outcome-capabilities {
    grid-column: 1 / -1;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    padding: 50px 0 54px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }
}

@media (max-width: 760px) {
  .solutions-page {
    padding-top: 68px;
  }

  .solutions-hero,
  .solutions-list,
  .before-after-section,
  .integrations-section {
    width: min(100% - 24px, var(--page-width));
  }

  .solutions-hero {
    padding: 26px 0 30px;
  }

  .solutions-hero h1 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .solutions-jump-nav {
    width: calc(100% + 24px);
    margin: 22px -12px 0;
    padding: 0 12px 6px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .solutions-jump-nav::-webkit-scrollbar {
    display: none;
  }

  .solution-chip {
    min-height: 36px;
    padding: 0 14px;
    font-size: 12px;
  }

  .solution-summary {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .solution-icon {
    margin: 22px 0 0 22px;
  }

  .solution-copy {
    padding: 18px 22px 22px;
  }

  .solution-copy strong {
    font-size: 28px;
  }

  .solution-visual {
    min-height: 204px;
    margin: 0 12px 12px;
  }

  .solution-image,
  .visual-bots .solution-image,
  .visual-chat .solution-image,
  .visual-software .solution-image,
  .visual-apps .solution-image,
  .visual-automation .solution-image,
  .visual-security .solution-image {
    width: 100%;
    height: 100%;
    --image-scale: 1.16;
  }

  .solution-detail-grid,
  .placeholder-detail {
    margin: 0 14px 14px;
    padding: 22px;
  }

  .before-after-section {
    margin-top: 48px;
    padding: 22px;
  }

  .integrations-section {
    margin-top: 46px;
  }

  .integration-chips {
    justify-content: flex-start;
  }

  .site-header {
    height: 68px;
    margin-top: 0;
    border-radius: 0;
  }

  .site-header[data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .brand img {
    width: 108px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    margin-left: auto;
    display: grid;
    place-items: center;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
  }

  .nav-toggle span {
    width: 16px;
    height: 2px;
    display: block;
    background: var(--black);
  }

  .main-nav {
    position: fixed;
    top: 84px;
    left: 16px;
    right: 16px;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  body.nav-open .main-nav {
    display: flex;
  }

  .main-nav > a,
  .nav-dropdown-toggle {
    padding: 14px;
    justify-content: space-between;
    text-align: left;
    border-radius: 16px;
    font-size: 15px;
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 6px;
    padding: 8px;
    border-radius: 18px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    background: #f7f5f2;
  }

  .nav-dropdown:not(.is-open) .nav-dropdown-menu {
    display: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    transform: none;
  }

  .nav-dropdown-menu a {
    padding: 11px 12px;
    font-size: 13px;
  }

  .header-action {
    display: none;
  }

  .hero {
    width: min(100% - 24px, var(--page-width));
    min-height: auto;
    padding: 46px 0 34px;
    gap: 28px;
    transform: none;
  }

  .hero h1 {
    font-size: clamp(37px, 11vw, 54px);
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

  .product-showcase {
    padding-top: 0;
  }

  .ecosystem-visual {
    min-height: 620px;
    max-width: 420px;
  }

  .ecosystem-visual.has-real-mockup {
    min-height: 360px;
  }

  .hero-product-image {
    width: min(132%, 560px);
  }

  .dashboard-canvas {
    grid-template-columns: 1fr;
  }

  .dashboard-nav {
    display: none;
  }

  .phone-chat {
    top: 300px;
    left: -4px;
    width: 152px;
  }

  .phone-route {
    top: 316px;
    right: -4px;
    width: 128px;
  }

  .device-frame {
    min-height: 286px;
  }

  .phone-route .device-frame {
    min-height: 226px;
  }

  .workflow-node {
    font-size: 10px;
  }

  .clients-strip,
  .solutions,
  .outcomes-section,
  .faq-section,
  .advisor-cta,
  .demo-section {
    width: min(100% - 24px, var(--page-width));
  }

  .clients-strip {
    padding: 20px 0 22px;
  }

  .client-track {
    gap: 12px;
    animation-duration: 26s;
  }

  .client-track img {
    width: 150px;
    height: 86px;
  }

  .solutions {
    padding: 72px 0 48px;
  }

  .outcomes-section {
    padding: 76px 0 78px;
  }

  .outcomes-heading {
    margin-bottom: 2px;
  }

  .outcome-tabs {
    grid-template-columns: 1fr;
  }

  .outcome-tab {
    min-height: auto;
    padding: 14px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }

  .outcome-tab strong {
    margin-top: 0;
    padding-bottom: 0;
  }

  .outcome-tab::after {
    left: 14px;
    right: 14px;
    bottom: 8px;
  }

  .outcome-detail {
    padding: 24px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .outcome-detail-icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
  }

  .outcome-capabilities {
    grid-template-columns: 1fr;
  }

  .faq-section {
    padding: 70px 0 54px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    grid-column: auto;
    min-height: 248px;
  }

  .advisor-cta {
    margin-top: 62px;
    padding: 28px;
    flex-direction: column;
    align-items: stretch;
  }

  .advisor-cta .btn {
    margin-right: 0;
  }

  .demo-section {
    padding-top: 82px;
  }

  [data-shared-footer] {
    margin-top: 56px;
  }

  .footer-grid {
    width: min(100% - 24px, var(--page-width));
    padding: 44px 0 48px;
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }
}

/* Home premium refinement: hero, solutions and outcomes */
@media (min-width: 901px) {
  .hero {
    min-height: clamp(560px, calc(100vh - 250px), 610px);
    padding: 26px 0 30px;
    grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
    gap: clamp(44px, 4.5vw, 68px);
    transform: none;
  }

  .hero-subtitle {
    margin-top: 20px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-metrics {
    margin-top: 22px;
    padding-top: 16px;
  }

  .product-showcase {
    padding-top: 8px;
  }

  .clients-strip {
    margin-top: -6px;
    padding: 22px 0 24px;
    box-shadow: 0 20px 64px rgba(17, 17, 19, 0.1);
  }

  .clients-strip p {
    margin-bottom: 14px;
    color: #4f535b;
    font-size: 14px;
  }
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(44px, 4.85vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 590px;
  margin-top: 24px;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.58;
}

.hero-actions {
  margin-top: 28px;
}

.hero-metrics {
  max-width: 590px;
  margin-top: 30px;
  padding-top: 20px;
}

.product-showcase {
  padding-top: 18px;
}

.solutions-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.solution-card {
  grid-column: span 3;
}

.solution-card:nth-child(-n + 2) {
  grid-column: span 6;
  min-height: 320px;
  padding: 34px;
  background:
    radial-gradient(circle at 92% 8%, rgba(253, 79, 0, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.9);
}

.solution-card:nth-child(-n + 2) h3 {
  max-width: 520px;
  font-size: clamp(28px, 2.6vw, 36px);
}

.solution-card:nth-child(-n + 2) p {
  max-width: 520px;
  font-size: 15px;
}

.solution-card:nth-child(-n + 2) .card-icon {
  width: 48px;
  height: 48px;
}

.outcomes-shell {
  gap: 26px;
}

.outcome-tabs {
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.5);
}

.outcome-tab {
  min-height: 92px;
  padding: 13px 12px;
  justify-content: flex-start;
  gap: 11px;
  border-color: transparent;
  border-radius: 18px;
  background: transparent;
  box-shadow: none;
}

.outcome-tab::after {
  left: 12px;
  right: 12px;
  bottom: 8px;
  transform: scaleX(0);
}

.outcome-tab:hover,
.outcome-tab:focus-visible,
.outcome-tab.is-active {
  box-shadow: 0 12px 32px rgba(17, 17, 19, 0.07);
  transform: translate3d(0, -2px, 0);
}

.outcome-tab-icon {
  width: 34px;
  height: 34px;
  border-radius: 11px;
}

.outcome-tab strong {
  margin-top: 0;
  padding-bottom: 7px;
}

@media (max-width: 900px) {
  .solution-card,
  .solution-card:nth-child(-n + 2) {
    grid-column: auto;
  }

  .solution-card:nth-child(-n + 2) {
    min-height: 260px;
    padding: 28px;
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 56px 0 44px;
    gap: 40px;
  }

  .hero h1 {
    max-width: 650px;
    font-size: clamp(40px, 11.5vw, 58px);
    line-height: 1;
  }

  .hero-subtitle {
    margin-top: 20px;
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-metrics {
    margin-top: 26px;
    padding-top: 18px;
  }

  .solution-card:nth-child(-n + 2) {
    min-height: 280px;
    padding: 26px;
  }

  .solution-card:nth-child(-n + 2) h3 {
    font-size: 30px;
  }

  .outcome-tabs {
    width: calc(100% + 24px);
    margin-left: -12px;
    padding: 7px 12px 12px;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(188px, 72vw);
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline proximity;
    scrollbar-width: none;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .outcome-tabs::-webkit-scrollbar {
    display: none;
  }

  .outcome-tab {
    min-height: 64px;
    scroll-snap-align: start;
    border-color: rgba(17, 17, 17, 0.08);
    background: rgba(255, 255, 255, 0.68);
  }
}
/* ========================================================================== 
   FIRSAL HOME V3 - Premium B2B composition
   ========================================================================== */

:root {
  --home-ease: cubic-bezier(0.32, 0.72, 0, 1);
  --home-panel: #f4f4f1;
  --home-warm: #fff4ed;
}

.hero {
  overflow: visible;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(17, 17, 19, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(17, 17, 19, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 82% 24%, rgba(253, 79, 0, 0.14), transparent 33%),
    linear-gradient(180deg, #fff8f3 0%, #ffffff 76%);
  background-size: 56px 56px, 56px 56px, auto, auto;
  background-position: center, center, center, center;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(48px, 5.15vw, 70px);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.hero-subtitle {
  max-width: 600px;
  color: #4b4f57;
}

.hero-actions .btn {
  min-height: 50px;
  padding-inline: 23px;
  transition: transform 500ms var(--home-ease), box-shadow 500ms var(--home-ease), background 500ms var(--home-ease);
}

.hero-actions .btn:hover {
  transform: translateY(-3px);
}

.hero-metrics {
  gap: 0;
  border-top-color: rgba(17, 17, 19, 0.12);
}

.hero-metrics > div {
  padding-right: 20px;
}

.hero-metrics > div + div {
  padding-left: 20px;
  border-left: 1px solid rgba(17, 17, 19, 0.1);
}

.hero-metrics strong {
  font-size: 23px;
  letter-spacing: -0.025em;
}

.product-showcase {
  z-index: 2;
  transform: scale(1.035);
  transform-origin: center right;
}

.ecosystem-visual::before {
  inset: 10% -8% 0 2%;
  background:
    radial-gradient(circle at 26% 28%, rgba(253, 79, 0, 0.24), transparent 31%),
    radial-gradient(circle at 76% 68%, rgba(17, 17, 19, 0.13), transparent 34%);
  filter: blur(28px);
}

.mock-device {
  transition: transform 650ms var(--home-ease), box-shadow 650ms var(--home-ease);
}

.clients-strip {
  border: 0;
  border-top: 1px solid rgba(17, 17, 19, 0.1);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
}

.clients-strip::before {
  background: #ffffff;
}

.clients-strip p {
  margin-bottom: 18px;
  color: #3f434a;
  font-size: 14px;
  letter-spacing: 0.01em;
}

.clients-marquee::before {
  background: linear-gradient(90deg, #ffffff 22%, transparent);
}

.clients-marquee::after {
  background: linear-gradient(270deg, #ffffff 22%, transparent);
}

.client-track {
  gap: 28px;
}

.client-track img {
  width: 164px;
  height: 74px;
  padding: 9px 14px;
  border: 0;
  border-radius: 0;
  background: transparent;
  filter: grayscale(100%) contrast(1.05);
  opacity: 0.62;
  transition: filter 500ms var(--home-ease), opacity 500ms var(--home-ease), transform 500ms var(--home-ease);
}

.client-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-3px) scale(1.025);
}

.solutions {
  position: relative;
  isolation: isolate;
  padding: 132px 0 124px;
}

.solutions::before {
  content: "";
  position: absolute;
  inset: 52px calc(50% - 50vw) 0;
  z-index: -1;
  background: var(--home-panel);
}

.solutions .section-heading {
  max-width: 920px;
  margin: 0 0 52px;
  text-align: left;
}

.solutions .section-heading h2 {
  max-width: 820px;
  font-size: clamp(46px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.solutions .section-heading span {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: 16px;
  line-height: 1.65;
}

.solutions-grid {
  gap: 16px;
}

.solution-card {
  min-height: 238px;
  padding: 26px;
  border: 0;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(17, 17, 19, 0.04);
  transition: transform 600ms var(--home-ease), box-shadow 600ms var(--home-ease), background 600ms var(--home-ease);
}

.solution-card:hover {
  border-color: transparent;
  transform: translateY(-7px);
  box-shadow: 0 28px 70px rgba(17, 17, 19, 0.1);
}

.solution-card:nth-child(1) {
  grid-column: span 7;
  min-height: 382px;
  padding: 38px;
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 15%, rgba(253, 79, 0, 0.4), transparent 28%),
    linear-gradient(145deg, #111114, #24242a);
  box-shadow: 0 34px 90px rgba(17, 17, 19, 0.18);
}

.solution-card:nth-child(2) {
  grid-column: span 5;
  min-height: 382px;
  padding: 38px;
  background:
    radial-gradient(circle at 90% 8%, rgba(253, 79, 0, 0.2), transparent 32%),
    #fff5ef;
  box-shadow: inset 0 0 0 1px rgba(253, 79, 0, 0.1);
}

.solution-card:nth-child(1) h3,
.solution-card:nth-child(2) h3 {
  max-width: 540px;
  font-size: clamp(34px, 3.4vw, 48px);
  letter-spacing: -0.035em;
}

.solution-card:nth-child(1) p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}

.solution-card:nth-child(1) a {
  color: #ffffff;
}

.solution-card:nth-child(1) .card-icon {
  color: var(--orange);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.solution-card:nth-child(n + 3) {
  grid-column: span 3;
  border-top: 3px solid rgba(17, 17, 19, 0.1);
  border-radius: 4px 4px 22px 22px;
  box-shadow: none;
}

.solution-card:nth-child(n + 3):hover {
  border-top-color: var(--orange);
  background: #fffdfb;
}

.outcomes-section {
  margin-top: 0;
  padding: 124px 0 132px;
}

.outcomes-section::before {
  background:
    radial-gradient(circle at 92% 10%, rgba(253, 79, 0, 0.1), transparent 28%),
    #fff8f3;
}

.outcomes-shell {
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.8fr);
  column-gap: clamp(40px, 6vw, 88px);
  row-gap: 48px;
  align-items: start;
  contain: none;
}

.outcomes-heading {
  grid-column: 1 / -1;
  max-width: 900px;
  margin: 0;
  text-align: left;
}

.outcomes-heading h2 {
  max-width: 780px;
  font-size: clamp(48px, 5vw, 68px);
  letter-spacing: -0.04em;
}

.outcome-tabs {
  grid-column: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.outcome-tab {
  min-height: 62px;
  padding: 11px 14px;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  border: 0;
  border-radius: 16px;
  color: #555961;
  background: transparent;
}

.outcome-tab::after {
  display: none;
}

.outcome-tab:hover,
.outcome-tab:focus-visible {
  color: var(--black);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: none;
  transform: translateX(4px);
}

.outcome-tab.is-active {
  color: #ffffff;
  background: var(--black);
  box-shadow: 0 18px 48px rgba(17, 17, 19, 0.14);
  transform: translateX(8px);
}

.outcome-tab strong {
  padding: 0;
  font-size: 15px;
}

.outcome-tab.is-active .outcome-tab-icon {
  color: #ffffff;
  background: var(--orange);
}

.outcome-detail {
  grid-column: 2;
  min-height: 456px;
  padding: clamp(34px, 4vw, 56px);
  grid-template-columns: 72px minmax(0, 1fr);
  align-content: center;
  gap: 28px 30px;
  border: 0;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 34px 90px rgba(70, 46, 31, 0.1);
}

.outcome-detail-copy h3 {
  font-size: clamp(36px, 4vw, 54px);
  letter-spacing: -0.04em;
}

.outcome-detail-copy p {
  font-size: 16px;
  line-height: 1.65;
}

.outcome-capabilities {
  grid-column: 1 / -1;
  margin-top: 10px;
  gap: 0 26px;
}

.outcome-capabilities li {
  min-height: 54px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 19, 0.1);
  border-radius: 0;
  background: transparent;
}

.faq-section {
  padding: 126px 0 112px;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.35fr);
  gap: clamp(56px, 8vw, 120px);
  align-items: start;
}

.faq-section .section-heading {
  position: sticky;
  top: 112px;
  max-width: 470px;
  margin: 0;
  text-align: left;
}

.faq-section .section-heading h2 {
  font-size: clamp(44px, 4.5vw, 62px);
  letter-spacing: -0.04em;
}

.faq-section .section-heading span {
  margin-left: 0;
  font-size: 16px;
  line-height: 1.65;
}

.faq-list {
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(17, 17, 19, 0.14);
}

.faq-list details {
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 19, 0.14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.faq-list summary {
  min-height: 82px;
  padding: 22px 58px 22px 0;
  font-size: 17px;
  transition: color 350ms var(--home-ease), padding 350ms var(--home-ease);
}

.faq-list summary:hover {
  padding-left: 8px;
  color: var(--orange-dark);
}

.faq-list summary::after {
  right: 0;
  color: var(--black);
  background: #f1f1ee;
  transition: color 350ms var(--home-ease), background 350ms var(--home-ease), transform 350ms var(--home-ease);
}

.faq-list details[open] summary::after {
  color: #ffffff;
  background: var(--orange);
  transform: translateY(-50%) rotate(180deg);
}

.faq-list details p {
  max-width: 680px;
  padding: 0 56px 24px 0;
  font-size: 15px;
  line-height: 1.7;
}

.advisor-cta {
  min-height: 280px;
  margin-top: 24px;
  padding: clamp(42px, 5vw, 68px);
  border-radius: 38px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 88% 24%, rgba(253, 79, 0, 0.55), transparent 28%),
    linear-gradient(135deg, #111114, #202026);
  background-size: 52px 52px, auto, auto;
  box-shadow: 0 36px 100px rgba(17, 17, 19, 0.2);
}

.advisor-cta > div {
  max-width: 790px;
}

.advisor-cta h2 {
  max-width: 700px;
  color: #ffffff;
  font-size: clamp(40px, 4.5vw, 62px);
  letter-spacing: -0.04em;
}

.advisor-cta span {
  max-width: 720px;
  margin-left: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.65;
}

.advisor-cta .btn {
  min-height: 52px;
  margin-right: 0;
  padding-inline: 24px;
  color: var(--black);
  background: #ffffff;
  box-shadow: none;
}

.advisor-cta .btn:hover {
  color: #ffffff;
  background: var(--orange);
}

.demo-section {
  width: min(var(--page-width), calc(100% - 32px));
  padding: 132px 0 120px;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(56px, 8vw, 120px);
  align-items: start;
}

.demo-section::before {
  inset: 34px calc(50% - 50vw) 0;
  background: var(--home-panel);
}

.demo-heading {
  position: sticky;
  top: 112px;
  max-width: 470px;
  margin: 0;
  text-align: left;
}

.demo-heading h2 {
  color: var(--black);
  font-size: clamp(44px, 4.5vw, 62px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.demo-heading span {
  margin-left: 0;
  font-size: 16px;
  line-height: 1.65;
}

.demo-form {
  max-width: none;
  margin: 0;
  padding: clamp(30px, 4vw, 52px);
  gap: 22px;
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 30px 90px rgba(17, 17, 19, 0.09);
}

.demo-form input,
.demo-form textarea,
.multi-select-toggle {
  min-height: 48px;
  border-bottom-color: rgba(17, 17, 19, 0.2);
  transition: border-color 350ms var(--home-ease), box-shadow 350ms var(--home-ease);
}

.demo-submit {
  min-height: 52px;
  margin: 8px 0 0;
  padding-inline: 26px;
}

@media (min-width: 901px) {
  .hero {
    min-height: clamp(570px, calc(100vh - 220px), 630px);
    padding: 30px 0 34px;
    grid-template-columns: minmax(0, 1.02fr) minmax(470px, 0.98fr);
    gap: clamp(42px, 4vw, 64px);
  }

  .clients-strip {
    margin-top: -28px;
    padding: 24px 0 26px;
  }
}

@media (max-width: 900px) {
  .product-showcase {
    transform: none;
  }

  .solutions {
    padding: 96px 0 88px;
  }

  .solution-card:nth-child(1),
  .solution-card:nth-child(2) {
    min-height: 330px;
  }

  .solution-card:nth-child(1),
  .solution-card:nth-child(2),
  .solution-card:nth-child(n + 3) {
    grid-column: auto;
  }

  .outcomes-shell {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }

  .outcomes-heading,
  .outcome-tabs,
  .outcome-detail {
    grid-column: 1;
  }

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

  .outcome-detail {
    min-height: 390px;
  }

  .faq-section,
  .demo-section {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .faq-section .section-heading,
  .demo-heading {
    position: static;
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 52px 0 40px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

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

  .hero-metrics > div {
    padding-right: 10px;
  }

  .hero-metrics > div + div {
    padding-left: 10px;
  }

  .hero-metrics strong {
    font-size: 18px;
  }

  .hero-metrics span {
    font-size: 11px;
  }

  .clients-strip {
    width: 100%;
    margin-top: 0;
    padding: 20px 0 22px;
  }

  .clients-strip p {
    padding-inline: 18px;
    font-size: 13px;
  }

  .solutions {
    padding: 82px 0 76px;
  }

  .solutions::before {
    top: 28px;
  }

  .solutions .section-heading {
    margin-bottom: 34px;
  }

  .solutions .section-heading h2,
  .outcomes-heading h2,
  .faq-section .section-heading h2,
  .demo-heading h2 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .solution-card:nth-child(1),
  .solution-card:nth-child(2) {
    min-height: 340px;
    padding: 28px;
  }

  .solution-card:nth-child(n + 3) {
    min-height: 220px;
    padding: 24px;
  }

  .outcomes-section {
    padding: 88px 0 92px;
  }

  .outcome-tabs {
    width: calc(100% + 24px);
    margin-left: -12px;
    padding: 4px 12px 12px;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(210px, 74vw);
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: inline proximity;
  }

  .outcome-tab {
    min-height: 64px;
    border: 1px solid rgba(17, 17, 19, 0.08);
    background: rgba(255, 255, 255, 0.7);
    scroll-snap-align: start;
  }

  .outcome-tab.is-active {
    border-color: var(--black);
    background: var(--black);
    transform: none;
  }

  .outcome-detail {
    min-height: auto;
    padding: 28px;
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .faq-section {
    padding: 88px 0 74px;
    gap: 34px;
  }

  .faq-list summary {
    min-height: 76px;
    font-size: 16px;
  }

  .advisor-cta {
    min-height: auto;
    margin-top: 18px;
    padding: 34px 28px;
    border-radius: 28px;
  }

  .advisor-cta h2 {
    font-size: 38px;
  }

  .demo-section {
    padding: 88px 0 80px;
    gap: 34px;
  }

  .demo-form {
    padding: 26px 22px;
    border-radius: 26px;
  }
}

/* ==========================================================================
   Refinamiento sobrio de Soluciones
   ========================================================================== */

.solutions {
  padding: 132px 0 124px;
}

.solutions::before {
  inset: 52px calc(50% - 50vw) 0;
  background: var(--home-panel);
}

.solutions .section-heading {
  max-width: 900px;
  margin-bottom: 54px;
}

.solutions .section-heading h2 {
  max-width: 800px;
  letter-spacing: -0.035em;
}

.solutions .section-heading span {
  max-width: 700px;
  color: rgba(17, 17, 19, 0.64);
}

.solutions-grid {
  gap: 18px;
  align-items: stretch;
}

.solutions .solution-card {
  position: relative;
  overflow: hidden;
  min-height: 248px;
  padding: 28px;
  border: 0;
  border-radius: 26px;
  background: #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(17, 17, 19, 0.075),
    0 16px 44px rgba(17, 17, 19, 0.055);
  transform: translateY(0);
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.solutions .solution-card:nth-child(1),
.solutions .solution-card:nth-child(2) {
  grid-column: span 6;
  min-height: 292px;
  padding: 38px;
  color: var(--black);
  background: #ffffff;
}

.solutions .solution-card:nth-child(1) h3,
.solutions .solution-card:nth-child(2) h3 {
  max-width: 540px;
  color: var(--black);
  font-size: clamp(34px, 3.1vw, 44px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.solutions .solution-card:nth-child(1) p,
.solutions .solution-card:nth-child(2) p {
  max-width: 560px;
  color: rgba(17, 17, 19, 0.64);
  font-size: 16px;
}

.solutions .solution-card:nth-child(1) a,
.solutions .solution-card:nth-child(2) a {
  color: var(--black);
}

.solutions .solution-card:nth-child(n + 3) {
  grid-column: span 3;
  min-height: 248px;
  border-top: 0;
  border-radius: 24px;
  box-shadow:
    inset 0 0 0 1px rgba(17, 17, 19, 0.07),
    0 12px 34px rgba(17, 17, 19, 0.045);
}

.solutions .solution-card h3 {
  letter-spacing: -0.025em;
}

.solutions .solution-card p {
  color: rgba(17, 17, 19, 0.58);
}

.solutions .card-icon,
.solutions .solution-card:nth-child(1) .card-icon {
  color: #ffffff;
  background: var(--orange);
  box-shadow: none;
}

.solutions .solution-card a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 2px;
  border-radius: 999px;
  transition:
    color 220ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.solutions .solution-card:focus-within {
  box-shadow:
    inset 0 0 0 1px rgba(253, 79, 0, 0.34),
    0 18px 48px rgba(17, 17, 19, 0.07);
}

@media (hover: hover) and (pointer: fine) {
  .solutions .solution-card:hover {
    border-color: transparent;
    transform: translateY(-5px);
    background-color: #fffdfb;
    box-shadow:
      inset 0 0 0 1px rgba(17, 17, 19, 0.1),
      0 24px 58px rgba(17, 17, 19, 0.085);
  }

  .solutions .solution-card:nth-child(n + 3):hover {
    border-top: 0;
  }

  .solutions .solution-card:hover a {
    color: var(--orange);
    transform: translateX(2px);
  }

  .solutions .solution-card:hover .card-icon {
    transform: translateY(-2px);
  }
}

.solutions .solution-card:active {
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .solutions .solution-card,
  .solutions .solution-card:nth-child(1),
  .solutions .solution-card:nth-child(2),
  .solutions .solution-card:nth-child(n + 3) {
    grid-column: auto;
    min-height: 280px;
  }
}

@media (max-width: 760px) {
  .solutions {
    padding: 104px 0 96px;
  }

  .solutions .section-heading {
    margin-bottom: 36px;
  }

  .solutions .solution-card,
  .solutions .solution-card:nth-child(1),
  .solutions .solution-card:nth-child(2),
  .solutions .solution-card:nth-child(n + 3) {
    min-height: 238px;
    padding: 24px;
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .solutions .solution-card,
  .solutions .solution-card a {
    transition: none;
  }
}

/* ==========================================================================
   Recuperacion del Hero aprobado
   ========================================================================== */

.hero {
  gap: clamp(42px, 4vw, 64px);
  grid-template-columns: minmax(0, 0.96fr) minmax(520px, 1.12fr);
}

.hero-copy {
  margin-top: 18px;
}

.hero h1 {
  max-width: 760px;
}

.hero-subtitle {
  max-width: 650px;
  font-size: clamp(16.5px, 1.32vw, 19px);
  line-height: 1.56;
}

.hero-actions {
  margin-top: 32px;
}

.hero-metrics {
  border-top-color: #e5e5e5;
}

.product-showcase {
  transform: translate(16px, 4px);
  overflow-x: clip;
  overflow-y: visible;
}

.product-showcase::before {
  inset: -6% -34% -22% -12%;
  opacity: 0.52;
  filter: blur(20px);
  background:
    radial-gradient(circle at 74% 22%, rgba(253, 79, 0, 0.1), transparent 36%),
    linear-gradient(180deg, #fff7f2 0%, #ffffff 72%);
}

.hero::after {
  content: "FIRSAL";
  position: absolute;
  left: min(2vw, 26px);
  bottom: clamp(4px, 1.3vw, 18px);
  z-index: 0;
  color: rgba(17, 17, 19, 0.035);
  font-size: clamp(86px, 15vw, 260px);
  font-weight: 950;
  line-height: 0.76;
  letter-spacing: -0.095em;
  pointer-events: none;
}

.ecosystem-visual::before {
  inset: -8% -36% -24% -14%;
  opacity: 0.68;
  filter: blur(22px);
}

.hero-product-image {
  left: 52%;
  top: 52%;
  width: min(1704%, 10892px);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy,
  .product-showcase,
  .ecosystem-visual {
    min-width: 0;
    width: 100%;
  }

  .product-showcase {
    transform: none;
  }
}

/* ==========================================================================
   Refinamiento CTA asesor
   ========================================================================== */

.advisor-cta {
  min-height: auto;
  margin-top: 28px;
  padding: clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 38px;
  background:
    linear-gradient(135deg, #0b0d10 0%, #111318 58%, #0a0b0d 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 28px 80px rgba(17, 17, 19, 0.14);
}

.advisor-cta::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 37px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 44%);
}

.advisor-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.advisor-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 20px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.045);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.advisor-cta h2 {
  max-width: 720px;
  color: #ffffff;
  font-size: clamp(40px, 4.4vw, 60px);
  line-height: 1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.advisor-cta .advisor-text {
  max-width: 690px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.68;
  text-align: left;
}

.advisor-action-panel {
  position: relative;
  z-index: 1;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.12);
}

.advisor-steps {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.advisor-steps span {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.055);
  font-size: 13px;
  font-weight: 700;
}

.advisor-steps strong {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.advisor-action-panel .btn {
  width: 100%;
  min-height: 54px;
  margin: 2px 0 0;
  justify-content: center;
  color: #ffffff;
  background: var(--orange);
  box-shadow: 0 18px 34px rgba(253, 79, 0, 0.18);
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.advisor-action-panel .btn:hover {
  color: #ffffff;
  background: #e84b08;
  box-shadow: 0 22px 42px rgba(253, 79, 0, 0.24);
  transform: translateY(-2px);
}

.advisor-action-panel .btn:active {
  transform: translateY(0) scale(0.99);
}

.advisor-action-panel p {
  margin: 14px 4px 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 900px) {
  .advisor-cta {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .advisor-action-panel {
    max-width: 520px;
  }
}

@media (max-width: 760px) {
  .advisor-cta {
    margin-top: 18px;
    padding: 30px 24px;
    border-radius: 28px;
  }

  .advisor-cta::before {
    border-radius: 27px;
  }

  .advisor-cta h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .advisor-cta .advisor-text {
    font-size: 15px;
  }

  .advisor-action-panel {
    padding: 14px;
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .advisor-action-panel .btn {
    transition: none;
  }
}

/* ==========================================================================
   Refinamiento footer y transicion final
   ========================================================================== */

[data-shared-footer] {
  margin-top: 0;
  background: var(--home-panel);
}

.site-footer {
  position: relative;
  isolation: isolate;
  width: 100vw;
  margin: 0;
  overflow: hidden;
  color: #f7f7f8;
  background: #08090b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(253, 79, 0, 0.42), transparent);
  opacity: 0.55;
}

.footer-grid {
  width: min(var(--page-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 66px 0 70px;
  display: grid;
  grid-template-columns: minmax(220px, 1.12fr) minmax(180px, 0.86fr) minmax(220px, 1fr) minmax(220px, 1fr);
  gap: clamp(30px, 4.5vw, 64px);
  align-items: start;
}

.footer-column {
  min-width: 0;
}

.footer-column:not(.footer-brand-column) {
  padding-left: clamp(0px, 2vw, 24px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  width: 136px;
  filter: brightness(0) invert(1) saturate(0);
  opacity: 0.96;
}

.footer-legal {
  max-width: 290px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.6;
}

.footer-heading {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.footer-heading h2 {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.01em;
}

.footer-icon,
.mini-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(253, 79, 0, 0.22);
  border-radius: 11px;
  color: var(--orange);
  background: rgba(255, 255, 255, 0.045);
}

.mini-icon {
  width: 30px;
  height: 30px;
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.1);
}

.site-footer svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-column p,
.footer-column a {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.58;
}

.footer-column a {
  text-decoration: none;
  transition:
    color 220ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-column a:hover {
  color: var(--orange);
}

.footer-column a:focus-visible {
  outline: 2px solid rgba(253, 79, 0, 0.72);
  outline-offset: 4px;
  border-radius: 6px;
}

.footer-line {
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.footer-line:first-of-type {
  margin-top: 0;
}

.footer-line strong {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 850;
}

@media (hover: hover) and (pointer: fine) {
  .footer-column a:hover {
    transform: translateX(2px);
  }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 56px 0 60px;
    gap: 34px 42px;
  }

  .footer-column:not(.footer-brand-column) {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 760px) {
  [data-shared-footer] {
    margin-top: 0;
  }

  .footer-grid {
    width: min(100% - 24px, var(--page-width));
    grid-template-columns: 1fr;
    padding: 44px 0 48px;
    gap: 28px;
  }

  .footer-brand-column {
    padding-bottom: 4px;
  }
}

/* ==========================================================================
   Soluciones - rediseño estudio profesional
   ========================================================================== */

.solutions-studio-page {
  padding-top: 40px;
  background:
    linear-gradient(180deg, #fff8f3 0%, #ffffff 330px),
    #ffffff;
}

.solutions-studio-page::before {
  display: none;
}

.solutions-studio-hero {
  width: min(var(--page-width), calc(100% - 32px));
  max-width: var(--page-width);
  padding: 26px 0 34px;
  text-align: left;
}

.solutions-hero-copy {
  max-width: 980px;
}

.solutions-hero-kicker,
.orbit-statement span,
.integration-heading span,
.before-after-heading span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border: 1px solid rgba(253, 79, 0, 0.14);
  border-radius: 999px;
  color: var(--orange-dark);
  background: rgba(253, 79, 0, 0.055);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.solutions-studio-hero h1 {
  max-width: 1040px;
  margin: 18px 0 0;
  font-size: clamp(44px, 5.6vw, 78px);
  line-height: 0.94;
  text-wrap: balance;
}

.solutions-studio-hero p {
  max-width: 680px;
  margin: 18px 0 0;
  color: #5b6068;
  font-size: clamp(16px, 1.55vw, 19px);
  font-weight: 650;
  line-height: 1.55;
}

.solutions-studio-hero .solutions-jump-nav {
  margin: 30px 0 0;
  justify-content: flex-start;
  overflow-x: auto;
  padding: 4px 4px 10px;
  scrollbar-width: none;
}

.solutions-studio-hero .solutions-jump-nav::-webkit-scrollbar {
  display: none;
}

.solutions-studio-hero .solution-chip {
  min-height: 40px;
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(17, 17, 19, 0.09);
  box-shadow: 0 14px 32px rgba(17, 17, 19, 0.055);
  backdrop-filter: blur(12px);
}

.solutions-studio-hero .solution-chip.is-active {
  background: var(--orange);
  box-shadow: 0 18px 42px rgba(253, 79, 0, 0.24);
}

.solutions-studio-list,
.integrations-studio-section,
.before-after-studio {
  width: min(var(--page-width), calc(100% - 32px));
  margin-inline: auto;
}


.solutions-studio-list {
  margin-top: 26px;
  gap: 18px;
}

.solutions-studio-list .solution-panel {
  border-color: rgba(17, 17, 19, 0.075);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 250, 0.94)),
    #ffffff;
  box-shadow: 0 22px 70px rgba(17, 17, 19, 0.065);
}

.solutions-studio-list .solution-panel:hover,
.solutions-studio-list .solution-panel.is-open {
  border-color: rgba(253, 79, 0, 0.18);
  box-shadow: 0 32px 90px rgba(17, 17, 19, 0.095);
  transform: translateY(-2px);
}

.solutions-studio-list .solution-panel-featured {
  background:
    linear-gradient(135deg, #ffffff 0%, #fbfbfb 58%, #fff7f1 100%),
    #ffffff;
}

.solutions-studio-list .solution-summary {
  min-height: 242px;
  grid-template-columns: 74px minmax(0, 0.92fr) minmax(360px, 0.9fr);
}

.solutions-studio-list .solution-panel-featured .solution-summary {
  min-height: 288px;
}

.solutions-studio-list .solution-icon {
  margin: 30px 0 0 28px;
  border-radius: 17px;
  box-shadow: 0 16px 34px rgba(253, 79, 0, 0.18);
}

.solutions-studio-list .solution-copy {
  padding-block: 32px;
}

.solutions-studio-list .solution-copy strong {
  max-width: 520px;
  font-size: clamp(26px, 2.5vw, 38px);
  text-wrap: balance;
}

.solutions-studio-list .solution-copy span:not(.solution-category) {
  max-width: 560px;
  color: #5a5f68;
}

.solutions-studio-list .solution-copy em {
  width: max-content;
  min-height: 38px;
  margin-top: 20px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(17, 17, 19, 0.08);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(17, 17, 19, 0.045);
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms cubic-bezier(0.22, 1, 0.36, 1),
    color 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.solutions-studio-list .solution-panel:hover .solution-copy em,
.solutions-studio-list .solution-panel.is-open .solution-copy em {
  color: var(--orange-dark);
  border-color: rgba(253, 79, 0, 0.28);
  transform: translateX(2px);
}

.solutions-studio-list .solution-visual {
  min-height: 220px;
  margin: 16px 16px 16px 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at 56% 50%, rgba(253, 79, 0, 0.12), rgba(253, 79, 0, 0.035) 42%, rgba(255, 255, 255, 0.96) 70%),
    linear-gradient(135deg, #fffaf7, #ffffff);
}

.solutions-studio-list .solution-panel-featured .solution-visual {
  min-height: 256px;
}

.solutions-studio-list .solution-detail {
  transition:
    max-height 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.solutions-studio-list .solution-detail-grid,
.solutions-studio-list .placeholder-detail {
  margin: 0 28px 28px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, #ffffff, #fbfbfb),
    #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.integrations-studio-section {
  margin-top: 62px;
  padding: 34px;
  border: 1px solid rgba(231, 228, 223, 0.92);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 250, 250, 0.98)),
    #fafafa;
  box-shadow: 0 22px 70px rgba(17, 17, 19, 0.055);
}

.integration-heading {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.integrations-studio-section h2 {
  margin: 14px 0 0;
}

.integration-heading p {
  max-width: 650px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.55;
}

.integrations-studio-section .integration-chips span {
  min-height: 50px;
  padding: 9px 16px 9px 10px;
  border-color: rgba(17, 17, 19, 0.075);
  box-shadow: 0 14px 34px rgba(17, 17, 19, 0.055);
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.integrations-studio-section .integration-chips span:hover {
  border-color: rgba(253, 79, 0, 0.2);
  box-shadow: 0 18px 42px rgba(17, 17, 19, 0.075);
  transform: translateY(-2px);
}

.before-after-studio {
  margin-top: 54px;
  padding: 28px;
  border-radius: 34px;
}

.before-after-heading {
  max-width: 780px;
  margin: 0 auto 24px;
  text-align: center;
}

.before-after-heading h2 {
  margin: 14px auto 0;
  font-size: clamp(30px, 3.4vw, 48px);
}

.before-after-heading p {
  margin: 12px auto 0;
}

.before-after-studio .comparison-grid {
  grid-template-columns: minmax(0, 1fr) 150px minmax(0, 1fr);
}

.before-after-studio .comparison-grid article {
  min-height: 210px;
  border-color: rgba(17, 17, 19, 0.075);
}

.before-after-studio .compare-bridge span {
  background: #111113;
  box-shadow: 0 16px 36px rgba(17, 17, 19, 0.16);
}

@media (max-width: 1080px) {
  .orbit-statement h2 {
    margin-top: 28px;
  }

  .solutions-studio-list .solution-summary {
    grid-template-columns: 68px minmax(0, 1fr) minmax(290px, 0.78fr);
  }
}

@media (max-width: 900px) {
  .solutions-studio-hero {
    padding-top: 14px;
  }

  .orbit-pillars {
    grid-template-columns: 1fr;
  }

  .orbit-pillars article {
    min-height: 142px;
  }

  .solutions-studio-list .solution-summary,
  .solutions-studio-list .solution-panel-featured .solution-summary {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .solutions-studio-list .solution-icon {
    margin: 24px 24px 0;
  }

  .solutions-studio-list .solution-copy {
    padding: 16px 24px 0;
  }

  .solutions-studio-list .solution-visual,
  .solutions-studio-list .solution-panel-featured .solution-visual {
    min-height: 260px;
    margin: 24px;
  }

  .solutions-studio-list .solution-detail-grid {
    grid-template-columns: 1fr;
  }

  .before-after-studio .comparison-grid {
    grid-template-columns: 1fr;
  }

  .before-after-studio .compare-bridge {
    width: 100%;
    min-height: 52px;
  }
}

@media (max-width: 760px) {
  .solutions-studio-page {
    padding-top: 22px;
  }

  .solutions-studio-hero h1 {
    font-size: clamp(38px, 13vw, 56px);
  }

  .integrations-studio-section,
  .before-after-studio {
    width: min(100% - 24px, var(--page-width));
    border-radius: 26px;
    padding: 18px;
  }

  .orbit-statement {
    padding: 20px;
  }

  .solutions-studio-list {
    width: min(100% - 24px, var(--page-width));
  }

  .solutions-studio-list .solution-panel {
    border-radius: 26px;
  }

  .solutions-studio-list .solution-detail-grid,
  .solutions-studio-list .placeholder-detail {
    margin: 0 18px 18px;
    padding: 22px;
  }

  .detail-lists {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-column a {
    transition: none;
  }
}

/* ==========================================================================
   Soluciones - segunda iteración narrativa
   ========================================================================== */

.solutions-studio-page {
  padding-top: 34px;
  background:
    linear-gradient(180deg, #fff8f3 0%, #ffffff 310px),
    linear-gradient(90deg, rgba(17, 17, 19, 0.045) 1px, transparent 1px),
    #ffffff;
  background-size: auto, 96px 96px, auto;
}

.solutions-studio-hero {
  padding: 30px 0 24px;
}

.solutions-hero-copy {
  max-width: 1040px;
}

.solutions-studio-hero h1 {
  max-width: 1080px;
  margin-top: 0;
}

.solutions-studio-hero p {
  max-width: 720px;
}

.solutions-studio-hero .solutions-jump-nav {
  margin-top: 28px;
  padding-bottom: 12px;
}

.solutions-studio-hero .solution-chip {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: none;
}

.solutions-narrative-shell {
  width: min(var(--page-width), calc(100% - 32px));
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: minmax(210px, 0.24fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}

.solutions-chapter-nav {
  position: sticky;
  top: 106px;
  padding: 20px;
  border: 1px solid rgba(17, 17, 19, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 54px rgba(17, 17, 19, 0.055);
}

.solutions-chapter-nav p {
  margin: 0 0 16px;
  color: #8a8f98;
  font-size: 12px;
  font-weight: 850;
}

.solutions-chapter-nav nav {
  display: grid;
  gap: 4px;
}

.solution-rail-link {
  position: relative;
  min-height: 38px;
  padding: 8px 12px 8px 24px;
  display: flex;
  align-items: center;
  border-radius: 14px;
  color: #535862;
  font-size: 13px;
  font-weight: 780;
  text-decoration: none;
  transition:
    color 220ms cubic-bezier(0.22, 1, 0.36, 1),
    background 220ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.solution-rail-link::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(17, 17, 19, 0.2);
  transform: translateY(-50%);
  transition:
    height 220ms cubic-bezier(0.22, 1, 0.36, 1),
    background 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.solution-rail-link:hover,
.solution-rail-link:focus-visible,
.solution-rail-link.is-active {
  color: var(--black);
  background: #f6f6f6;
  outline: none;
}

.solution-rail-link:hover {
  transform: translateX(2px);
}

.solution-rail-link.is-active::before {
  height: 18px;
  background: var(--orange);
}

.solutions-narrative-shell .solutions-studio-list {
  width: 100%;
  margin-top: 0;
  display: grid;
  gap: 24px;
}

.solutions-narrative-shell .solution-panel {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.solutions-narrative-shell .solution-panel:hover,
.solutions-narrative-shell .solution-panel.is-open {
  box-shadow: none;
  transform: none;
}

.solutions-narrative-shell .solution-summary {
  position: relative;
  overflow: hidden;
  min-height: 248px;
  grid-template-columns: minmax(0, 0.86fr) minmax(330px, 0.78fr);
  border: 1px solid rgba(17, 17, 19, 0.075);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(250, 250, 250, 0.95)),
    #ffffff;
  box-shadow: 0 22px 70px rgba(17, 17, 19, 0.06);
  transition:
    border-color 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.solutions-narrative-shell .solution-panel.is-open .solution-summary,
.solutions-narrative-shell .solution-summary:hover {
  border-color: rgba(253, 79, 0, 0.16);
  box-shadow: 0 30px 86px rgba(17, 17, 19, 0.09);
  transform: translateY(-2px);
}

.solutions-narrative-shell .solution-panel-featured .solution-summary {
  min-height: 306px;
}

.solutions-narrative-shell .solution-icon {
  display: none;
}

.solutions-narrative-shell .solution-category {
  display: none;
}

.solutions-narrative-shell .solution-copy {
  padding: 34px 24px 34px 34px;
}

.solutions-narrative-shell .solution-copy strong {
  max-width: 590px;
  margin-top: 0;
  font-size: clamp(30px, 3vw, 48px);
  letter-spacing: 0;
}

.solutions-narrative-shell .solution-copy span:not(.solution-category) {
  max-width: 600px;
  font-size: 15.5px;
}

.solutions-narrative-shell .solution-copy em {
  color: #1f2228;
}

.solutions-narrative-shell .solution-visual {
  min-height: auto;
  height: calc(100% - 32px);
  margin: 16px 16px 16px 0;
  background:
    linear-gradient(135deg, #fff7f1 0%, #ffffff 58%),
    #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.solutions-narrative-shell .solution-visual::before {
  background:
    linear-gradient(135deg, rgba(253, 79, 0, 0.06), rgba(255, 255, 255, 0.28)),
    rgba(255, 255, 255, 0.18);
}

@media (min-width: 901px) {
  .solutions-narrative-shell .solution-panel-alternate .solution-summary {
    direction: rtl;
  }

  .solutions-narrative-shell .solution-panel-alternate .solution-summary > * {
    direction: ltr;
  }
}

.solutions-narrative-shell .solution-detail {
  margin-left: 52px;
  border-left: 1px solid rgba(253, 79, 0, 0.18);
  transform: translateY(-12px);
}

.solutions-narrative-shell .solution-panel.is-open .solution-detail {
  transform: translateY(0);
}

.solutions-narrative-shell .solution-detail-grid,
.solutions-narrative-shell .placeholder-detail {
  margin: 14px 0 10px 26px;
  padding: 30px;
  border-color: rgba(17, 17, 19, 0.07);
  border-radius: 28px;
  background:
    linear-gradient(180deg, #ffffff, #fbfbfb),
    #ffffff;
  box-shadow: 0 20px 60px rgba(17, 17, 19, 0.055);
}

.solutions-narrative-shell .solution-detail-grid {
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
}

.solutions-narrative-shell .detail-label {
  color: #8a8f98;
  letter-spacing: 0.02em;
  text-transform: none;
}

.solutions-narrative-shell .detail-lists div {
  background: #f7f7f7;
}

.integrations-studio-section {
  margin-top: 70px;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 38px;
}

.integration-heading span,
.before-after-heading span {
  display: none;
}

.integrations-studio-section h2 {
  margin-top: 0;
}

.before-after-studio {
  margin-top: 64px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.before-after-heading {
  text-align: left;
  max-width: 760px;
  margin: 0 0 26px;
}

.before-after-heading h2 {
  margin: 0;
  text-align: left;
}

.before-after-heading p {
  margin-left: 0;
  text-align: left;
}

.before-after-studio .comparison-grid {
  padding: 26px;
  border: 1px solid rgba(17, 17, 19, 0.075);
  border-radius: 34px;
  background: #fafafa;
}


.macbook-finale-section {
  margin-top: 76px;
  padding-bottom: clamp(22px, 4vw, 54px);
}

.macbook-showcase {
  min-height: clamp(520px, 58vw, 780px);
  display: grid;
  place-items: center;
  padding: clamp(34px, 6vw, 86px) 0 clamp(18px, 4vw, 42px);
  overflow: hidden;
  perspective: 1600px;
}

.macbook-device {
  width: min(1120px, 100%);
  position: relative;
  display: grid;
  justify-items: center;
  transform: translateY(28px);
  opacity: 0;
  transition:
    opacity 700ms ease,
    transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.macbook-finale-section.is-visible .macbook-device {
  opacity: 1;
  transform: translateY(0);
}

.macbook-screen {
  position: relative;
  width: min(1040px, 94vw);
  aspect-ratio: 16 / 9.8;
  display: grid;
  place-items: center;
  border: clamp(10px, 1.25vw, 16px) solid #111113;
  border-bottom-width: clamp(18px, 2vw, 26px);
  border-radius: clamp(24px, 3vw, 38px) clamp(24px, 3vw, 38px) clamp(18px, 2vw, 28px) clamp(18px, 2vw, 28px);
  background: #ffffff;
  box-shadow:
    0 42px 96px rgba(17, 17, 19, 0.14),
    0 12px 32px rgba(17, 17, 19, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transform-origin: bottom center;
  transform: rotateX(-16deg) translateY(34px);
  transition: transform 1000ms cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
}

.macbook-finale-section.is-visible .macbook-screen {
  transform: rotateX(0deg) translateY(0);
}

.macbook-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(17, 17, 19, 0.04), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0));
}

.macbook-camera {
  position: absolute;
  top: clamp(8px, 0.9vw, 12px);
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #202126;
  transform: translateX(-50%);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.macbook-message {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100% - 48px));
  display: grid;
  justify-items: center;
  gap: clamp(20px, 3vw, 32px);
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 620ms ease 360ms,
    transform 720ms ease 360ms;
}

.macbook-finale-section.is-visible .macbook-message {
  opacity: 1;
  transform: translateY(0);
}

.macbook-message h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(34px, 5vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.macbook-message h2 span,
.macbook-message h2 strong {
  display: block;
}

.macbook-message h2 span {
  font-weight: 700;
}

.macbook-message h2 strong {
  margin-top: 0.14em;
  font-weight: 900;
}

.macbook-cta {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--orange);
  box-shadow: 0 16px 34px rgba(253, 79, 0, 0.2);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.macbook-cta:hover,
.macbook-cta:focus-visible {
  background: var(--orange-dark);
  box-shadow: 0 20px 42px rgba(253, 79, 0, 0.25);
  transform: translateY(-2px);
}

.macbook-cta:focus-visible {
  outline: 3px solid rgba(253, 79, 0, 0.24);
  outline-offset: 4px;
}

.macbook-base {
  position: relative;
  width: min(1120px, 100vw);
  height: clamp(34px, 4.2vw, 54px);
  margin-top: -2px;
  border-radius: 0 0 42px 42px;
  background:
    linear-gradient(180deg, #e9eaec 0%, #b9bbc1 45%, #8d9099 100%);
  box-shadow:
    0 34px 70px rgba(17, 17, 19, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  transform: translateY(-8px);
}

.macbook-base::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(180px, 22vw);
  height: 12px;
  border-radius: 0 0 16px 16px;
  background: rgba(94, 97, 105, 0.32);
  transform: translateX(-50%);
}

.macbook-base span {
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: -8px;
  height: 10px;
  border-radius: 50%;
  background: rgba(17, 17, 19, 0.13);
  filter: blur(10px);
}

@media (max-width: 900px) {
  .macbook-showcase {
    min-height: clamp(430px, 72vw, 640px);
  }

  .macbook-message {
    width: min(650px, calc(100% - 34px));
  }

  .macbook-message h2 {
    font-size: clamp(30px, 7vw, 56px);
    letter-spacing: -0.045em;
  }
}

@media (max-width: 560px) {
  .macbook-finale-section {
    margin-top: 58px;
    padding-bottom: 24px;
  }

  .macbook-showcase {
    min-height: 420px;
    padding-top: 30px;
  }

  .macbook-screen {
    width: min(620px, 110vw);
    aspect-ratio: 1 / 1.05;
    border-width: 10px;
    border-bottom-width: 16px;
    border-radius: 24px 24px 18px 18px;
  }

  .macbook-message {
    width: min(360px, calc(100% - 26px));
    gap: 20px;
  }

  .macbook-message h2 {
    font-size: clamp(28px, 9vw, 40px);
    line-height: 1.03;
  }

  .macbook-cta {
    min-height: 48px;
    padding-inline: 18px;
  }

  .macbook-base {
    width: min(620px, 112vw);
    height: 34px;
    border-radius: 0 0 28px 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .macbook-device,
  .macbook-screen,
  .macbook-message {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1080px) {
  .solutions-narrative-shell {
    grid-template-columns: 1fr;
  }

  .solutions-chapter-nav {
    position: relative;
    top: auto;
  }

  .solutions-chapter-nav nav {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

}

@media (max-width: 900px) {
  .solutions-narrative-shell .solution-summary,
  .solutions-narrative-shell .solution-panel-featured .solution-summary {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .solutions-narrative-shell .solution-icon {
    margin: 24px 24px 0;
  }

  .solutions-narrative-shell .solution-copy {
    padding: 16px 24px 0;
  }

  .solutions-narrative-shell .solution-visual {
    height: 280px;
    margin: 24px;
  }

  .solutions-narrative-shell .solution-detail {
    margin-left: 24px;
  }

  .solutions-narrative-shell .solution-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .solutions-narrative-shell {
    width: min(100% - 24px, var(--page-width));
    margin-top: 18px;
  }

  .solutions-chapter-nav {
    padding: 14px;
    border-radius: 22px;
  }

  .solutions-chapter-nav p {
    margin-bottom: 10px;
  }

  .solutions-narrative-shell .solution-summary {
    border-radius: 26px;
  }

  .solutions-narrative-shell .solution-copy strong {
    font-size: clamp(27px, 9vw, 40px);
  }

  .solutions-narrative-shell .solution-visual {
    height: 250px;
    border-radius: 22px;
  }

  .solutions-narrative-shell .solution-detail {
    margin-left: 12px;
  }

  .solutions-narrative-shell .solution-detail-grid,
  .solutions-narrative-shell .placeholder-detail {
    margin-left: 16px;
    padding: 22px;
  }

  .before-after-studio .comparison-grid {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .solution-rail-link,
  .solutions-narrative-shell .solution-summary,
  .solutions-narrative-shell .solution-copy em {
    transition: none;
  }
}

/* ==========================================================================
   Soluciones - ajuste navegación sticky y detalle
   ========================================================================== */

.solutions-studio-hero {
  padding-bottom: 8px;
}

.solutions-studio-hero .solutions-jump-nav {
  display: none;
}

.solutions-narrative-shell {
  grid-template-columns: minmax(190px, 0.2fr) minmax(0, 1fr);
  gap: clamp(24px, 3.4vw, 46px);
}

.solutions-chapter-nav {
  top: 102px;
  margin-left: -12px;
  padding: 18px;
  border-radius: 24px;
}

.solutions-chapter-nav p {
  margin-bottom: 12px;
  color: #1f2228;
  font-size: 13px;
  font-weight: 900;
}

.solution-rail-link {
  min-height: 42px;
  padding-right: 10px;
  color: #5f646d;
  line-height: 1.22;
}

.solution-rail-link::before {
  background: rgba(17, 17, 19, 0.16);
}

.solution-rail-link.is-active,
.solution-rail-link[aria-current="true"] {
  color: var(--black);
  background: #f5f5f5;
}

.solution-rail-link.is-active::before,
.solution-rail-link[aria-current="true"]::before {
  height: 20px;
  background: var(--orange);
}

.solutions-narrative-shell .solution-panel.is-viewing:not(.is-open) .solution-summary {
  border-color: rgba(253, 79, 0, 0.14);
  box-shadow: 0 26px 74px rgba(17, 17, 19, 0.075);
}

.solutions-narrative-shell .solution-panel.is-viewing:not(.is-open) .solution-icon {
  transform: translateY(-1px);
}

.solutions-narrative-shell .solution-summary {
  scroll-margin-top: 112px;
}

.solutions-narrative-shell .solution-detail-grid {
  align-items: start;
}

.solutions-narrative-shell .solution-detail-grid > div:first-child {
  max-width: 540px;
  padding-right: 10px;
}

.solutions-narrative-shell .solution-detail h2,
.solutions-narrative-shell .placeholder-detail h2 {
  max-width: 640px;
}

.solutions-narrative-shell .detail-lists {
  gap: 14px;
}

.solutions-narrative-shell .detail-lists div {
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(17, 17, 19, 0.055);
  background:
    linear-gradient(180deg, #fbfbfb, #f7f7f7),
    #f7f7f7;
}

.solutions-narrative-shell .detail-lists h3 {
  margin-bottom: 16px;
}

.solutions-narrative-shell .detail-lists ul {
  gap: 10px;
}

.solutions-narrative-shell .detail-lists li {
  padding-left: 22px;
  font-size: 13.5px;
  line-height: 1.42;
}

.solutions-narrative-shell .placeholder-detail {
  max-width: none;
  padding-block: 34px;
}

@media (max-width: 1080px) {
  .solutions-chapter-nav {
    margin-left: 0;
  }
}

/* ==========================================================================
   Soluciones - sticky real y cierre
   ========================================================================== */

.solutions-studio-page {
  overflow: visible;
  padding-bottom: clamp(58px, 6vw, 88px);
}

.solutions-narrative-shell {
  overflow: visible;
  align-items: start;
}

.solutions-chapter-nav {
  align-self: start;
  max-height: none;
  overflow-y: visible;
  overscroll-behavior: auto;
}

@media (max-width: 1080px) {
  .solutions-narrative-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .solutions-chapter-nav {
    position: relative;
    top: auto;
    min-width: 0;
    max-height: none;
    margin-left: 0;
    overflow-y: visible;
  }

  .solutions-chapter-nav nav {
    display: flex;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .solutions-chapter-nav nav::-webkit-scrollbar {
    display: none;
  }

  .solution-rail-link {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

@media (max-width: 760px) {
  .solutions-studio-page {
    padding-bottom: 48px;
  }
}

/* Expanded solution CTA */
.bots-demo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 35px rgba(253, 79, 0, 0.2);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.bots-demo-link:hover,
.bots-demo-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(253, 79, 0, 0.26);
}

@media (prefers-reduced-motion: reduce) {
  .bots-demo-link {
    animation: none;
    transition: none;
  }
}

/* Firsal Bots corporate detail */
.firsal-bots-detail .bots-corporate {
  width: 100%;
  max-width: 100%;
  margin: 8px 0 0 0;
  overflow: hidden;
  border: 1px solid rgba(74, 45, 31, 0.09);
  border-top: 0;
  border-radius: 0 0 30px 30px;
  background:
    linear-gradient(180deg, #fff8f3 0%, #ffffff 20%, #fbfaf8 100%),
    #fff;
  box-shadow:
    0 34px 76px rgba(46, 32, 24, 0.085),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.solutions-narrative-shell .solution-panel-featured.is-open .solution-summary {
  border-bottom-color: rgba(74, 45, 31, 0.07);
  border-bottom-right-radius: 22px;
  border-bottom-left-radius: 22px;
}

.solutions-narrative-shell .solution-panel-featured.is-open .firsal-bots-detail {
  margin-top: 0;
  margin-left: 0;
  border-left: 0;
}

.bots-corporate h2,
.bots-corporate h3,
.bots-corporate h4,
.bots-corporate p {
  margin: 0;
}

.bots-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bots-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.44fr);
  gap: clamp(30px, 4vw, 56px);
  align-items: start;
  padding: clamp(46px, 5.4vw, 82px) clamp(34px, 4.6vw, 64px) clamp(34px, 4.6vw, 62px);
  background:
    linear-gradient(135deg, rgba(255, 241, 233, 0.86), rgba(255, 255, 255, 0.72) 48%),
    linear-gradient(180deg, #fffdfb, #fbfbfb);
}

.bots-overview-copy h2 {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(2.1rem, 3.6vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.bots-overview-copy p,
.bots-section-head p,
.bots-problem-grid p,
.bots-process-line p,
.bots-management-grid p,
.bots-corporate-cta p {
  color: var(--muted);
  line-height: 1.62;
}

.bots-overview-copy p {
  max-width: 660px;
  margin-top: 18px;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
}

.bots-connects {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, #17181c, #111214),
    #111;
  box-shadow: 0 24px 54px rgba(17, 17, 19, 0.14);
}

.bots-connects h3 {
  color: #fff;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.bots-connects div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.bots-connects span,
.bots-benefit-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(74, 45, 31, 0.1);
  border-radius: 999px;
  background: #fffaf7;
  color: #33363d;
  font-size: 0.86rem;
  font-weight: 700;
}

.bots-connects span {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
}

.bots-section {
  padding: clamp(30px, 4.2vw, 56px) clamp(34px, 4.6vw, 64px);
  border-top: 1px solid rgba(74, 45, 31, 0.08);
}

.bots-section-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 0.55fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 26px;
}

.bots-section-head h3 {
  max-width: 520px;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.bots-section-head p {
  max-width: 560px;
  font-size: 0.98rem;
}

.bots-problem-grid,
.bots-management-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.96fr 0.96fr;
  gap: clamp(18px, 2.6vw, 34px);
}

.bots-problem-grid article,
.bots-management-grid article {
  min-height: 132px;
  padding: 6px 6px 6px 22px;
  border: 0;
  border-left: 1px solid rgba(253, 79, 0, 0.22);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.bots-problem-grid article:hover,
.bots-management-grid article:hover {
  transform: translateX(3px);
  border-color: rgba(253, 79, 0, 0.42);
  box-shadow: none;
}

.bots-problem-grid h4,
.bots-management-grid h4,
.bots-process-line h4 {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.bots-problem-grid p,
.bots-management-grid p,
.bots-process-line p {
  margin-top: 10px;
  font-size: 0.9rem;
}

.bots-process {
  background:
    linear-gradient(180deg, #fff7f1, #fffdfb 74%, #ffffff),
    #fff8f3;
}

.bots-process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding-top: 8px;
}

.bots-process-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(253, 79, 0, 0.5), rgba(74, 45, 31, 0.12));
}

.bots-process-line article {
  position: relative;
  padding: 54px 22px 0 0;
}

.bots-process-line article span {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(253, 79, 0, 0.28);
  border-radius: 999px;
  background: #fff;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(253, 79, 0, 0.1);
}

.bots-management-grid {
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px clamp(22px, 3.2vw, 42px);
}

.bots-management-grid article {
  min-height: 104px;
  border-left-color: rgba(74, 45, 31, 0.16);
}

.bots-management-grid article:nth-child(even) {
  margin-top: 18px;
}

.bots-benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bots-benefits {
  background:
    linear-gradient(180deg, #ffffff, #fbfaf8 58%, #fff6f0),
    #fff;
}

.bots-benefit-list span {
  min-height: 40px;
  border-color: rgba(253, 79, 0, 0.14);
  background: #fff6f0;
  box-shadow: 0 10px 24px rgba(46, 32, 24, 0.035);
}

.bots-corporate-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(30px, 4.2vw, 54px) clamp(34px, 4.6vw, 64px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(135deg, #17110f, #111214 64%),
    #111;
  border-radius: 0 0 29px 29px;
}

.bots-corporate-cta h3 {
  color: #fff;
  font-size: clamp(1.5rem, 2.2vw, 2.15rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.bots-corporate-cta p {
  max-width: 620px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.66);
}

.bots-corporate-cta .bots-demo-link {
  white-space: nowrap;
}

@media (max-width: 980px) {
  .bots-overview,
  .bots-section-head,
  .bots-corporate-cta {
    grid-template-columns: 1fr;
  }

  .bots-problem-grid,
  .bots-process-line,
  .bots-management-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .firsal-bots-detail .bots-corporate {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    border-radius: 26px;
  }

  .bots-overview,
  .bots-section,
  .bots-corporate-cta {
    padding: 24px;
  }

  .bots-overview-copy h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .bots-problem-grid,
  .bots-process-line,
  .bots-management-grid {
    grid-template-columns: 1fr;
  }

  .bots-process-line::before {
    left: 21px;
    right: auto;
    top: 8px;
    bottom: 0;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(253, 79, 0, 0.34), rgba(17, 17, 19, 0.08));
  }

  .bots-process-line article {
    min-height: 92px;
    padding: 0 0 0 62px;
  }
}

/* Chatbot WhatsApp y Telegram corporate detail */
.solutions-narrative-shell .solution-panel.is-open .chatbot-detail {
  max-height: 5600px;
}

.chatbot-detail .chatbot-corporate {
  width: 100%;
  max-width: 100%;
  margin: 8px 0 0 0;
  overflow: hidden;
  border: 1px solid rgba(74, 45, 31, 0.09);
  border-top: 0;
  border-radius: 0 0 30px 30px;
  background:
    linear-gradient(180deg, #fff8f3 0%, #ffffff 20%, #fbfaf8 100%),
    #fff;
  box-shadow:
    0 34px 76px rgba(46, 32, 24, 0.085),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.chatbot-corporate h2,
.chatbot-corporate h3,
.chatbot-corporate h4,
.chatbot-corporate p {
  margin: 0;
}

.chatbot-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.chatbot-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.44fr);
  gap: clamp(30px, 4vw, 56px);
  align-items: start;
  padding: clamp(46px, 5.4vw, 82px) clamp(34px, 4.6vw, 64px) clamp(34px, 4.6vw, 62px);
  background:
    linear-gradient(135deg, rgba(255, 241, 233, 0.86), rgba(255, 255, 255, 0.72) 48%),
    linear-gradient(180deg, #fffdfb, #fbfbfb);
}

.chatbot-overview-copy h2 {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(2.1rem, 3.6vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.chatbot-overview-copy p,
.chatbot-section-head p,
.chatbot-problem-grid p,
.chatbot-process-line p,
.chatbot-management-grid p,
.chatbot-corporate-cta p {
  color: var(--muted);
  line-height: 1.62;
}

.chatbot-overview-copy p {
  max-width: 660px;
  margin-top: 18px;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
}

.chatbot-channels {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, #17181c, #111214),
    #111;
  box-shadow: 0 24px 54px rgba(17, 17, 19, 0.14);
}

.chatbot-channels h3 {
  color: #fff;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.chatbot-channels div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.chatbot-channels span,
.chatbot-benefit-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(74, 45, 31, 0.1);
  border-radius: 999px;
  background: #fffaf7;
  color: #33363d;
  font-size: 0.86rem;
  font-weight: 700;
}

.chatbot-channels span {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
}

.chatbot-section {
  padding: clamp(30px, 4.2vw, 56px) clamp(34px, 4.6vw, 64px);
  border-top: 1px solid rgba(74, 45, 31, 0.08);
}

.chatbot-section-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 0.55fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 26px;
}

.chatbot-section-head h3 {
  max-width: 520px;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.chatbot-section-head p {
  max-width: 560px;
  font-size: 0.98rem;
}

.chatbot-problem-grid,
.chatbot-management-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.96fr 0.96fr;
  gap: clamp(18px, 2.6vw, 34px);
}

.chatbot-problem-grid article,
.chatbot-management-grid article {
  min-height: 132px;
  padding: 6px 6px 6px 22px;
  border-left: 1px solid rgba(253, 79, 0, 0.22);
  background: transparent;
  transition: transform 220ms ease, border-color 220ms ease;
}

.chatbot-problem-grid article:hover,
.chatbot-management-grid article:hover {
  transform: translateX(3px);
  border-color: rgba(253, 79, 0, 0.42);
}

.chatbot-problem-grid h4,
.chatbot-management-grid h4,
.chatbot-process-line h4 {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.chatbot-problem-grid p,
.chatbot-management-grid p,
.chatbot-process-line p {
  margin-top: 10px;
  font-size: 0.9rem;
}

.chatbot-process {
  background:
    linear-gradient(180deg, #fff7f1, #fffdfb 74%, #ffffff),
    #fff8f3;
}

.chatbot-process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding-top: 8px;
}

.chatbot-process-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(253, 79, 0, 0.5), rgba(74, 45, 31, 0.12));
}

.chatbot-process-line article {
  position: relative;
  padding: 54px 22px 0 0;
}

.chatbot-process-line article span {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(253, 79, 0, 0.28);
  border-radius: 999px;
  background: #fff;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(253, 79, 0, 0.1);
}

.chatbot-management-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px clamp(22px, 3.2vw, 42px);
}

.chatbot-management-grid article {
  min-height: 104px;
  border-left-color: rgba(74, 45, 31, 0.16);
}

.chatbot-management-grid article:nth-child(even) {
  margin-top: 18px;
}

.chatbot-benefits {
  background:
    linear-gradient(180deg, #ffffff, #fbfaf8 58%, #fff6f0),
    #fff;
}

.chatbot-benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chatbot-benefit-list span {
  min-height: 40px;
  border-color: rgba(253, 79, 0, 0.14);
  background: #fff6f0;
  box-shadow: 0 10px 24px rgba(46, 32, 24, 0.035);
}

.chatbot-corporate-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(30px, 4.2vw, 54px) clamp(34px, 4.6vw, 64px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0 0 29px 29px;
  background:
    linear-gradient(135deg, #17110f, #111214 64%),
    #111;
}

.chatbot-corporate-cta h3 {
  color: #fff;
  font-size: clamp(1.5rem, 2.2vw, 2.15rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.chatbot-corporate-cta p {
  max-width: 620px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.66);
}

@media (max-width: 980px) {
  .chatbot-overview,
  .chatbot-section-head,
  .chatbot-corporate-cta {
    grid-template-columns: 1fr;
  }

  .chatbot-problem-grid,
  .chatbot-process-line,
  .chatbot-management-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .solutions-narrative-shell .solution-panel.is-open .chatbot-detail {
    max-height: 7200px;
  }

  .chatbot-detail .chatbot-corporate {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    border-radius: 26px;
  }

  .chatbot-overview,
  .chatbot-section,
  .chatbot-corporate-cta {
    padding: 24px;
  }

  .chatbot-overview-copy h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .chatbot-problem-grid,
  .chatbot-process-line,
  .chatbot-management-grid {
    grid-template-columns: 1fr;
  }

  .chatbot-process-line::before {
    left: 21px;
    right: auto;
    top: 8px;
    bottom: 0;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(253, 79, 0, 0.34), rgba(17, 17, 19, 0.08));
  }

  .chatbot-process-line article {
    min-height: 92px;
    padding: 0 0 0 62px;
  }
}

/* Desarrollo de Software corporate detail */
.solutions-narrative-shell .solution-panel.is-open .software-detail {
  max-height: 5900px;
}

.software-detail .software-corporate {
  width: 100%;
  max-width: 100%;
  margin: 8px 0 0 0;
  overflow: hidden;
  border: 1px solid rgba(74, 45, 31, 0.09);
  border-top: 0;
  border-radius: 0 0 30px 30px;
  background:
    linear-gradient(180deg, #fff8f3 0%, #ffffff 22%, #fbfaf8 100%),
    #fff;
  box-shadow:
    0 34px 76px rgba(46, 32, 24, 0.085),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.software-corporate h2,
.software-corporate h3,
.software-corporate h4,
.software-corporate p {
  margin: 0;
}

.software-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.software-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.44fr);
  gap: clamp(30px, 4vw, 56px);
  align-items: start;
  padding: clamp(46px, 5.4vw, 82px) clamp(34px, 4.6vw, 64px) clamp(34px, 4.6vw, 62px);
  background:
    linear-gradient(135deg, rgba(255, 241, 233, 0.78), rgba(255, 255, 255, 0.72) 48%),
    linear-gradient(180deg, #fffdfb, #fbfbfb);
}

.software-overview-copy h2 {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(2.1rem, 3.6vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.software-overview-copy p,
.software-section-head p,
.software-problem-grid p,
.software-process-line p,
.software-management-grid p,
.software-corporate-cta p {
  color: var(--muted);
  line-height: 1.62;
}

.software-overview-copy p {
  max-width: 650px;
  margin-top: 18px;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
}

.software-focus {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, #17181c, #111214),
    #111;
  box-shadow: 0 24px 54px rgba(17, 17, 19, 0.14);
}

.software-focus h3 {
  color: #fff;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.software-focus div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.software-focus span,
.software-benefit-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(74, 45, 31, 0.1);
  border-radius: 999px;
  background: #fffaf7;
  color: #33363d;
  font-size: 0.86rem;
  font-weight: 700;
}

.software-focus span {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
}

.software-section {
  padding: clamp(30px, 4.2vw, 56px) clamp(34px, 4.6vw, 64px);
  border-top: 1px solid rgba(74, 45, 31, 0.08);
}

.software-section-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 0.55fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 26px;
}

.software-section-head h3 {
  max-width: 520px;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.software-section-head p {
  max-width: 560px;
  font-size: 0.98rem;
}

.software-problem-grid,
.software-management-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.96fr 0.96fr;
  gap: clamp(18px, 2.6vw, 34px);
}

.software-problem-grid article,
.software-management-grid article {
  min-height: 124px;
  padding: 6px 6px 6px 22px;
  border-left: 1px solid rgba(253, 79, 0, 0.22);
  background: transparent;
  transition: transform 220ms ease, border-color 220ms ease;
}

.software-problem-grid article:hover,
.software-management-grid article:hover {
  transform: translateX(3px);
  border-color: rgba(253, 79, 0, 0.42);
}

.software-problem-grid h4,
.software-management-grid h4,
.software-process-line h4 {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.software-problem-grid p,
.software-management-grid p,
.software-process-line p {
  margin-top: 10px;
  font-size: 0.9rem;
}

.software-process,
.software-connection {
  background:
    linear-gradient(180deg, #fff7f1, #fffdfb 74%, #ffffff),
    #fff8f3;
}

.software-process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding-top: 8px;
}

.software-process-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(253, 79, 0, 0.5), rgba(74, 45, 31, 0.12));
}

.software-process-line article {
  position: relative;
  padding: 54px 22px 0 0;
}

.software-process-line article span {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(253, 79, 0, 0.28);
  border-radius: 999px;
  background: #fff;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(253, 79, 0, 0.1);
}

.software-management-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px clamp(22px, 3.2vw, 42px);
}

.software-management-grid article {
  min-height: 104px;
  border-left-color: rgba(74, 45, 31, 0.16);
}

.software-management-grid article:nth-child(even) {
  margin-top: 18px;
}

.software-system-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(74, 45, 31, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
}

.software-system-map span,
.software-system-map strong {
  display: grid;
  min-height: 72px;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(74, 45, 31, 0.08);
  border-radius: 18px;
  background: #fff;
  color: #33363d;
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
}

.software-system-map strong {
  min-height: 92px;
  border-color: rgba(253, 79, 0, 0.22);
  background: #111214;
  color: #fff;
  box-shadow: 0 18px 36px rgba(17, 17, 19, 0.14);
}

.software-benefits {
  background:
    linear-gradient(180deg, #ffffff, #fbfaf8 58%, #fff6f0),
    #fff;
}

.software-benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.software-benefit-list span {
  min-height: 40px;
  border-color: rgba(253, 79, 0, 0.14);
  background: #fff6f0;
  box-shadow: 0 10px 24px rgba(46, 32, 24, 0.035);
}

.software-corporate-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(30px, 4.2vw, 54px) clamp(34px, 4.6vw, 64px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0 0 29px 29px;
  background:
    linear-gradient(135deg, #17110f, #111214 64%),
    #111;
}

.software-corporate-cta h3 {
  color: #fff;
  font-size: clamp(1.5rem, 2.2vw, 2.15rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.software-corporate-cta p {
  max-width: 620px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.66);
}

.software-corporate-cta .bots-demo-link {
  white-space: nowrap;
}

@media (max-width: 980px) {
  .software-overview,
  .software-section-head,
  .software-corporate-cta {
    grid-template-columns: 1fr;
  }

  .software-problem-grid,
  .software-process-line,
  .software-management-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .software-system-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .software-system-map strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .solutions-narrative-shell .solution-panel.is-open .software-detail {
    max-height: 7600px;
  }

  .software-detail .software-corporate {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    border-radius: 26px;
  }

  .software-overview,
  .software-section,
  .software-corporate-cta {
    padding: 24px;
  }

  .software-overview-copy h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .software-problem-grid,
  .software-process-line,
  .software-management-grid,
  .software-system-map {
    grid-template-columns: 1fr;
  }

  .software-management-grid article:nth-child(even) {
    margin-top: 0;
  }

  .software-process-line::before {
    left: 21px;
    right: auto;
    top: 8px;
    bottom: 0;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(253, 79, 0, 0.34), rgba(17, 17, 19, 0.08));
  }

  .software-process-line article {
    min-height: 92px;
    padding: 0 0 0 62px;
  }
}

/* Aplicaciones Moviles corporate detail */
.solutions-narrative-shell .solution-panel.is-open .mobile-apps-detail {
  max-height: 5400px;
}

.mobile-apps-detail .mobile-apps-corporate {
  width: 100%;
  max-width: 100%;
  margin: 8px 0 0 0;
  overflow: hidden;
  border: 1px solid rgba(74, 45, 31, 0.09);
  border-top: 0;
  border-radius: 0 0 30px 30px;
  background:
    linear-gradient(180deg, #fff8f3 0%, #ffffff 22%, #fbfaf8 100%),
    #fff;
  box-shadow:
    0 34px 76px rgba(46, 32, 24, 0.085),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.mobile-apps-corporate h2,
.mobile-apps-corporate h3,
.mobile-apps-corporate h4,
.mobile-apps-corporate p {
  margin: 0;
}

.mobile-apps-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-apps-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(280px, 0.48fr);
  gap: clamp(30px, 4vw, 56px);
  align-items: start;
  padding: clamp(46px, 5.4vw, 82px) clamp(34px, 4.6vw, 64px) clamp(34px, 4.6vw, 62px);
  background:
    linear-gradient(135deg, rgba(255, 241, 233, 0.74), rgba(255, 255, 255, 0.78) 50%),
    linear-gradient(180deg, #fffdfb, #fbfbfb);
}

.mobile-apps-overview-copy h2 {
  max-width: 780px;
  color: var(--ink);
  font-size: clamp(2.1rem, 3.6vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.mobile-apps-overview-copy p,
.mobile-apps-section-head p,
.mobile-apps-problem-grid p,
.mobile-apps-process-line p,
.mobile-apps-management-grid p,
.mobile-apps-corporate-cta p {
  color: var(--muted);
  line-height: 1.62;
}

.mobile-apps-overview-copy p {
  max-width: 650px;
  margin-top: 18px;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
}

.mobile-apps-focus {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, #17181c, #111214),
    #111;
  box-shadow: 0 24px 54px rgba(17, 17, 19, 0.14);
}

.mobile-apps-focus h3 {
  color: #fff;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.mobile-apps-focus div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.mobile-apps-focus span,
.mobile-apps-benefit-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(74, 45, 31, 0.1);
  border-radius: 999px;
  background: #fffaf7;
  color: #33363d;
  font-size: 0.86rem;
  font-weight: 700;
}

.mobile-apps-focus span {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
}

.mobile-apps-section {
  padding: clamp(30px, 4.2vw, 56px) clamp(34px, 4.6vw, 64px);
  border-top: 1px solid rgba(74, 45, 31, 0.08);
}

.mobile-apps-section-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 0.55fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 26px;
}

.mobile-apps-section-head h3 {
  max-width: 520px;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.mobile-apps-section-head p {
  max-width: 560px;
  font-size: 0.98rem;
}

.mobile-apps-problem-grid,
.mobile-apps-management-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.96fr 0.96fr;
  gap: clamp(18px, 2.6vw, 34px);
}

.mobile-apps-problem-grid article,
.mobile-apps-management-grid article {
  min-height: 116px;
  padding: 6px 6px 6px 22px;
  border-left: 1px solid rgba(253, 79, 0, 0.22);
  background: transparent;
  transition: transform 220ms ease, border-color 220ms ease;
}

.mobile-apps-problem-grid article:hover,
.mobile-apps-management-grid article:hover {
  transform: translateX(3px);
  border-color: rgba(253, 79, 0, 0.42);
}

.mobile-apps-problem-grid h4,
.mobile-apps-management-grid h4,
.mobile-apps-process-line h4 {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.mobile-apps-problem-grid p,
.mobile-apps-management-grid p,
.mobile-apps-process-line p {
  margin-top: 10px;
  font-size: 0.9rem;
}

.mobile-apps-process {
  background:
    linear-gradient(180deg, #fff7f1, #fffdfb 74%, #ffffff),
    #fff8f3;
}

.mobile-apps-process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding-top: 8px;
}

.mobile-apps-process-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(253, 79, 0, 0.5), rgba(74, 45, 31, 0.12));
}

.mobile-apps-process-line article {
  position: relative;
  padding: 54px 22px 0 0;
}

.mobile-apps-process-line article span {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(253, 79, 0, 0.28);
  border-radius: 999px;
  background: #fff;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(253, 79, 0, 0.1);
}

.mobile-apps-management-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px clamp(22px, 3.2vw, 42px);
}

.mobile-apps-management-grid article {
  min-height: 104px;
  border-left-color: rgba(74, 45, 31, 0.16);
}

.mobile-apps-management-grid article:nth-child(even) {
  margin-top: 18px;
}

.mobile-apps-benefits {
  background:
    linear-gradient(180deg, #ffffff, #fbfaf8 58%, #fff6f0),
    #fff;
}

.mobile-apps-benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mobile-apps-benefit-list span {
  min-height: 40px;
  border-color: rgba(253, 79, 0, 0.14);
  background: #fff6f0;
  box-shadow: 0 10px 24px rgba(46, 32, 24, 0.035);
}

.mobile-apps-corporate-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(30px, 4.2vw, 54px) clamp(34px, 4.6vw, 64px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0 0 29px 29px;
  background:
    linear-gradient(135deg, #17110f, #111214 64%),
    #111;
}

.mobile-apps-corporate-cta h3 {
  color: #fff;
  font-size: clamp(1.5rem, 2.2vw, 2.15rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.mobile-apps-corporate-cta p {
  max-width: 620px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.66);
}

.mobile-apps-corporate-cta .bots-demo-link {
  white-space: nowrap;
}

@media (max-width: 980px) {
  .mobile-apps-overview,
  .mobile-apps-section-head,
  .mobile-apps-corporate-cta {
    grid-template-columns: 1fr;
  }

  .mobile-apps-problem-grid,
  .mobile-apps-process-line,
  .mobile-apps-management-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .solutions-narrative-shell .solution-panel.is-open .mobile-apps-detail {
    max-height: 7000px;
  }

  .mobile-apps-detail .mobile-apps-corporate {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    border-radius: 26px;
  }

  .mobile-apps-overview,
  .mobile-apps-section,
  .mobile-apps-corporate-cta {
    padding: 24px;
  }

  .mobile-apps-overview-copy h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .mobile-apps-problem-grid,
  .mobile-apps-process-line,
  .mobile-apps-management-grid {
    grid-template-columns: 1fr;
  }

  .mobile-apps-management-grid article:nth-child(even) {
    margin-top: 0;
  }

  .mobile-apps-process-line::before {
    left: 21px;
    right: auto;
    top: 8px;
    bottom: 0;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(253, 79, 0, 0.34), rgba(17, 17, 19, 0.08));
  }

  .mobile-apps-process-line article {
    min-height: 92px;
    padding: 0 0 0 62px;
  }
}

/* Automatizacion e IA corporate detail */
.solutions-narrative-shell .solution-panel.is-open .automation-detail {
  max-height: 6700px;
}

.automation-detail .automation-corporate {
  width: 100%;
  max-width: 100%;
  margin: 8px 0 0 0;
  overflow: hidden;
  border: 1px solid rgba(74, 45, 31, 0.09);
  border-top: 0;
  border-radius: 0 0 30px 30px;
  background:
    linear-gradient(180deg, #fff8f3 0%, #ffffff 22%, #fbfaf8 100%),
    #fff;
  box-shadow:
    0 34px 76px rgba(46, 32, 24, 0.085),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.automation-corporate h2,
.automation-corporate h3,
.automation-corporate h4,
.automation-corporate p {
  margin: 0;
}

.automation-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.automation-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.44fr);
  gap: clamp(30px, 4vw, 56px);
  align-items: start;
  padding: clamp(46px, 5.4vw, 82px) clamp(34px, 4.6vw, 64px) clamp(34px, 4.6vw, 62px);
  background:
    linear-gradient(135deg, rgba(255, 241, 233, 0.78), rgba(255, 255, 255, 0.72) 48%),
    linear-gradient(180deg, #fffdfb, #fbfbfb);
}

.automation-overview-copy h2 {
  max-width: 790px;
  color: var(--ink);
  font-size: clamp(2.1rem, 3.6vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.automation-overview-copy p,
.automation-section-head p,
.automation-problem-grid p,
.automation-process-line p,
.automation-management-grid p,
.automation-corporate-cta p,
.automation-roadmap p {
  color: var(--muted);
  line-height: 1.62;
}

.automation-overview-copy p {
  max-width: 660px;
  margin-top: 18px;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
}

.automation-focus {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, #17181c, #111214),
    #111;
  box-shadow: 0 24px 54px rgba(17, 17, 19, 0.14);
}

.automation-focus h3 {
  color: #fff;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.automation-focus div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.automation-focus span,
.automation-benefit-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(74, 45, 31, 0.1);
  border-radius: 999px;
  background: #fffaf7;
  color: #33363d;
  font-size: 0.86rem;
  font-weight: 700;
}

.automation-focus span {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
}

.automation-section {
  padding: clamp(30px, 4.2vw, 56px) clamp(34px, 4.6vw, 64px);
  border-top: 1px solid rgba(74, 45, 31, 0.08);
}

.automation-section-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 0.55fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 26px;
}

.automation-section-head h3 {
  max-width: 530px;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.automation-section-head p {
  max-width: 560px;
  font-size: 0.98rem;
}

.automation-problem-grid,
.automation-management-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.96fr 0.96fr;
  gap: clamp(18px, 2.6vw, 34px);
}

.automation-problem-grid article,
.automation-management-grid article {
  min-height: 122px;
  padding: 6px 6px 6px 22px;
  border-left: 1px solid rgba(253, 79, 0, 0.22);
  background: transparent;
  transition: transform 220ms ease, border-color 220ms ease;
}

.automation-problem-grid article:hover,
.automation-management-grid article:hover {
  transform: translateX(3px);
  border-color: rgba(253, 79, 0, 0.42);
}

.automation-problem-grid h4,
.automation-management-grid h4,
.automation-process-line h4 {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.automation-problem-grid p,
.automation-management-grid p,
.automation-process-line p {
  margin-top: 10px;
  font-size: 0.9rem;
}

.automation-process,
.automation-agent-note {
  background:
    linear-gradient(180deg, #fff7f1, #fffdfb 74%, #ffffff),
    #fff8f3;
}

.automation-process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding-top: 8px;
}

.automation-process-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(253, 79, 0, 0.5), rgba(74, 45, 31, 0.12));
}

.automation-process-line article {
  position: relative;
  padding: 54px 22px 0 0;
}

.automation-process-line article span {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(253, 79, 0, 0.28);
  border-radius: 999px;
  background: #fff;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(253, 79, 0, 0.1);
}

.automation-management-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px clamp(22px, 3.2vw, 42px);
}

.automation-management-grid article {
  min-height: 104px;
  border-left-color: rgba(74, 45, 31, 0.16);
}

.automation-management-grid article:nth-child(even) {
  margin-top: 18px;
}

.automation-benefits {
  background:
    linear-gradient(180deg, #ffffff, #fbfaf8 58%, #fff6f0),
    #fff;
}

.automation-benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.automation-benefit-list span {
  min-height: 40px;
  border-color: rgba(253, 79, 0, 0.14);
  background: #fff6f0;
  box-shadow: 0 10px 24px rgba(46, 32, 24, 0.035);
}

.automation-roadmap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.8fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
  padding: clamp(34px, 4.6vw, 64px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, #111723, #111214 64%),
    #111214;
}

.automation-roadmap-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(253, 79, 0, 0.34);
  border-radius: 999px;
  color: #ffb38f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.automation-roadmap h3 {
  margin-top: 16px;
  color: #fff;
  font-size: clamp(1.7rem, 2.8vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.automation-roadmap p {
  max-width: 680px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.98rem;
}

.automation-roadmap-panel {
  display: grid;
  gap: 12px;
}

.automation-roadmap-panel div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.automation-roadmap-panel h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.automation-roadmap-panel span {
  display: block;
  padding: 9px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.automation-corporate-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(30px, 4.2vw, 54px) clamp(34px, 4.6vw, 64px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0 0 29px 29px;
  background:
    linear-gradient(135deg, #17110f, #111214 64%),
    #111;
}

.automation-corporate-cta h3 {
  color: #fff;
  font-size: clamp(1.5rem, 2.2vw, 2.15rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.automation-corporate-cta p {
  max-width: 620px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.66);
}

.automation-corporate-cta small {
  display: block;
  max-width: 620px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.84rem;
  line-height: 1.55;
}

.automation-corporate-cta .bots-demo-link {
  white-space: nowrap;
}

@media (max-width: 980px) {
  .automation-overview,
  .automation-section-head,
  .automation-roadmap,
  .automation-corporate-cta {
    grid-template-columns: 1fr;
  }

  .automation-problem-grid,
  .automation-process-line,
  .automation-management-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .solutions-narrative-shell .solution-panel.is-open .automation-detail {
    max-height: 8600px;
  }

  .automation-detail .automation-corporate {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    border-radius: 26px;
  }

  .automation-overview,
  .automation-section,
  .automation-roadmap,
  .automation-corporate-cta {
    padding: 24px;
  }

  .automation-overview-copy h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .automation-problem-grid,
  .automation-process-line,
  .automation-management-grid {
    grid-template-columns: 1fr;
  }

  .automation-management-grid article:nth-child(even) {
    margin-top: 0;
  }

  .automation-process-line::before {
    left: 21px;
    right: auto;
    top: 8px;
    bottom: 0;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(253, 79, 0, 0.34), rgba(17, 17, 19, 0.08));
  }

  .automation-process-line article {
    min-height: 92px;
    padding: 0 0 0 62px;
  }
}

/* Seguridad Digital corporate detail */
.solutions-narrative-shell .solution-panel.is-open .security-detail {
  max-height: 5400px;
}

.security-detail .security-corporate {
  width: 100%;
  max-width: 100%;
  margin: 8px 0 0 0;
  overflow: hidden;
  border: 1px solid rgba(74, 45, 31, 0.09);
  border-top: 0;
  border-radius: 0 0 30px 30px;
  background:
    linear-gradient(180deg, #fff8f3 0%, #ffffff 22%, #fbfaf8 100%),
    #fff;
  box-shadow:
    0 34px 76px rgba(46, 32, 24, 0.085),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.security-corporate h2,
.security-corporate h3,
.security-corporate h4,
.security-corporate p {
  margin: 0;
}

.security-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.security-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.44fr);
  gap: clamp(30px, 4vw, 56px);
  align-items: start;
  padding: clamp(46px, 5.4vw, 82px) clamp(34px, 4.6vw, 64px) clamp(34px, 4.6vw, 62px);
  background:
    linear-gradient(135deg, rgba(255, 241, 233, 0.78), rgba(255, 255, 255, 0.72) 48%),
    linear-gradient(180deg, #fffdfb, #fbfbfb);
}

.security-overview-copy h2 {
  max-width: 790px;
  color: var(--ink);
  font-size: clamp(2.1rem, 3.6vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.security-overview-copy p,
.security-section-head p,
.security-risk-grid p,
.security-process-line p,
.security-solution-grid p,
.security-corporate-cta p {
  color: var(--muted);
  line-height: 1.62;
}

.security-overview-copy p {
  max-width: 660px;
  margin-top: 18px;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
}

.security-focus {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, #17181c, #111214),
    #111;
  box-shadow: 0 24px 54px rgba(17, 17, 19, 0.14);
}

.security-focus h3 {
  color: #fff;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.security-focus div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.security-focus span,
.security-benefit-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(74, 45, 31, 0.1);
  border-radius: 999px;
  background: #fffaf7;
  color: #33363d;
  font-size: 0.86rem;
  font-weight: 700;
}

.security-focus span {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
}

.security-section {
  padding: clamp(30px, 4.2vw, 56px) clamp(34px, 4.6vw, 64px);
  border-top: 1px solid rgba(74, 45, 31, 0.08);
}

.security-section-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 0.55fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 26px;
}

.security-section-head h3 {
  max-width: 530px;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.security-section-head p {
  max-width: 560px;
  font-size: 0.98rem;
}

.security-risk-grid,
.security-solution-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.96fr 0.96fr;
  gap: clamp(18px, 2.6vw, 34px);
}

.security-risk-grid article,
.security-solution-grid article {
  min-height: 122px;
  padding: 6px 6px 6px 22px;
  border-left: 1px solid rgba(253, 79, 0, 0.22);
  background: transparent;
  transition: transform 220ms ease, border-color 220ms ease;
}

.security-risk-grid article:hover,
.security-solution-grid article:hover {
  transform: translateX(3px);
  border-color: rgba(253, 79, 0, 0.42);
}

.security-risk-grid h4,
.security-solution-grid h4,
.security-process-line h4 {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.security-risk-grid p,
.security-solution-grid p,
.security-process-line p {
  margin-top: 10px;
  font-size: 0.9rem;
}

.security-process {
  background:
    linear-gradient(180deg, #fff7f1, #fffdfb 74%, #ffffff),
    #fff8f3;
}

.security-process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding-top: 8px;
}

.security-process-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(253, 79, 0, 0.5), rgba(74, 45, 31, 0.12));
}

.security-process-line article {
  position: relative;
  padding: 54px 22px 0 0;
}

.security-process-line article span {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(253, 79, 0, 0.28);
  border-radius: 999px;
  background: #fff;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(253, 79, 0, 0.1);
}

.security-solution-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px clamp(22px, 3.2vw, 42px);
}

.security-solution-grid article {
  min-height: 104px;
  border-left-color: rgba(74, 45, 31, 0.16);
}

.security-solution-grid article:nth-child(even) {
  margin-top: 18px;
}

.security-benefits {
  background:
    linear-gradient(180deg, #ffffff, #fbfaf8 58%, #fff6f0),
    #fff;
}

.security-benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.security-benefit-list span {
  min-height: 40px;
  border-color: rgba(253, 79, 0, 0.14);
  background: #fff6f0;
  box-shadow: 0 10px 24px rgba(46, 32, 24, 0.035);
}

.security-corporate-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(30px, 4.2vw, 54px) clamp(34px, 4.6vw, 64px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0 0 29px 29px;
  background:
    linear-gradient(135deg, #17110f, #111214 64%),
    #111;
}

.security-corporate-cta h3 {
  color: #fff;
  font-size: clamp(1.5rem, 2.2vw, 2.15rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.security-corporate-cta p {
  max-width: 620px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.66);
}

.security-corporate-cta .bots-demo-link {
  white-space: nowrap;
}

.solution-personalization-note {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(253, 79, 0, 0.16);
  border-left: 3px solid rgba(253, 79, 0, 0.7);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 247, 242, 0.92), rgba(255, 255, 255, 0.82)),
    #fffaf7;
  box-shadow: 0 16px 34px rgba(46, 32, 24, 0.045);
}

.solution-personalization-note p {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.35vw, 1.24rem);
  font-weight: 750;
  line-height: 1.42;
  letter-spacing: -0.025em;
}

/* Unified expanded solution presentation */
.solutions-narrative-shell .solution-panel.is-open .solution-detail {
  max-height: 9000px;
  margin-left: 0;
  border-left: 0;
  transform: translateY(0);
}

.solutions-narrative-shell .solution-panel.is-open .solution-summary {
  border-bottom-right-radius: 34px;
  border-bottom-left-radius: 34px;
}

.firsal-bots-detail .bots-corporate,
.chatbot-detail .chatbot-corporate,
.software-detail .software-corporate,
.mobile-apps-detail .mobile-apps-corporate,
.automation-detail .automation-corporate,
.security-detail .security-corporate {
  margin: 14px 0 0;
  overflow: hidden;
  border: 1px solid rgba(45, 34, 28, 0.13);
  border-radius: 30px;
  background:
    linear-gradient(180deg, #fffaf6 0%, #ffffff 16%, #f7f7f6 100%),
    #fff;
  box-shadow:
    0 28px 74px rgba(22, 18, 16, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.bots-section-head .bots-kicker,
.chatbot-section-head .chatbot-kicker {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.bots-managed .bots-section-head,
.chatbot-managed .chatbot-section-head,
.software-section[aria-labelledby="software-examples-title"] .software-section-head,
.mobile-apps-section[aria-labelledby="mobile-apps-examples-title"] .mobile-apps-section-head,
.automation-section[aria-labelledby="automation-examples-title"] .automation-section-head,
.security-section[aria-labelledby="security-examples-title"] .security-section-head {
  display: block;
  max-width: 780px;
}

.bots-managed .bots-section-head h3,
.chatbot-managed .chatbot-section-head h3,
.software-section[aria-labelledby="software-examples-title"] .software-section-head h3,
.mobile-apps-section[aria-labelledby="mobile-apps-examples-title"] .mobile-apps-section-head h3,
.automation-section[aria-labelledby="automation-examples-title"] .automation-section-head h3,
.security-section[aria-labelledby="security-examples-title"] .security-section-head h3 {
  max-width: 720px;
}

.bots-managed .bots-section-head p,
.chatbot-managed .chatbot-section-head p,
.software-section[aria-labelledby="software-examples-title"] .software-section-head p,
.mobile-apps-section[aria-labelledby="mobile-apps-examples-title"] .mobile-apps-section-head p,
.automation-section[aria-labelledby="automation-examples-title"] .automation-section-head p,
.security-section[aria-labelledby="security-examples-title"] .security-section-head p {
  max-width: 680px;
  margin-top: 12px;
  color: #4a4d54;
}

.bots-management-grid,
.chatbot-management-grid,
.software-management-grid,
.mobile-apps-management-grid,
.automation-management-grid,
.security-solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 178px), 1fr));
  gap: 12px;
  align-items: stretch;
}

.bots-management-grid article,
.chatbot-management-grid article,
.software-management-grid article,
.mobile-apps-management-grid article,
.automation-management-grid article,
.security-solution-grid article {
  display: flex;
  align-items: center;
  min-height: 64px;
  margin-top: 0;
  padding: 15px 16px;
  border: 1px solid rgba(34, 28, 24, 0.1);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(249, 247, 245, 0.84)),
    #fff;
  box-shadow:
    0 10px 24px rgba(46, 32, 24, 0.032),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.bots-management-grid article:nth-child(even),
.chatbot-management-grid article:nth-child(even),
.software-management-grid article:nth-child(even),
.mobile-apps-management-grid article:nth-child(even),
.automation-management-grid article:nth-child(even),
.security-solution-grid article:nth-child(even) {
  margin-top: 0;
}

.bots-management-grid article:hover,
.chatbot-management-grid article:hover,
.software-management-grid article:hover,
.mobile-apps-management-grid article:hover,
.automation-management-grid article:hover,
.security-solution-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(253, 79, 0, 0.24);
  box-shadow:
    0 16px 34px rgba(46, 32, 24, 0.065),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.bots-management-grid h4,
.chatbot-management-grid h4,
.software-management-grid h4,
.mobile-apps-management-grid h4,
.automation-management-grid h4,
.security-solution-grid h4 {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.22;
  text-wrap: balance;
}

.bots-management-grid h4::before,
.chatbot-management-grid h4::before,
.software-management-grid h4::before,
.mobile-apps-management-grid h4::before,
.automation-management-grid h4::before,
.security-solution-grid h4::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(253, 79, 0, 0.08);
}

.bots-managed,
.chatbot-managed,
.software-section[aria-labelledby="software-examples-title"],
.mobile-apps-section[aria-labelledby="mobile-apps-examples-title"],
.automation-section[aria-labelledby="automation-examples-title"],
.security-section[aria-labelledby="security-examples-title"] {
  background:
    linear-gradient(180deg, #ffffff, #f8f7f5),
    #f8f7f5;
}

.bots-connects,
.chatbot-channels,
.software-focus,
.mobile-apps-focus,
.automation-focus,
.security-focus {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, #18191d, #101113),
    #111;
  box-shadow: 0 24px 54px rgba(17, 17, 19, 0.16);
}

.solution-personalization-note {
  position: relative;
  padding: clamp(18px, 2.4vw, 26px) clamp(20px, 3vw, 30px);
  border-color: rgba(253, 79, 0, 0.22);
  border-left-width: 0;
  background:
    linear-gradient(135deg, #17110f, #111214 68%),
    #111;
  box-shadow: none;
}

.solution-personalization-note::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  width: 4px;
  border-radius: 999px;
  background: var(--orange);
}

.solution-personalization-note p {
  max-width: 900px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.98rem, 1.2vw, 1.14rem);
  line-height: 1.38;
}

.bots-corporate-cta,
.chatbot-corporate-cta,
.software-corporate-cta,
.mobile-apps-corporate-cta,
.automation-corporate-cta,
.security-corporate-cta {
  margin: 0;
  border-radius: 0 0 29px 29px;
}

@media (min-width: 1100px) {
  .chatbot-management-grid,
  .security-solution-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .bots-management-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .software-management-grid,
  .mobile-apps-management-grid,
  .automation-management-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .security-overview,
  .security-section-head,
  .security-corporate-cta {
    grid-template-columns: 1fr;
  }

  .security-risk-grid,
  .security-process-line,
  .security-solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .solutions-narrative-shell .solution-panel.is-open .security-detail {
    max-height: 7000px;
  }

  .security-detail .security-corporate {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    border-radius: 26px;
  }

  .security-overview,
  .security-section,
  .security-corporate-cta {
    padding: 24px;
  }

  .security-overview-copy h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .security-risk-grid,
  .security-process-line,
  .security-solution-grid {
    grid-template-columns: 1fr;
  }

  .security-solution-grid article:nth-child(even) {
    margin-top: 0;
  }

  .security-process-line::before {
    left: 21px;
    right: auto;
    top: 8px;
    bottom: 0;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(253, 79, 0, 0.34), rgba(17, 17, 19, 0.08));
  }

  .security-process-line article {
    min-height: 92px;
    padding: 0 0 0 62px;
  }
}

/* ==========================================================================
   Sobre Firsal en Home
   ========================================================================== */

.home-about {
  overflow: hidden;
  position: relative;
  isolation: isolate;
  width: min(var(--page-width), calc(100% - 32px));
  margin: 0 auto 32px;
  padding: 60px 68px 62px;
  color: #ffffff;
  background:
    radial-gradient(circle at 84% 60%, rgba(253, 79, 0, 0.075), transparent 30%),
    #111113;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
}

.home-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
}

.home-about-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.home-about h2 {
  margin: 0;
  color: var(--orange);
  font-size: clamp(36px, 3.2vw, 44px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.home-about-content p {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

.home-about .btn {
  margin-top: 24px;
  min-height: 48px;
}

@media (max-width: 900px) {
  .home-about {
    padding: 58px 48px 60px;
  }

  .home-about h2 {
    font-size: 39px;
  }

  .home-about-content p {
    max-width: 700px;
  }
}

@media (max-width: 560px) {
  .home-about {
    padding: 44px 24px 46px;
    border-radius: 20px;
  }

  .home-about h2 {
    font-size: 34px;
  }

  .home-about-content p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.65;
  }

  .home-about .btn {
    margin-top: 22px;
    width: 100%;
  }
}

/* ==========================================================================
   Estilos institucionales heredados
   ========================================================================== */

.about-body {
  background: #f6f6f4;
}

.about-page {
  overflow: hidden;
  background: #ffffff;
}

.about-kicker {
  display: block;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-hero {
  padding: 92px 16px 104px;
  background: #f6f6f4;
}

.about-hero-inner {
  width: min(var(--page-width), 100%);
  min-height: 570px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: center;
  gap: clamp(48px, 7vw, 104px);
}

.about-hero-copy {
  position: relative;
  z-index: 2;
}

.about-hero-copy h1 {
  max-width: 780px;
  margin: 20px 0 0;
  color: var(--black);
  font-size: 72px;
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.about-hero-copy > p {
  max-width: 620px;
  margin: 28px 0 0;
  color: #555961;
  font-size: 18px;
  line-height: 1.68;
  text-wrap: pretty;
}

.about-hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.about-hero-actions .btn {
  min-height: 50px;
  padding-inline: 22px;
}

.about-text-link,
.about-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 750;
  transition: color 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-text-link span,
.about-cta-link span {
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-text-link:hover,
.about-text-link:focus-visible,
.about-cta-link:hover,
.about-cta-link:focus-visible {
  color: var(--orange-dark);
}

.about-text-link:hover span,
.about-text-link:focus-visible span,
.about-cta-link:hover span,
.about-cta-link:focus-visible span {
  transform: translateX(4px);
}

.about-system {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 1;
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 19, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(17, 17, 19, 0.08);
}

.about-system-grid {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(17, 17, 19, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 19, 0.055) 1px, transparent 1px);
  background-size: 50px 50px;
}

.about-system::before,
.about-system::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.about-system::before {
  inset: 13%;
  border: 1px solid rgba(253, 79, 0, 0.18);
  border-radius: 50%;
}

.about-system::after {
  inset: 25%;
  border: 1px solid rgba(17, 17, 19, 0.1);
  border-radius: 50%;
}

.about-system-line {
  position: absolute;
  z-index: 1;
  background: rgba(17, 17, 19, 0.12);
}

.line-horizontal {
  top: 50%;
  left: 12%;
  right: 12%;
  height: 1px;
}

.line-vertical {
  top: 12%;
  bottom: 12%;
  left: 50%;
  width: 1px;
}

.about-system-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 174px;
  height: 174px;
  padding: 34px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid rgba(17, 17, 19, 0.1);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 22px 50px rgba(17, 17, 19, 0.12);
  transform: translate(-50%, -50%);
}

.about-system-core img {
  width: 102px;
  height: auto;
}

.about-system-core span {
  color: #6a6d73;
  font-size: 11px;
  font-weight: 750;
  text-align: center;
}

.about-system-node {
  position: absolute;
  z-index: 4;
  min-height: 34px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 17, 19, 0.1);
  border-radius: 999px;
  color: #35383e;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(17, 17, 19, 0.08);
  font-size: 12px;
  font-weight: 750;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 560ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-hero.is-visible .about-system-node {
  opacity: 1;
  transform: translateY(0);
}

.node-processes {
  top: 8%;
  left: 50%;
  transform: translate(-50%, 10px);
}

.about-hero.is-visible .node-processes {
  transform: translate(-50%, 0);
}

.node-people {
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  transition-delay: 90ms;
}

.node-goals {
  bottom: 8%;
  left: 50%;
  transform: translate(-50%, 10px);
  transition-delay: 180ms;
}

.about-hero.is-visible .node-goals {
  transform: translate(-50%, 0);
}

.node-operation {
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  transition-delay: 270ms;
}

.about-belief,
.about-mission {
  width: min(var(--page-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 116px 0 124px;
  display: grid;
  grid-template-columns: 90px minmax(0, 1.2fr) minmax(300px, 0.72fr);
  align-items: start;
  gap: 48px;
}

.about-section-index {
  color: #b6b7ba;
  font-size: 13px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.about-belief h2,
.about-mission h2 {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--black);
  font-size: 48px;
  font-weight: 720;
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

.about-belief > p,
.about-mission > p {
  margin: 30px 0 0;
  color: #5f6269;
  font-size: 17px;
  line-height: 1.72;
  text-wrap: pretty;
}

.about-capabilities {
  padding: 116px 16px 126px;
  background: #f6f6f4;
}

.about-section-heading {
  width: min(var(--page-width), 100%);
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  align-items: end;
  gap: 72px;
}

.about-section-heading h2,
.about-process-intro h2 {
  max-width: 780px;
  margin: 16px 0 0;
  color: var(--black);
  font-size: 52px;
  font-weight: 730;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.about-section-heading > p,
.about-process-intro > p {
  margin: 0;
  color: #60636a;
  font-size: 16px;
  line-height: 1.7;
}

.about-capability-list {
  width: min(var(--page-width), 100%);
  margin: 0 auto;
  border-top: 1px solid rgba(17, 17, 19, 0.12);
}

.about-capability {
  padding: 42px 0;
  display: grid;
  grid-template-columns: 70px minmax(260px, 0.88fr) minmax(320px, 1.12fr);
  gap: 32px;
  border-bottom: 1px solid rgba(17, 17, 19, 0.12);
}

.about-capability-number {
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.about-capability h3 {
  margin: 0;
  color: var(--black);
  font-size: 25px;
  font-weight: 720;
  line-height: 1.15;
  letter-spacing: 0;
}

.about-capability div p {
  max-width: 440px;
  margin: 12px 0 0;
  color: #676a70;
  font-size: 14px;
  line-height: 1.65;
}

.about-capability ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  list-style: none;
}

.about-capability li {
  position: relative;
  padding-left: 18px;
  color: #303238;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
}

.about-capability li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.about-process {
  width: min(var(--page-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 124px 0 132px;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 84px;
}

.about-process-intro {
  position: sticky;
  top: 112px;
  align-self: start;
}

.about-process-intro h2 {
  font-size: 46px;
}

.about-process-intro > p {
  max-width: 460px;
  margin-top: 24px;
}

.about-process-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(17, 17, 19, 0.12);
  list-style: none;
  counter-reset: process;
}

.about-process-steps li {
  min-height: 154px;
  padding: 34px 0;
  display: grid;
  grid-template-columns: 54px 170px minmax(0, 1fr);
  align-items: start;
  gap: 24px;
  border-bottom: 1px solid rgba(17, 17, 19, 0.12);
  transition:
    padding-left 320ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-process-steps li:hover {
  padding-left: 12px;
  border-color: rgba(253, 79, 0, 0.36);
}

.about-process-steps li > span {
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.about-process-steps h3 {
  margin: 0;
  color: var(--black);
  font-size: 23px;
  font-weight: 720;
  letter-spacing: 0;
}

.about-process-steps p {
  margin: 0;
  color: #62656b;
  font-size: 15px;
  line-height: 1.65;
}

.about-principle {
  padding: 0 16px;
  color: #ffffff;
  background: #111114;
}

.about-principle-inner {
  position: relative;
  width: min(var(--page-width), 100%);
  min-height: 570px;
  margin: 0 auto;
  padding: 110px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 90px;
  overflow: hidden;
}

.about-principle .about-kicker {
  color: #ff7a3d;
}

.about-principle h2 {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 20px 0 0;
  color: #ffffff;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.about-principle p {
  position: relative;
  z-index: 2;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.72;
}

.about-principle-mark {
  position: absolute;
  top: 50%;
  right: 5%;
  color: rgba(255, 255, 255, 0.035);
  font-size: 420px;
  font-weight: 850;
  line-height: 0.8;
  transform: translateY(-50%);
  user-select: none;
}

.about-mission {
  padding-top: 128px;
  padding-bottom: 134px;
}

.about-mission h2 {
  max-width: 820px;
}

.about-cta {
  padding: 86px max(16px, calc((100vw - var(--page-width)) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 64px;
  color: #ffffff;
  background: #18181b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-cta > div:first-child > span {
  color: #ff7a3d;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-cta h2 {
  max-width: 850px;
  margin: 16px 0 0;
  color: #ffffff;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}

.about-cta-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.about-cta-link {
  color: #ffffff;
}

.about-body .main-nav > a[aria-current="page"] {
  color: var(--black);
  background: #f1efec;
}

@media (max-width: 1024px) {
  .about-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 46px;
  }

  .about-hero-copy h1 {
    font-size: 58px;
  }

  .about-belief,
  .about-mission {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 32px;
  }

  .about-belief > p,
  .about-mission > p {
    grid-column: 2;
    max-width: 680px;
    margin-top: 0;
  }

  .about-capability {
    grid-template-columns: 54px minmax(230px, 0.78fr) minmax(300px, 1.22fr);
  }

  .about-process {
    gap: 54px;
  }

  .about-process-steps li {
    grid-template-columns: 44px 130px minmax(0, 1fr);
  }

  .about-principle-inner {
    min-height: 520px;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
    gap: 54px;
  }

  .about-principle h2 {
    font-size: 50px;
  }
}

@media (max-width: 800px) {
  .about-hero {
    padding-top: 76px;
    padding-bottom: 88px;
  }

  .about-hero-inner {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .about-hero-copy h1 {
    max-width: 680px;
    font-size: 54px;
  }

  .about-system {
    width: min(100%, 540px);
    justify-self: center;
  }

  .about-belief,
  .about-mission {
    padding: 94px 0 100px;
  }

  .about-belief h2,
  .about-mission h2,
  .about-section-heading h2 {
    font-size: 42px;
  }

  .about-section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-capability {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .about-capability ul {
    grid-column: 2;
  }

  .about-process {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .about-process-intro {
    position: static;
  }

  .about-principle-inner {
    min-height: 0;
    padding: 96px 0;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-principle h2 {
    font-size: 46px;
  }

  .about-principle p {
    max-width: 620px;
  }

  .about-principle-mark {
    right: -4%;
    font-size: 340px;
  }

  .about-cta {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .about-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .about-hero {
    padding: 58px 16px 72px;
  }

  .about-hero-copy h1 {
    font-size: 42px;
    line-height: 1.02;
  }

  .about-hero-copy > p {
    margin-top: 22px;
    font-size: 16px;
  }

  .about-hero-actions {
    margin-top: 30px;
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .about-hero-actions .btn {
    width: 100%;
  }

  .about-text-link {
    justify-content: center;
  }

  .about-system-core {
    width: 138px;
    height: 138px;
    padding: 28px 18px 20px;
  }

  .about-system-core img {
    width: 82px;
  }

  .about-system-node {
    min-height: 30px;
    padding-inline: 11px;
    font-size: 10px;
  }

  .about-belief,
  .about-mission {
    padding: 78px 0 84px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-belief > p,
  .about-mission > p {
    grid-column: 1;
    margin-top: 6px;
  }

  .about-belief h2,
  .about-mission h2,
  .about-section-heading h2,
  .about-process-intro h2 {
    font-size: 36px;
  }

  .about-capabilities {
    padding: 80px 16px 88px;
  }

  .about-section-heading {
    margin-bottom: 46px;
  }

  .about-capability {
    padding: 34px 0;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-capability ul {
    grid-column: 1;
    grid-template-columns: 1fr;
  }

  .about-process {
    padding: 84px 0 92px;
  }

  .about-process-steps li {
    min-height: 0;
    padding: 28px 0;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px 16px;
  }

  .about-process-steps li:hover {
    padding-left: 0;
  }

  .about-process-steps p {
    grid-column: 2;
  }

  .about-principle-inner {
    padding: 78px 0 84px;
  }

  .about-principle h2 {
    font-size: 38px;
  }

  .about-principle-mark {
    right: -12%;
    font-size: 260px;
  }

  .about-cta {
    padding-top: 70px;
    padding-bottom: 76px;
  }

  .about-cta h2 {
    font-size: 36px;
  }

  .about-cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .about-cta-actions .btn {
    width: 100%;
  }

  .about-cta-link {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-system-node,
  .about-text-link,
  .about-text-link span,
  .about-cta-link,
  .about-cta-link span,
  .about-process-steps li {
    transition: none;
  }
}

/* ==========================================================================
   Correcciones responsive posteriores al despliegue
   ========================================================================== */

@media (max-width: 900px) and (min-width: 761px) {
  .solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solutions .solution-card:nth-child(n) {
    min-width: 0;
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .solutions-studio-page [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .solutions-narrative-shell .solution-visual {
    border: 1px solid rgba(253, 79, 0, 0.08);
    background-color: #fff7f1;
  }

  .solutions-narrative-shell .solution-visual::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 28px;
    border: 2px solid rgba(253, 79, 0, 0.14);
    border-top-color: var(--orange);
    border-radius: 50%;
    opacity: 0.72;
    transform: translate(-50%, -50%);
    animation: solution-image-loading 900ms linear infinite;
    transition: opacity 180ms ease;
    pointer-events: none;
  }

  .solutions-narrative-shell .solution-visual.is-image-ready::after {
    opacity: 0;
    animation: none;
  }
}

@keyframes solution-image-loading {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .solutions-narrative-shell .solution-visual::after {
    animation: none;
    transition: none;
  }
}

@media (max-width: 760px) {
  #soluciones > .solutions-grid {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    gap: 18px;
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  #soluciones > .solutions-grid > .solution-card {
    display: block !important;
    position: relative !important;
    grid-column: auto !important;
    grid-row: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    flex: 0 0 auto !important;
    -webkit-transform: none !important;
    transform: none !important;
    translate: none !important;
    left: auto !important;
    right: auto !important;
    inset: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}
