:root {
  --brand-violet: #6d0ff2;
  --brand-purple: #471ed9;
  --brand-indigo: #343bbf;
  --brand-blue: #2a4fbf;
  --brand-black: #0d0d0d;
  --brand-navy: #101338;
  --brand-gold: #f4b942;
  --corp-bg: #f6f7fb;
  --corp-surface: #ffffff;
  --corp-text: #17182f;
  --corp-muted: #5f6277;
  --corp-line: #dfe2ee;
  --corp-shadow: 0 24px 70px rgba(25, 29, 83, 0.12);
}

.corporate-site {
  color: var(--corp-text);
  background: var(--corp-bg);
  font-family: "DM Sans", "Segoe UI", sans-serif;
}

.corporate-site h1,
.corporate-site h2,
.corporate-site h3,
.corporate-site h4,
.corporate-site .corp-button,
.corporate-site .site-nav a {
  font-family: "Manrope", "Segoe UI", sans-serif;
}

.corporate-site p {
  color: var(--corp-muted);
}
.corporate-site .container {
  max-width: 1220px;
}

.corp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(52, 59, 191, 0.09);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 28px rgba(13, 13, 13, 0.04);
  backdrop-filter: blur(18px);
}

.corp-nav-wrap {
  display: flex;
  align-items: center;
  min-height: 84px;
  gap: 28px;
}

.corp-brand {
  flex: 0 0 auto;
}
.corp-brand img {
  width: 150px;
}
.corp-header .site-nav {
  margin-left: auto;
}
.corp-header .site-nav .navbar-nav {
  gap: 25px;
}

.corp-header .site-nav a {
  color: #45485d;
  font-size: 0.91rem;
  font-weight: 600;
  white-space: nowrap;
}

.corp-header .site-nav a:hover,
.corp-header .site-nav a:focus-visible {
  color: var(--brand-purple);
}

.corp-header .site-nav .corp-nav-cta {
  min-height: 44px;
  padding: 0 18px !important;
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-blue));
  box-shadow: 0 10px 24px rgba(71, 30, 217, 0.2);
}

.corp-header .site-nav .corp-nav-cta::after {
  display: none;
}
.corp-header .site-nav .corp-nav-cta:hover {
  color: #fff;
  transform: translateY(-1px);
}

.corp-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 92px 0 78px;
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(109, 15, 242, 0.13),
      transparent 30%
    ),
    radial-gradient(circle at 7% 72%, rgba(42, 79, 191, 0.1), transparent 26%),
    linear-gradient(180deg, #fff 0%, #f4f5fb 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(52, 59, 191, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 59, 191, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.corp-kicker,
.corp-overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-purple);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.corp-kicker i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand-gold);
  box-shadow: 0 0 0 5px rgba(244, 185, 66, 0.18);
}

.corp-hero h1 {
  max-width: 700px;
  margin: 24px 0 24px;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  line-height: 1.01;
  letter-spacing: -0.055em;
  font-weight: 700;
}

.corp-hero h1 em {
  color: var(--brand-purple);
  font-style: normal;
}

.corp-hero-copy > p {
  max-width: 610px;
  font-size: 1.12rem;
  line-height: 1.75;
}

.corp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.corp-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.94rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.corp-button:hover,
.corp-button:focus-visible {
  transform: translateY(-2px);
}
.corp-button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-violet), var(--brand-purple));
  box-shadow: 0 16px 34px rgba(71, 30, 217, 0.22);
}
.corp-button-primary:hover {
  color: #fff;
  box-shadow: 0 20px 38px rgba(71, 30, 217, 0.3);
}
.corp-button-light {
  color: var(--brand-navy);
  border-color: var(--corp-line);
  background: #fff;
}
.corp-button-dark {
  color: #fff;
  background: var(--brand-black);
}
.corp-button-dark:hover {
  color: #fff;
}
.corp-button-gold {
  color: #17131f;
  background: var(--brand-gold);
  box-shadow: 0 16px 30px rgba(244, 185, 66, 0.22);
}
.corp-button-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}
.corp-button-outline:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.corp-proof-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 28px;
  color: #50536a;
  font-size: 0.85rem;
}

.corp-proof-line span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--brand-purple);
  font-weight: 800;
}

.hero-case-window {
  position: relative;
  display: block;
  padding: 12px;
  border: 1px solid rgba(52, 59, 191, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 36px 90px rgba(21, 25, 75, 0.2);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease;
}

.hero-case-window:hover {
  transform: perspective(1200px) rotateY(0) translateY(-5px);
  box-shadow: 0 42px 100px rgba(21, 25, 75, 0.26);
}
.hero-case-window > img {
  width: 100%;
  aspect-ratio: 1.78;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 6px;
}

.window-bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8dae5;
}
.window-bar > span:first-child {
  background: #ff7568;
}
.window-bar > span:nth-child(2) {
  background: var(--brand-gold);
}
.window-bar > span:nth-child(3) {
  background: #57c79b;
}
.window-bar small {
  margin-left: 8px;
  color: #77798c;
  font-size: 0.7rem;
}

.hero-case-caption {
  position: absolute;
  right: -20px;
  bottom: -38px;
  width: min(320px, 76%);
  display: grid;
  gap: 3px;
  padding: 20px;
  border-left: 4px solid var(--brand-gold);
  border-radius: 12px;
  color: #fff;
  background: var(--brand-navy);
  box-shadow: 0 18px 40px rgba(13, 13, 13, 0.25);
}

.hero-case-caption span {
  color: #c8c9fd;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-case-caption strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
}
.hero-case-caption small {
  color: rgba(255, 255, 255, 0.68);
}

.trust-ribbon {
  padding: 25px 0;
  color: #fff;
  background: var(--brand-black);
}

.trust-ribbon .container {
  display: flex;
  align-items: center;
  gap: 26px;
}
.trust-ribbon p {
  margin: 0;
  color: #aeb0bd;
  font-size: 0.82rem;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.trust-ribbon ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.trust-ribbon li {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #ececf3;
  font-size: 0.82rem;
}

.corp-section {
  padding: 108px 0;
}
.corp-heading {
  max-width: 760px;
  margin-bottom: 46px;
}
.corp-heading h2 {
  margin: 15px 0 18px;
  font-size: clamp(2.2rem, 4vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.corp-heading p {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 1.03rem;
  line-height: 1.75;
}

.solutions-section {
  background: #fff;
}
.solution-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(320px, 0.68fr);
  gap: 22px;
}
.solution-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--corp-line);
  border-radius: 18px;
  background: #f8f9fc;
}

.solution-card-featured {
  color: #fff;
  background: linear-gradient(145deg, #171650 0%, var(--brand-indigo) 100%);
  border-color: transparent;
}
.solution-index {
  color: var(--brand-purple);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
}
.solution-card-featured .solution-index {
  color: #bfbcff;
}
.solution-content {
  position: relative;
  z-index: 2;
  max-width: 490px;
  margin-top: auto;
}
.solution-card-featured .solution-content {
  padding-bottom: 185px;
}
.solution-label {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--brand-purple);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.solution-card-featured .solution-label {
  color: var(--brand-gold);
}
.solution-card h3 {
  margin-bottom: 14px;
  font-size: 2rem;
  letter-spacing: -0.03em;
}
.solution-card p {
  line-height: 1.7;
}
.solution-card-featured p {
  color: rgba(255, 255, 255, 0.75);
}
.solution-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
  color: #55586e;
}
.solution-card-featured ul {
  color: rgba(255, 255, 255, 0.78);
}
.solution-card li::before {
  content: "—";
  margin-right: 8px;
  color: var(--brand-purple);
}
.solution-card-featured li::before {
  color: var(--brand-gold);
}
.solution-card a {
  color: var(--brand-purple);
  font-weight: 700;
}
.solution-card-featured a {
  color: #fff;
}
.solution-card a b {
  color: var(--brand-gold);
}
.solution-card > img {
  position: absolute;
  right: -5%;
  bottom: -7%;
  width: 72%;
  border: 8px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

.problem-section {
  color: #fff;
  background: linear-gradient(145deg, #0c0d27, #171548 58%, #242368);
}
.problem-section .corp-heading h2 {
  color: #fff;
}
.problem-section .corp-heading p {
  color: rgba(255, 255, 255, 0.64);
}
.corp-overline-light {
  color: #aaa8ff;
}
.text-link-light {
  color: var(--brand-gold);
  font-weight: 700;
}
.text-link-light:hover {
  color: #ffd477;
}
.problem-list {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.problem-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.problem-list article > span {
  color: var(--brand-gold);
  font-weight: 700;
  font-size: 0.82rem;
}
.problem-list h3 {
  margin: 0 0 7px;
  font-size: 1.1rem;
}
.problem-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.6;
}

.flagship-case {
  overflow: hidden;
  background: #fff;
}
.case-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}
.case-topline a {
  color: var(--brand-purple);
  font-weight: 700;
}
.case-category {
  color: var(--brand-purple);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.flagship-copy h2 {
  margin: 18px 0 22px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}
.flagship-copy > p {
  font-size: 1.04rem;
  line-height: 1.75;
}
.case-deliverables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0;
}
.case-deliverables div {
  padding-top: 16px;
  border-top: 2px solid var(--corp-line);
}
.case-deliverables strong,
.case-deliverables span {
  display: block;
}
.case-deliverables strong {
  margin-bottom: 5px;
  font-size: 0.92rem;
}
.case-deliverables span {
  color: var(--corp-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}
.case-screen-stack {
  position: relative;
  min-height: 545px;
}
.case-screen-stack img {
  position: absolute;
  border-radius: 16px;
  box-shadow: var(--corp-shadow);
  border: 8px solid #fff;
}
.screen-main {
  inset: 0 5% auto 0;
  width: 92%;
}
.screen-float {
  right: 0;
  bottom: 0;
  width: 56%;
}

.clients-section {
  background: #eef0f8;
}
.client-list {
  border-top: 1px solid #cfd3e2;
}
.client-row {
  display: grid;
  grid-template-columns: 70px 220px 1fr 130px;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid #cfd3e2;
}
.client-mark {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-indigo), var(--brand-blue));
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}
.client-mark-entre {
  color: #c33246;
  background: #fef4ec;;
}
.client-mark-rv {
  color: #ffffff;
  background: #000000;;
}
.client-mark-rv img{
  width: 40px !important;
  object-fit: cover;
}
.client-name span {
  color: var(--corp-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.client-name h3 {
  margin: 4px 0 0;
  font-size: 1.08rem;
}
.client-row p {
  margin: 0;
  line-height: 1.65;
}
.client-row > a {
  justify-self: end;
  color: var(--brand-purple);
  font-weight: 700;
  font-size: 0.88rem;
}
.client-row-product {
  opacity: 0.88;
}

.client-logo-carousel {
  margin-top: 58px;
  padding: 34px;
  border: 1px solid #cfd3e2;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(25, 29, 83, 0.07);
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
}

.client-logo-carousel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.client-logo-carousel-head h3 {
  margin: 10px 0 7px;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  letter-spacing: -0.035em;
}

.client-logo-carousel-head p {
  max-width: 680px;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
}

.client-logo-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.client-logo-controls button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid #cfd3e2;
  border-radius: 10px;
  color: var(--corp-text);
  background: #fff;
  font-size: 1.2rem;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.client-logo-controls button:hover,
.client-logo-controls button:focus-visible {
  color: #fff;
  border-color: var(--brand-purple);
  background: var(--brand-purple);
}

.client-logo-controls button:disabled {
  cursor: not-allowed;
  color: #a9acba;
  border-color: #e0e2eb;
  background: #f4f5f8;
}

.client-logo-carousel.is-static .client-logo-controls {
  opacity: 0.55;
}

.client-logo-viewport {
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}

.client-logo-viewport::-webkit-scrollbar {
  display: none;
}

.client-logo-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 400px;
  gap: 14px;
}

.client-logo-card {
  min-height: 132px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 24px;
  position: relative;
  border: 1px solid var(--corp-line);
  border-radius: 14px;
  background: #fff;
  scroll-snap-align: start;
}
.entrelinhas {
  background: #fef4ec;
  filter: grayscale(1);
  opacity: 0.78;
}
.ricardoverissimo {
  background: #000000;
  filter: grayscale(1);
  opacity: 0.78;
}
.rverissimo {
  background: #000000;
  filter: grayscale(1);
  opacity: 0.78;
}
.marfra {
  background: #002a50;
  filter: grayscale(1);
  opacity: 0.78;
}

.client-logo-card img {
  width: auto;
  max-width: 300px;
  max-height: 150px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.78;
  transition:
    filter 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.client-logo-card:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.03);
}
.entrelinhas:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.03);
}
.ricardoverissimo:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.03);
}
.rverissimo:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.03);
}
.marfra:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.03);
}

.client-wordmark {
  color: #24263e;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
}

.client-wordmark-entrelinhas {
  color: #bf3f52;
  font-family: Georgia, serif;
  font-size: 1.55rem;
}

.client-wordmark-ricardo {
  letter-spacing: -0.04em;
}

.services-links {
  background: #fff;
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--corp-line);
  border-left: 1px solid var(--corp-line);
}
.capability-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border-right: 1px solid var(--corp-line);
  border-bottom: 1px solid var(--corp-line);
  transition:
    background 180ms ease,
    transform 180ms ease;
}
.capability-card:hover {
  color: #fff;
  background: var(--brand-purple);
  transform: translateY(-3px);
}
.capability-card > span {
  color: var(--brand-purple);
  font-size: 0.8rem;
  font-weight: 800;
}
.capability-card:hover > span,
.capability-card:hover b {
  color: var(--brand-gold);
}
.capability-card h3 {
  max-width: 390px;
  margin: auto 0 14px;
  font-size: 1.55rem;
}
.capability-card p {
  max-width: 500px;
  line-height: 1.65;
}
.capability-card:hover p {
  color: rgba(255, 255, 255, 0.72);
}
.capability-card b {
  color: var(--brand-purple);
  font-size: 0.85rem;
}

.method-section {
  color: #fff;
  background: var(--brand-black);
}
.method-section .corp-heading h2 {
  color: #fff;
}
.method-section .corp-heading p {
  color: rgba(255, 255, 255, 0.58);
}
.sticky-heading {
  position: sticky;
  top: 130px;
}
.method-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.method-list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.method-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.method-list > li > span {
  color: var(--brand-gold);
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}
.method-list h3 {
  margin: 0 0 9px;
  font-size: 1.4rem;
}
.method-list p {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
}

.assurance-section {
  padding-top: 0;
  background: var(--brand-black);
}
.assurance-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  padding: 55px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(71, 30, 217, 0.45),
    rgba(42, 79, 191, 0.32)
  );
  color: #fff;
}
.assurance-copy h2 {
  margin: 16px 0;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.assurance-copy p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}
.assurance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.assurance-grid > div {
  padding: 22px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}
.assurance-grid span,
.assurance-grid strong {
  display: block;
}
.assurance-grid span {
  margin-bottom: 24px;
  color: var(--brand-gold);
  font-size: 0.76rem;
  font-weight: 700;
}
.assurance-grid p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
  line-height: 1.55;
}

.content-section {
  background: #f3f4fa;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.article-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--corp-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(25, 29, 83, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}
.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--corp-shadow);
}
.article-card > span {
  color: var(--brand-purple);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.article-card h3 {
  margin: 45px 0 14px;
  font-size: 1.4rem;
  line-height: 1.25;
}
.article-card p {
  line-height: 1.65;
}
.article-card b {
  margin-top: auto;
  color: var(--brand-purple);
}
.article-card-cta {
  color: #fff;
  background: linear-gradient(145deg, var(--brand-purple), var(--brand-blue));
}
.article-card-cta > span,
.article-card-cta b {
  color: var(--brand-gold);
}
.article-card-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.faq-section {
  background: #fff;
}
.corp-accordion {
  border-top: 1px solid var(--corp-line);
}
.corp-accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid var(--corp-line);
  border-radius: 0 !important;
  background: transparent;
}
.corp-accordion .accordion-button {
  padding: 24px 0;
  color: var(--corp-text);
  background: transparent;
  box-shadow: none;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}
.corp-accordion .accordion-button:not(.collapsed) {
  color: var(--brand-purple);
}
.corp-accordion .accordion-button:focus {
  box-shadow: none;
}
.corp-accordion .accordion-body {
  padding: 0 42px 25px 0;
  color: var(--corp-muted);
  line-height: 1.7;
}
.corp-accordion .accordion-button::after {
  filter: none;
}

.contact-section {
  padding: 90px 0;
  color: #fff;
  background: #f3f4fa;
}
.contact-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  padding: 62px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    #171650,
    var(--brand-purple) 60%,
    var(--brand-blue)
  );
  box-shadow: 0 30px 80px rgba(71, 30, 217, 0.22);
}
.contact-panel::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -150px;
  width: 380px;
  height: 380px;
  border: 70px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}
.contact-panel > div {
  position: relative;
  z-index: 1;
}
.contact-panel span {
  color: var(--brand-gold);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact-panel h2 {
  max-width: 750px;
  margin: 14px 0;
  font-size: clamp(2.2rem, 4vw, 3.55rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}
.contact-panel p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.7;
}
.contact-actions {
  display: grid;
  gap: 12px;
  min-width: 230px;
}

.corp-footer {
  padding: 76px 0 30px;
  color: #fff;
  background: var(--brand-black);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 50px;
  padding-bottom: 55px;
}
.footer-identity img {
  width: 150px;
  filter: brightness(0) invert(1);
}
.footer-identity p {
  max-width: 350px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}
.footer-main > div:not(.footer-identity) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-main strong {
  margin-bottom: 7px;
  font-family: "Manrope", sans-serif;
}
.footer-main a,
.footer-main span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}
.footer-main a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.8rem;
}

/* Páginas internas */
.inner-hero {
  padding: 82px 0 72px;
  color: #fff;
  background: linear-gradient(145deg, #0f1038, var(--brand-indigo));
}
.inner-hero .corp-kicker {
  color: #c8c7ff;
}
.inner-hero h1 {
  max-width: 900px;
  margin: 24px 0;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.inner-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.12rem;
  line-height: 1.75;
}
.breadcrumb-line {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
}
.breadcrumb-line a {
  color: #fff;
}
.inner-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 50px;
}
.inner-proof div {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}
.inner-proof strong,
.inner-proof span {
  display: block;
}
.inner-proof span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.86rem;
}
.prose-section {
  background: #fff;
}
.prose-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 80px;
}
.prose-content {
  max-width: 790px;
}
.prose-content h2 {
  margin: 58px 0 18px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.13;
  letter-spacing: -0.035em;
}
.prose-content h2:first-child {
  margin-top: 0;
}
.prose-content h3 {
  margin: 34px 0 12px;
  font-size: 1.3rem;
}
.prose-content p,
.prose-content li {
  color: var(--corp-muted);
  font-size: 1.02rem;
  line-height: 1.8;
}
.prose-content ul,
.prose-content ol {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}
.prose-note {
  margin: 32px 0;
  padding: 24px 26px;
  border-left: 4px solid var(--brand-purple);
  background: #f1f1fb;
}
.prose-note strong {
  display: block;
  margin-bottom: 7px;
  color: var(--corp-text);
}
.side-card {
  position: sticky;
  top: 120px;
  padding: 26px;
  border: 1px solid var(--corp-line);
  border-radius: 14px;
  background: #f7f8fc;
}
.side-card h3 {
  font-size: 1.2rem;
}
.side-card p {
  line-height: 1.65;
}
.side-card .corp-button {
  width: 100%;
  margin-top: 10px;
}
.related-links {
  display: grid;
  gap: 10px;
  margin-top: 25px;
  padding-top: 22px;
  border-top: 1px solid var(--corp-line);
}
.related-links a {
  color: var(--brand-purple);
  font-size: 0.88rem;
  font-weight: 700;
}
.article-hero {
  padding-bottom: 64px;
}
.article-hero h1 {
  max-width: 980px;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}
.article-meta span::before {
  content: "•";
  margin-right: 9px;
  color: var(--brand-gold);
}
.page-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.page-card {
  padding: 28px;
  border: 1px solid var(--corp-line);
  border-radius: 14px;
  background: #fff;
}
.page-card span {
  color: var(--brand-purple);
  font-size: 0.78rem;
  font-weight: 700;
}
.page-card h3 {
  margin: 24px 0 12px;
  font-size: 1.25rem;
}
.page-card p {
  line-height: 1.65;
}

/* Solicitação de orçamento */
.quote-section {
  position: relative;
  overflow: hidden;
  padding: 46px 0 92px;
  background:
    radial-gradient(circle at 5% 25%, rgba(109, 15, 242, 0.1), transparent 27%),
    radial-gradient(circle at 92% 15%, rgba(42, 79, 191, 0.1), transparent 26%),
    var(--corp-bg);
}
.quote-breadcrumb {
  margin-bottom: 36px;
  color: var(--corp-muted);
}
.quote-breadcrumb a {
  color: var(--brand-purple);
}
.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(500px, 1fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: start;
}
.quote-intro {
  position: sticky;
  top: 130px;
  padding-top: 22px;
}
.quote-intro h1 {
  margin: 24px 0;
  font-size: clamp(2.6rem, 4.5vw, 4.3rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.052em;
}
.quote-intro > p {
  max-width: 590px;
  font-size: 1.06rem;
  line-height: 1.75;
}
.quote-benefits {
  display: grid;
  gap: 18px;
  margin: 38px 0 30px;
}
.quote-benefits > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  align-items: start;
}
.quote-benefits strong {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-blue));
  font-family: "Manrope", sans-serif;
}
.quote-benefits span {
  color: var(--corp-muted);
  line-height: 1.5;
}
.quote-benefits b {
  display: block;
  margin-bottom: 3px;
  color: var(--corp-text);
  font-family: "Manrope", sans-serif;
}
.quote-intro .quote-alternative {
  font-size: 0.93rem;
}
.quote-alternative a {
  color: var(--brand-purple);
  font-weight: 700;
}
.quote-form-card {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(52, 59, 191, 0.13);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--corp-shadow);
  scroll-margin-top: 110px;
}
.quote-form-heading {
  margin-bottom: 30px;
}
.quote-form-heading > span {
  color: var(--brand-purple);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.quote-form-heading h2 {
  margin: 10px 0 7px;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  letter-spacing: -0.035em;
}
.quote-form-heading p {
  margin: 0;
  font-size: 0.9rem;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.form-field {
  min-width: 0;
}
.form-field-full {
  grid-column: 1 / -1;
}
.form-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--corp-text);
  font-size: 0.9rem;
  font-weight: 700;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #cfd3e1;
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--corp-text);
  background: #fff;
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.form-field input,
.form-field select {
  min-height: 50px;
}
.form-field textarea {
  min-height: 145px;
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--brand-purple);
  box-shadow: 0 0 0 4px rgba(109, 15, 242, 0.1);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #9699a9;
}
.form-field small {
  display: block;
  margin-top: 7px;
  color: var(--corp-muted);
  font-size: 0.77rem;
}
.form-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
}
.form-consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--brand-purple);
}
.form-consent label {
  margin: 0;
  color: var(--corp-muted);
  font-size: 0.83rem;
  font-weight: 500;
  line-height: 1.45;
}
.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
}
.quote-submit {
  width: 100%;
  margin-top: 25px;
  border: 0;
  cursor: pointer;
}
.form-security {
  margin: 13px 0 0;
  text-align: center;
  font-size: 0.77rem;
}
.quote-footer {
  padding: 24px 0;
}
.quote-footer .footer-bottom {
  padding-top: 0;
  border-top: 0;
}
.quote-footer a {
  color: rgba(255, 255, 255, 0.65);
}
.confirmation-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.confirmation-main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 70px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(109, 15, 242, 0.13), transparent 40%),
    var(--corp-bg);
}
.confirmation-card {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(38px, 7vw, 72px);
  border: 1px solid rgba(52, 59, 191, 0.13);
  border-radius: 24px;
  background: #fff;
  text-align: center;
  box-shadow: var(--corp-shadow);
}
.confirmation-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin: 0 auto 25px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-blue));
  font-size: 2rem;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(71, 30, 217, 0.25);
}
.confirmation-card h1 {
  margin: 14px 0 18px;
  font-size: clamp(2.35rem, 6vw, 4rem);
  letter-spacing: -0.05em;
}
.confirmation-card > p {
  max-width: 570px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
}
.confirmation-card .corp-actions {
  justify-content: center;
}
.confirmation-whatsapp {
  border-color: var(--corp-line);
  color: var(--corp-text);
  background: #fff;
}

@media (max-width: 1100px) {
  .corp-header .site-nav .navbar-nav {
    gap: 15px;
  }
  .corp-header .site-nav a {
    font-size: 0.84rem;
  }
  .hero-case-caption {
    right: 0;
  }
  .solution-grid {
    grid-template-columns: 1fr;
  }
  .solution-card:not(.solution-card-featured) {
    min-height: 430px;
  }
  .client-row {
    grid-template-columns: 65px 190px 1fr 120px;
    gap: 16px;
  }
  .assurance-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px) {
  .corp-header .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .corp-header .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    padding: 16px;
    border: 1px solid var(--corp-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--corp-shadow);
  }
  .corp-header .site-nav .navbar-nav {
    align-items: stretch !important;
    gap: 2px;
  }
  .corp-header .site-nav a {
    padding: 11px 10px !important;
  }
  .corp-header .site-nav .corp-nav-cta {
    margin-top: 8px;
    justify-content: center;
  }
  .corp-hero {
    padding-top: 70px;
  }
  .hero-case-window {
    margin-top: 26px;
    transform: none;
  }
  .hero-case-caption {
    bottom: -28px;
  }
  .case-screen-stack {
    margin-top: 20px;
  }
  .client-row {
    grid-template-columns: 60px 180px 1fr;
  }
  .client-row > a {
    grid-column: 3;
    justify-self: start;
  }
  .article-grid {
    grid-template-columns: 1fr;
  }
  .article-card {
    min-height: 260px;
  }
  .sticky-heading {
    position: static;
  }
  .contact-panel {
    grid-template-columns: 1fr;
  }
  .contact-actions {
    display: flex;
    flex-wrap: wrap;
  }
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
  .prose-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .side-card {
    position: static;
  }
  .quote-layout {
    grid-template-columns: 1fr;
  }
  .quote-intro {
    position: static;
    padding-top: 0;
  }
}

@media (max-width: 767.98px) {
  .corp-nav-wrap {
    min-height: 74px;
  }
  .corp-brand img {
    width: 130px;
  }
  .corp-hero {
    padding: 55px 0 70px;
  }
  .corp-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }
  .corp-hero-copy > p {
    font-size: 1rem;
  }
  .corp-actions {
    display: grid;
  }
  .corp-button {
    width: 100%;
  }
  .quote-section {
    padding: 30px 0 65px;
  }
  .quote-breadcrumb {
    margin-bottom: 25px;
  }
  .quote-intro h1 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-field-full {
    grid-column: auto;
  }
  .quote-footer .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .hero-case-caption {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 10px;
  }
  .trust-ribbon .container {
    align-items: flex-start;
    flex-direction: column;
  }
  .corp-section {
    padding: 78px 0;
  }
  .corp-heading {
    margin-bottom: 34px;
  }
  .corp-heading h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }
  .solution-card {
    min-height: 520px;
    padding: 26px;
  }
  .solution-card-featured .solution-content {
    padding-bottom: 145px;
  }
  .solution-card > img {
    width: 85%;
  }
  .case-topline {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 35px;
  }
  .case-deliverables {
    grid-template-columns: 1fr;
  }
  .case-screen-stack {
    min-height: 380px;
  }
  .screen-main {
    width: 100%;
  }
  .screen-float {
    width: 66%;
  }
  .client-row {
    grid-template-columns: 58px 1fr;
    gap: 14px;
  }
  .client-row > p,
  .client-row > a {
    grid-column: 2;
  }
  .client-logo-carousel {
    margin-top: 42px;
    padding: 24px 18px;
  }
  .client-logo-carousel-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .client-logo-track {
    grid-auto-columns: 400px;
    gap: 14px;
  }
  .capability-grid {
    grid-template-columns: 1fr;
  }
  .capability-card {
    min-height: 260px;
    padding: 28px;
  }
  .method-list li {
    grid-template-columns: 46px 1fr;
  }
  .assurance-panel {
    padding: 28px;
  }
  .assurance-grid {
    grid-template-columns: 1fr;
  }
  .contact-panel {
    padding: 32px 26px;
  }
  .contact-actions {
    display: grid;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .inner-hero {
    padding: 55px 0;
  }
  .inner-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.3rem);
  }
  .inner-proof,
  .page-cards {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-case-window,
  .corp-button,
  .capability-card,
  .article-card {
    transition: none;
  }
}

/* Case Entrelinhas */
.case-inner-hero {
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(109, 15, 242, 0.4),
      transparent 27%
    ),
    linear-gradient(145deg, #111238, #29216e);
}
.case-hero-browser {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
}
.case-hero-browser img {
  width: 100%;
  border-radius: 10px;
}
.case-context {
  background: #fff;
}
.case-text p {
  font-size: 1.08rem;
  line-height: 1.85;
}
.case-solution-section {
  color: #fff;
  background: var(--brand-black);
}
.case-solution-section .corp-heading h2 {
  color: #fff;
}
.case-solution-section .corp-heading p {
  color: rgba(255, 255, 255, 0.62);
}
.case-solution-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.case-solution-cards .page-card {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.07);
}
.case-solution-cards .page-card span {
  color: var(--brand-gold);
}
.case-solution-cards .page-card p {
  color: rgba(255, 255, 255, 0.58);
}
.case-gallery {
  background: #f0f1f7;
}
.case-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.case-gallery-grid figure {
  overflow: hidden;
  margin: 0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(25, 29, 83, 0.1);
}
.case-gallery-grid .gallery-wide {
  grid-column: 1 / -1;
}
.case-gallery-grid img {
  width: 100%;
  aspect-ratio: 1.75;
  object-fit: cover;
  object-position: top;
}
.case-gallery-grid figcaption {
  display: grid;
  gap: 5px;
  padding: 20px 22px;
}
.case-gallery-grid figcaption strong {
  font-family: "Manrope", sans-serif;
}
.case-gallery-grid figcaption span {
  color: var(--corp-muted);
  font-size: 0.88rem;
}
.case-delivery {
  color: #fff;
  background: linear-gradient(145deg, #14143e, var(--brand-indigo));
}
.case-delivery .corp-heading h2 {
  color: #fff;
}
.case-delivery .corp-heading p {
  color: rgba(255, 255, 255, 0.6);
}
.delivery-list {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.delivery-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.delivery-list article > span {
  color: var(--brand-gold);
  font-size: 0.8rem;
  font-weight: 700;
}
.delivery-list h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}
.delivery-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
}

@media (max-width: 767.98px) {
  .case-solution-cards,
  .case-gallery-grid {
    grid-template-columns: 1fr;
  }
  .case-gallery-grid .gallery-wide {
    grid-column: auto;
  }
}

/* Produto Banco de Horas */
.product-inner-hero {
  background:
    radial-gradient(
      circle at 88% 12%,
      rgba(109, 15, 242, 0.38),
      transparent 26%
    ),
    linear-gradient(145deg, #11123a, #213e9d);
}
.product-dashboard {
  overflow: hidden;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
}
.product-dashboard img {
  width: 100%;
  border-radius: 10px;
}
.product-benefits {
  background: #fff;
}
.product-functions {
  color: #fff;
  background: linear-gradient(145deg, #111238, var(--brand-indigo));
}
.product-functions .corp-heading h2 {
  color: #fff;
}
.product-functions .corp-heading p {
  color: rgba(255, 255, 255, 0.62);
}
.implementation-section {
  background: #eef0f8;
}
.implementation-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: implementation;
}
.implementation-steps li {
  min-height: 280px;
  padding: 28px;
  border-top: 1px solid #cdd1e2;
  border-bottom: 1px solid #cdd1e2;
  border-right: 1px solid #cdd1e2;
}
.implementation-steps li:first-child {
  border-left: 1px solid #cdd1e2;
}
.implementation-steps span {
  display: block;
  margin-bottom: 65px;
  color: var(--brand-purple);
  font-size: 0.8rem;
  font-weight: 800;
}
.implementation-steps h3 {
  font-size: 1.25rem;
}
.implementation-steps p {
  line-height: 1.65;
}
.product-gallery {
  background: #fff;
}
.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.product-gallery-grid figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--corp-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(25, 29, 83, 0.08);
}
.product-gallery-grid img {
  width: 100%;
  aspect-ratio: 1.78;
  object-fit: cover;
  object-position: top;
}
.product-gallery-grid figcaption {
  padding: 17px 20px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .implementation-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .implementation-steps,
  .product-gallery-grid {
    grid-template-columns: 1fr;
  }
  .implementation-steps li {
    min-height: auto;
    border-left: 1px solid #cdd1e2;
  }
  .implementation-steps span {
    margin-bottom: 30px;
  }
}
