/* Landing B2B CEP Digital — implementação fiel às referências mobile de 29/08/2026. */
.pro-page {
  --pro-paper: #f0f0ed;
  --pro-paper-soft: #e5e5e1;
  --pro-ink: var(--preto-carbono);
  --pro-panel: #12181b;
  --pro-panel-raised: #1a2023;
  --pro-line: rgba(169, 176, 181, 0.2);
  --pro-line-light: rgba(14, 20, 23, 0.15);
  --pro-orange: var(--laranja-cobre);
  --pro-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --pro-gutter: clamp(1rem, 4.4vw, 1.5rem);
  --pro-radius: 18px;
  --pro-radius-inner: 12px;
}

html.pro-page {
  color-scheme: dark;
  scroll-behavior: smooth;
}

.pro-page body {
  padding-bottom: 64px;
  background:
    radial-gradient(circle at 12% 9%, rgba(200, 117, 42, 0.045), transparent 24rem),
    var(--preto-carbono);
}

.pro-page body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 36px 36px;
}

.pro-page .container {
  width: 100%;
  max-width: 920px;
  padding-inline: var(--pro-gutter);
}

.pro-page :is(a, summary) {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(200, 117, 42, 0.22);
}

.pro-page :is(h1, h2) {
  scroll-margin-top: 5.5rem;
  text-wrap: balance;
}

.pro-page p { text-wrap: pretty; }

.pro-page :focus-visible {
  outline: 2px solid var(--laranja-cobre);
  outline-offset: 4px;
}

.pro-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.pro-header {
  position: relative;
  z-index: 40;
  border-bottom: 1px solid var(--pro-line);
  background: rgba(14, 20, 23, 0.94);
  backdrop-filter: blur(18px);
}

.pro-header__inner {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.pro-header__brand {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.pro-header__brand img {
  width: 106px;
  max-height: 52px;
}

.pro-header__cta {
  inline-size: 44px;
  block-size: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 244, 242, 0.48);
  border-radius: 10px;
  color: var(--branco-gelo);
  transition:
    color 220ms var(--pro-ease),
    border-color 220ms var(--pro-ease),
    transform 220ms var(--pro-ease);
}

.pro-header__cta svg {
  width: 20px;
  height: 20px;
}

.pro-header__cta:hover {
  color: var(--pro-orange);
  border-color: var(--pro-orange);
  transform: translateY(-1px);
}

.pro-header__cta:active { transform: scale(0.96); }

.pro-kicker {
  margin-bottom: 0.85rem;
  color: var(--pro-orange);
  font-family: var(--font-head);
  font-size: clamp(0.68rem, 2.7vw, 0.82rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.pro-cta {
  width: 100%;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.72rem;
  padding: 0.9rem 1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: var(--font-head);
  font-size: clamp(0.72rem, 3vw, 0.88rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.075em;
  text-align: center;
  text-transform: uppercase;
  transition:
    background-color 220ms var(--pro-ease),
    border-color 220ms var(--pro-ease),
    color 220ms var(--pro-ease),
    transform 220ms var(--pro-ease),
    box-shadow 220ms var(--pro-ease);
}

.pro-cta svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.pro-cta:hover { transform: translateY(-2px); }
.pro-cta:active { transform: scale(0.98); transition-duration: 120ms; }

.pro-cta--accent {
  background: var(--pro-orange);
  color: var(--branco-gelo);
  box-shadow: 0 20px 38px -24px rgba(200, 117, 42, 0.9);
}

.pro-cta--accent:hover { background: var(--laranja-escuro); }

.pro-cta--ink {
  background: var(--pro-ink);
  color: var(--branco-gelo);
}

.pro-cta--ink:hover { background: var(--grafite-secundario); }

.pro-cta--outline {
  border-color: rgba(14, 20, 23, 0.35);
  color: var(--pro-ink);
  background: transparent;
}

.pro-cta--outline:hover {
  border-color: var(--pro-ink);
  background: rgba(14, 20, 23, 0.05);
}

.pro-cta--paper {
  background: var(--branco-gelo);
  color: var(--pro-ink);
}

.pro-cta--paper:hover { background: var(--pro-paper-soft); }

/* Hero */
.pro-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.75rem, 11vw, 5.5rem) 0 1rem;
}

.pro-hero::before {
  content: "";
  position: absolute;
  width: 30rem;
  height: 30rem;
  left: 50%;
  top: 27rem;
  border: 1px solid rgba(200, 117, 42, 0.18);
  border-radius: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.pro-hero__inner { position: relative; }

.pro-hero__copy {
  width: min(100%, 44rem);
  margin-inline: auto;
  text-align: center;
  animation: pro-copy-in 600ms var(--pro-ease) both;
}

.pro-hero h1 {
  margin-inline: auto;
  max-width: 14ch;
  color: var(--branco-gelo);
  font-size: clamp(2.15rem, 9.6vw, 4.7rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.pro-hero__lead {
  max-width: 37rem;
  margin: 1.15rem auto 0;
  color: var(--cinza-tecnico);
  font-size: clamp(0.94rem, 3.8vw, 1.18rem);
  line-height: 1.55;
}

.pro-hero__copy .pro-cta {
  margin-top: 1.6rem;
}

.pro-hero__coverage {
  margin-top: 0.85rem;
  color: rgba(244, 244, 242, 0.6);
  font-size: 0.76rem;
}

.pro-hero__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.8;
  margin-top: clamp(2rem, 8vw, 3.5rem);
  border: 1px solid var(--pro-line);
  border-radius: var(--pro-radius);
  background: #090d0f;
  box-shadow: 0 34px 70px -44px rgba(0, 0, 0, 0.95);
  animation: pro-media-in 600ms var(--pro-ease) 90ms both;
}

.pro-hero__media::after {
  content: "";
  position: absolute;
  inset: 52% 0 0;
  background: linear-gradient(transparent, rgba(7, 10, 12, 0.92));
  pointer-events: none;
}

.pro-hero__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.035) saturate(0.94);
}

.pro-hero__proof {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  padding: 1rem 0.7rem;
  border-top: 1px solid rgba(244, 244, 242, 0.18);
  color: var(--branco-gelo);
  font-family: var(--font-head);
  font-size: clamp(0.49rem, 2.1vw, 0.67rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.pro-hero__proof span {
  min-height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding-inline: 0.35rem;
  border-right: 1px solid rgba(244, 244, 242, 0.18);
}

.pro-hero__proof span:last-child { border-right: 0; }
.pro-hero__proof strong { color: var(--pro-orange); font-size: 1.15em; }

.pro-hero__qualifier {
  max-width: 40rem;
  margin: 0.9rem auto 0;
  color: rgba(169, 176, 181, 0.78);
  font-size: 0.7rem;
  line-height: 1.5;
  text-align: center;
}

/* Shared campaign cards */
.pro-shell { padding-block: 0.55rem; }

.pro-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.75rem, 7vw, 3.4rem) var(--pro-gutter);
  border-radius: var(--pro-radius);
}

.pro-card--dark {
  border: 1px solid var(--pro-line);
  background:
    radial-gradient(circle at 100% 0, rgba(200, 117, 42, 0.065), transparent 19rem),
    var(--pro-panel);
  color: var(--branco-gelo);
}

.pro-card--light {
  background: var(--pro-paper);
  color: var(--pro-ink);
}

.pro-card h2 {
  max-width: 18ch;
  font-size: clamp(1.78rem, 7.5vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.047em;
}

.pro-card--light .pro-kicker { color: var(--laranja-escuro); }

.pro-intro {
  max-width: 39rem;
  margin-top: 0.9rem;
  color: var(--cinza-tecnico);
  font-size: clamp(0.88rem, 3.4vw, 1.05rem);
  line-height: 1.55;
}

.pro-card--light .pro-intro { color: rgba(14, 20, 23, 0.66); }

.pro-feature-rows {
  list-style: none;
  padding: 0;
}

.pro-feature-rows {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.75rem;
}

.pro-feature-rows li {
  position: relative;
  min-height: 62px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem 0.9rem 2.45rem;
  border: 1px solid rgba(169, 176, 181, 0.08);
  border-radius: 11px;
  background: var(--pro-panel-raised);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
}

.pro-feature-rows li::before {
  content: "";
  position: absolute;
  left: 1rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pro-orange);
  box-shadow: 0 0 0 4px rgba(200, 117, 42, 0.1);
}

.pro-feature-rows svg {
  width: 17px;
  height: 17px;
  color: var(--pro-orange);
}

.pro-showcase { margin-top: 1.7rem; }

.pro-showcase__media {
  overflow: hidden;
  aspect-ratio: 1.46;
  border-radius: var(--pro-radius-inner);
  background: #d7d5cf;
}

.pro-showcase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--pro-ease);
}

.pro-showcase__media--product {
  padding: 1rem 0.4rem 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.95), transparent 55%),
    #d8d7d2;
}

.pro-showcase__media--product img { object-fit: contain; }
.pro-showcase:hover img { transform: scale(1.018); }

.pro-showcase figcaption {
  display: grid;
  gap: 0.25rem;
  margin-top: 1rem;
}

.pro-showcase figcaption strong {
  font-family: var(--font-head);
  font-size: 1.1rem;
}

.pro-showcase figcaption span {
  color: rgba(14, 20, 23, 0.62);
  font-size: 0.82rem;
}

.pro-carousel {
  min-width: 0;
  margin-top: 1.7rem;
}

.pro-carousel__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.pro-carousel__track::-webkit-scrollbar { display: none; }

.pro-carousel__slide {
  min-width: 0;
  flex: 0 0 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.pro-carousel .pro-showcase { margin-top: 0; }

.pro-carousel__dots {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 0.55rem;
}

.pro-carousel__dot {
  min-width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.pro-carousel__dot span {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: rgba(14, 20, 23, 0.24);
  transition:
    width 220ms var(--pro-ease),
    background-color 220ms var(--pro-ease),
    transform 220ms var(--pro-ease);
}

.pro-carousel__dot[aria-current="true"] span {
  width: 20px;
  background: var(--pro-orange);
}

.pro-carousel__dot:hover span { transform: scale(1.18); }

.pro-carousel__track:focus-visible {
  outline: 2px solid var(--pro-orange);
  outline-offset: 5px;
  border-radius: var(--pro-radius-inner);
}

.pro-showcase__media--implant img { object-position: center 58%; }
.pro-showcase__media--rehab img { object-position: center 45%; }
.pro-showcase__media--lenses img { object-position: center 68%; }

.pro-solutions .pro-cta { margin-top: 1.35rem; }

/* Process */
.pro-timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin: 1.7rem 0 1.8rem;
  padding: 0;
  list-style: none;
}

.pro-timeline::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.35rem;
  bottom: 1.35rem;
  width: 1px;
  background: rgba(200, 117, 42, 0.48);
}

.pro-timeline li {
  position: relative;
  min-height: 66px;
  display: grid;
  grid-template-columns: 2.7rem 1fr;
  align-items: center;
  gap: 0.45rem;
  border-bottom: 1px solid rgba(169, 176, 181, 0.12);
}

.pro-timeline li:last-child { border-bottom: 0; }

.pro-timeline span {
  position: relative;
  z-index: 1;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(200, 117, 42, 0.52);
  border-radius: 50%;
  background: var(--pro-panel);
  color: var(--pro-orange);
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
}

.pro-timeline strong {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
}

/* Technology */
.pro-tech__media {
  overflow: hidden;
  aspect-ratio: 1.45;
  margin-top: 1.7rem;
  border: 1px solid rgba(244, 244, 242, 0.14);
  border-radius: var(--pro-radius-inner);
  background: #050709;
}

.pro-tech__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 47%;
  filter: contrast(1.06) saturate(0.84);
}

.pro-tech__copy {
  max-width: 34rem;
  margin: 1.2rem auto 0;
  color: var(--cinza-tecnico);
  font-size: 0.86rem;
  line-height: 1.55;
  text-align: center;
}

.pro-tech__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pro-tech__tags li {
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(244, 244, 242, 0.28);
  border-radius: 5px;
  color: rgba(244, 244, 242, 0.82);
  font-size: 0.68rem;
}

.pro-results .pro-cta { margin-top: 1.4rem; }

/* Authority */
.pro-authority__card { padding: 0; }

.pro-authority__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.2;
}

.pro-authority__media::after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, var(--pro-panel));
}

.pro-authority__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
  filter: contrast(1.04) saturate(0.82);
}

.pro-authority__copy { padding: 0 var(--pro-gutter) clamp(1.75rem, 7vw, 3.4rem); }

.pro-authority__copy > p:not(.pro-kicker) {
  max-width: 34rem;
  margin-top: 0.9rem;
  color: var(--cinza-tecnico);
  font-size: 0.9rem;
}

.pro-authority__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.15rem;
}

.pro-authority__facts li {
  padding: 0.42rem 0.62rem;
  border: 1px solid rgba(169, 176, 181, 0.24);
  border-radius: 5px;
  color: rgba(244, 244, 242, 0.76);
  font-size: 0.64rem;
}

.pro-authority .pro-cta { margin-top: 1.4rem; }

/* FAQ */
.pro-faq__list {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.75rem;
}

.pro-faq details {
  overflow: hidden;
  border: 1px solid rgba(169, 176, 181, 0.08);
  border-radius: 11px;
  background: var(--pro-panel-raised);
}

.pro-faq summary {
  min-height: 64px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.9rem 3.4rem 0.9rem 1rem;
  color: var(--branco-gelo);
  font-family: var(--font-head);
  font-size: clamp(0.82rem, 3.4vw, 1rem);
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

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

.pro-faq summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  color: var(--pro-orange);
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-52%);
  transition: transform 220ms var(--pro-ease);
}

.pro-faq details[open] summary::after { transform: translateY(-52%) rotate(45deg); }

.pro-faq details p {
  max-width: 43rem;
  padding: 0 1rem 1rem;
  color: var(--cinza-tecnico);
  font-size: 0.82rem;
  line-height: 1.6;
}

/* Final conversion card */
.pro-final__card {
  isolation: isolate;
  text-align: center;
}

.pro-final__copy { position: relative; z-index: 2; }
.pro-final .pro-kicker { text-align: center; }
.pro-final h2 { max-width: 16ch; margin-inline: auto; }

.pro-final__copy > p:not(.pro-kicker) {
  max-width: 32rem;
  margin: 0.9rem auto 0;
  color: var(--cinza-tecnico);
  font-size: 0.9rem;
}

.pro-final__media {
  position: relative;
  z-index: 1;
  height: clamp(15rem, 68vw, 18rem);
  margin: 1.5rem -0.5rem 0.25rem;
  overflow: hidden;
  border-radius: var(--pro-radius-inner);
  background: #0b1012;
}

.pro-final__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--pro-panel) 0%, transparent 30%, transparent 70%, var(--pro-panel) 100%),
    linear-gradient(90deg, rgba(200, 117, 42, 0.12), transparent 45%);
  pointer-events: none;
}

.pro-final__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  filter: brightness(0.72) contrast(1.04) saturate(0.72);
}

.pro-final .pro-cta {
  position: relative;
  z-index: 2;
  gap: 0.55rem;
  padding-inline: 0.65rem;
  margin-top: 0.5rem;
  font-size: clamp(0.68rem, 2.8vw, 0.88rem);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.pro-final__qualifier {
  margin: 0.85rem auto 0;
  max-width: 32rem;
  color: rgba(169, 176, 181, 0.78);
  font-size: 0.72rem;
  line-height: 1.5;
}

/* Footer and mobile conversion bar */
.pro-footer { padding: 3.5rem 0 2.1rem; }

.pro-footer__inner {
  display: grid;
  justify-items: center;
  gap: 1.15rem;
  color: rgba(244, 244, 242, 0.65);
  font-size: 0.78rem;
  line-height: 1.65;
  text-align: center;
}

.pro-footer__inner img { width: 136px; }
.pro-footer__inner strong { color: var(--branco-gelo); font-weight: 600; }

.pro-mobile-cta {
  position: fixed;
  z-index: 60;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem calc(0.8rem + env(safe-area-inset-bottom));
  background: var(--pro-orange);
  color: var(--branco-gelo);
  box-shadow: 0 -14px 34px -24px rgba(0, 0, 0, 0.85);
  font-family: var(--font-head);
  font-size: clamp(0.76rem, 3.4vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.075em;
  text-align: center;
  text-transform: uppercase;
}

.pro-mobile-cta svg { width: 25px; height: 25px; flex: 0 0 auto; }

/* One-shot microinteractions for bullets, steps and technical pills. */
[data-motion-ready]:not(.is-visible) > li {
  opacity: 0;
  transform: translateY(9px);
}

.pro-feature-rows[data-motion-ready].is-visible > li,
.pro-timeline[data-motion-ready].is-visible > li {
  animation: pro-item-in 440ms var(--pro-ease) backwards;
  animation-delay: calc(var(--motion-index) * 85ms);
}

.pro-tech__tags[data-motion-ready]:not(.is-visible) > li,
.pro-authority__facts[data-motion-ready]:not(.is-visible) > li {
  transform: translateY(7px) scale(0.98);
}

.pro-tech__tags[data-motion-ready].is-visible > li,
.pro-authority__facts[data-motion-ready].is-visible > li {
  animation: pro-pill-in 380ms var(--pro-ease) backwards;
  animation-delay: calc(var(--motion-index) * 65ms);
}

.pro-feature-rows[data-motion-ready].is-visible li::before {
  animation: pro-dot-pulse 620ms var(--pro-ease) both;
  animation-delay: calc(180ms + var(--motion-index) * 85ms);
}

.pro-feature-rows[data-motion-ready].is-visible svg {
  animation: pro-arrow-in 420ms var(--pro-ease) both;
  animation-delay: calc(120ms + var(--motion-index) * 85ms);
}

.pro-timeline[data-motion-ready]::before {
  transform: scaleY(0);
  transform-origin: top;
}

.pro-timeline[data-motion-ready].is-visible::before {
  animation: pro-line-y 620ms var(--pro-ease) both;
}

.pro-timeline[data-motion-ready].is-visible span {
  animation: pro-node-pulse 520ms var(--pro-ease) both;
  animation-delay: calc(100ms + var(--motion-index) * 85ms);
}

.pro-tech__tags li,
.pro-authority__facts li {
  transition:
    transform 220ms var(--pro-ease),
    border-color 220ms var(--pro-ease),
    background-color 220ms var(--pro-ease),
    box-shadow 220ms var(--pro-ease),
    color 220ms var(--pro-ease);
}

@media (hover: hover) {
  .pro-tech__tags li:hover,
  .pro-authority__facts li:hover {
    transform: translateY(-2px);
    border-color: rgba(200, 117, 42, 0.72);
    background: rgba(200, 117, 42, 0.11);
    box-shadow: 0 8px 22px -14px rgba(200, 117, 42, 0.9);
    color: var(--branco-gelo);
  }
}

.pro-tech__tags li:active,
.pro-authority__facts li:active {
  transform: translateY(-1px);
  border-color: rgba(200, 117, 42, 0.72);
  background: rgba(200, 117, 42, 0.11);
}

@keyframes pro-item-in {
  from { opacity: 0; transform: translateY(9px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pro-pill-in {
  from { opacity: 0; transform: translateY(7px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes pro-dot-pulse {
  0% { box-shadow: 0 0 0 0 rgba(200, 117, 42, 0.45); }
  60% { box-shadow: 0 0 0 7px rgba(200, 117, 42, 0); }
  100% { box-shadow: 0 0 0 4px rgba(200, 117, 42, 0.1); }
}

@keyframes pro-arrow-in {
  from { opacity: 0.65; transform: translateX(-3px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pro-line-y {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

@keyframes pro-line-x {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes pro-node-pulse {
  0% { box-shadow: 0 0 0 0 rgba(200, 117, 42, 0.36); }
  70% { box-shadow: 0 0 0 6px rgba(200, 117, 42, 0); }
  100% { box-shadow: none; }
}

/* Motion: Premium archetype, legibility first. */
@keyframes pro-copy-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pro-media-in {
  from { opacity: 0; transform: translateY(18px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes pro-section-in {
  from { opacity: 0.25; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@supports (animation-timeline: view()) {
  .pro-shell .pro-card {
    animation-name: pro-section-in;
    animation-duration: 500ms;
    animation-timing-function: var(--pro-ease);
    animation-fill-mode: both;
    animation-timeline: view();
    animation-range: entry 8% cover 30%;
  }
}

@media (min-width: 768px) {
  .pro-page body { padding-bottom: 0; }

  .pro-page .container { padding-inline: clamp(1.5rem, 4vw, 2.5rem); }

  .pro-header__inner { min-height: 82px; }
  .pro-header__brand img { width: 124px; }

  .pro-hero { padding-top: 5.5rem; }
  .pro-hero__copy .pro-cta { width: min(100%, 32rem); }
  .pro-hero__media { max-width: 700px; margin-inline: auto; }
  .pro-hero__proof { padding: 1.25rem 1rem; }
  .pro-hero__qualifier { font-size: 0.78rem; }

  .pro-shell { padding-block: 0.75rem; }
  .pro-card { padding-inline: clamp(2.4rem, 6vw, 4.4rem); }

  .pro-feature-rows { grid-template-columns: repeat(3, 1fr); }
  .pro-feature-rows li {
    min-height: 112px;
    grid-template-columns: 1fr;
    align-content: end;
    padding: 2.3rem 1rem 1rem;
  }
  .pro-feature-rows li::before { top: 1rem; }
  .pro-feature-rows svg { display: none; }

  .pro-showcase__media { aspect-ratio: 1.75; }
  .pro-carousel__dots { margin-top: 0.75rem; }

  .pro-timeline { grid-template-columns: repeat(4, 1fr); margin-block: 2.3rem; }
  .pro-timeline::before { left: 1rem; right: 1rem; top: 1rem; bottom: auto; width: auto; height: 1px; }
  .pro-timeline[data-motion-ready]::before { transform: scaleX(0); transform-origin: left; }
  .pro-timeline[data-motion-ready].is-visible::before { animation-name: pro-line-x; }
  .pro-timeline li {
    min-height: 112px;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 0.8rem;
    padding-right: 1rem;
    border-bottom: 0;
  }

  .pro-tech__media { aspect-ratio: 1.85; }
  .pro-authority__media { aspect-ratio: 1.8; }
  .pro-authority__copy { padding-inline: clamp(2.4rem, 6vw, 4.4rem); }
  .pro-faq__list { grid-template-columns: repeat(2, 1fr); }
  .pro-faq details { align-self: start; }
  .pro-final__media { height: clamp(20rem, 32vw, 24rem); }

  .pro-mobile-cta { display: none; }
}

@media (min-width: 1100px) {
  .pro-page .container { max-width: 1120px; }
  .pro-hero__media { max-width: 790px; }
  .pro-card { padding-block: 4.2rem; }

  .pro-solutions .pro-card,
  .pro-results .pro-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    column-gap: 4rem;
    align-items: start;
  }

  .pro-solutions .pro-kicker,
  .pro-solutions h2,
  .pro-solutions .pro-intro,
  .pro-results .pro-kicker,
  .pro-results h2 {
    grid-column: 1;
  }

  .pro-solutions .pro-carousel,
  .pro-results .pro-showcase {
    grid-column: 2;
    grid-row: 1 / span 6;
    margin-top: 0;
  }

  .pro-solutions .pro-cta,
  .pro-results .pro-cta {
    grid-column: 1;
  }

  .pro-authority__card {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: stretch;
  }

  .pro-authority__media { aspect-ratio: auto; min-height: 520px; }
  .pro-authority__media::after { inset: 0 0 0 65%; background: linear-gradient(90deg, transparent, var(--pro-panel)); }
  .pro-authority__copy { display: flex; flex-direction: column; justify-content: center; padding-block: 4rem; }
}

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