:root {
  --green: #699f8e;
  --mint: #c0ddd6;
  --deep: #1b5538;
  --ink: #17211c;
  --muted: #65736d;
  --line: #dbe8e4;
  --paper: #f7fbf9;
  --white: #ffffff;
  --cta: #d7f46c;
  --cta-dark: #163523;
  --shadow: 0 24px 70px rgba(14, 35, 25, 0.16);
  --container: 1180px;
  --page-x: clamp(18px, 4vw, 48px);
  --container-pad: max(var(--page-x), calc((100vw - var(--container)) / 2));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

img,
video {
  max-width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100vw;
  max-width: 100vw;
  overflow: hidden;
  padding: 14px var(--container-pad);
  background: rgba(23, 33, 28, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand img {
  display: block;
  width: 150px;
  max-height: 48px;
  object-fit: contain;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-header nav a:hover {
  color: var(--mint);
}

.header-cta,
.primary-cta,
.secondary-cta,
.section-cta,
.band-cta,
.price-card button {
  position: relative;
  border: 0;
  border-radius: 6px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease, background 180ms ease;
}

.header-cta {
  min-height: 46px;
  padding: 0 20px;
  background: var(--cta);
  color: var(--cta-dark);
  box-shadow: 0 10px 26px rgba(215, 244, 108, 0.26);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  padding: 104px var(--container-pad) 38px;
  color: var(--white);
  background: var(--ink) url("./bg-inovares.avif") center / cover no-repeat;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  opacity: 0.42;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 28, 19, 0.96), rgba(9, 28, 19, 0.76) 48%, rgba(9, 28, 19, 0.36)),
    linear-gradient(0deg, rgba(9, 28, 19, 0.92), rgba(9, 28, 19, 0.08) 52%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 4.5vw, 64px);
  align-items: center;
  width: 100%;
  min-width: 0;
  padding-top: 30px;
}

.hero-copy {
  min-width: 0;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--mint);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(3rem, 6vw, 5.45rem);
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero h1 span {
  display: inline;
}

.hero p {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
}

.primary-cta {
  background: var(--cta);
  color: var(--cta-dark);
  box-shadow: 0 18px 44px rgba(215, 244, 108, 0.28), inset 0 -2px 0 rgba(22, 53, 35, 0.16);
}

.section-cta,
.band-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 50px;
  padding: 0 20px;
  background: var(--cta);
  color: var(--cta-dark);
  box-shadow: 0 14px 34px rgba(215, 244, 108, 0.22), inset 0 -2px 0 rgba(22, 53, 35, 0.14);
}

.header-cta::after,
.primary-cta::after,
.section-cta::after,
.band-cta::after,
.price-card button::after {
  content: "→";
  margin-left: 10px;
  font-size: 1.05em;
  line-height: 1;
  transition: transform 180ms ease;
}

.section-cta:hover,
.band-cta:hover,
.header-cta:hover,
.primary-cta:hover,
.price-card button:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 22px 52px rgba(215, 244, 108, 0.32), 0 12px 28px rgba(14, 35, 25, 0.14);
}

.section-cta:hover::after,
.band-cta:hover::after,
.header-cta:hover::after,
.primary-cta:hover::after,
.price-card button:hover::after {
  transform: translateX(4px);
}

.secondary-cta {
  border: 1px solid rgba(255, 255, 255, 0.46);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.secondary-cta:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.72);
}

.event-panel {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  min-width: 0;
  max-width: 100%;
}

.event-panel div {
  padding: 16px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
}

.event-panel span,
.event-panel small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.event-panel strong {
  display: block;
  margin-top: 4px;
  font-size: 1.06rem;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr) minmax(220px, 0.8fr);
  gap: 14px;
  padding: 18px var(--container-pad);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  align-items: stretch;
}

.trust-band div,
.band-cta {
  min-height: 112px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-band div {
  background: var(--white);
}

.band-cta {
  text-align: left;
  line-height: 1.25;
  width: 100%;
  height: 100%;
}

.trust-band strong {
  display: block;
  color: var(--deep);
  font-size: 2.2rem;
  line-height: 1;
}

.trust-band span {
  display: block;
  max-width: 340px;
  margin-top: 8px;
  color: var(--muted);
}

.section {
  padding: clamp(54px, 7vw, 84px) var(--container-pad);
}

.split,
.company,
.experience {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 68px);
}

.section h2,
.experience h2,
.final-cta h2,
.modal-dialog h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.9rem, 3.35vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.section p,
.experience p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.text-stack {
  display: grid;
  gap: 16px;
}

.inline-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--deep);
  font-weight: 850;
  box-shadow: 0 14px 36px rgba(14, 35, 25, 0.07);
}

.line-icon {
  position: relative;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(105, 159, 142, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(192, 221, 214, 0.75), rgba(255, 255, 255, 0.9));
}

.line-icon::before {
  content: "";
  width: 17px;
  height: 9px;
  border-left: 3px solid var(--deep);
  border-bottom: 3px solid var(--deep);
  transform: rotate(-45deg) translate(1px, -1px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-action {
  display: flex;
  margin-top: 24px;
}

.section-action-dark .section-cta {
  background: var(--cta);
  color: var(--cta-dark);
}

.outcome {
  background: var(--white);
}

.outcome-grid,
.audience-grid,
.program-grid,
.pricing-grid,
.faq-list {
  display: grid;
  gap: 14px;
}

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

.outcome-grid article,
.program article,
.price-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.outcome-grid article {
  background: var(--paper);
}

.outcome-grid h3,
.program h3,
.price-card h3 {
  margin: 14px 0 8px;
  color: var(--deep);
  font-size: 1.22rem;
}

.audience {
  background: var(--paper);
}

.audience-grid {
  grid-template-columns: repeat(3, 1fr);
}

.audience-grid div {
  min-height: 96px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--deep);
  font-weight: 850;
}

.program {
  background: #eef6f3;
}

.program-grid {
  grid-template-columns: repeat(3, 1fr);
}

.program article span {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.program h3 {
  margin-top: 10px;
}

.experience {
  align-items: center;
  padding: clamp(54px, 7vw, 84px) var(--container-pad);
  background: var(--white);
}

.experience-copy {
  display: grid;
  justify-items: start;
  gap: 20px;
  max-width: 500px;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.photo-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(14, 35, 25, 0.14);
}

.photo-grid img:nth-child(1),
.photo-grid img:nth-child(4) {
  transform: translateY(22px);
}

.pricing {
  background: var(--ink);
}

.pricing .section-kicker,
.pricing h2 {
  color: var(--white);
}

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

.price-card {
  display: grid;
  gap: 18px;
  align-content: start;
}

.price-card span {
  color: var(--green);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.price-card strong {
  color: var(--deep);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.price-card button {
  min-height: 50px;
  background: var(--cta);
  color: var(--cta-dark);
}

.price-card.featured {
  border-color: var(--green);
  box-shadow: 0 20px 60px rgba(105, 159, 142, 0.22);
}

.commercial-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.commercial-box div {
  display: grid;
  gap: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.commercial-box b {
  color: var(--white);
}

.commercial-box span {
  color: rgba(255, 255, 255, 0.72);
}

.company {
  align-items: center;
  background: var(--white);
}

.company-copy {
  display: grid;
  gap: clamp(22px, 4vw, 42px);
}

.company-gallery {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-rows: 180px 180px;
  gap: 12px;
}

.company-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(14, 35, 25, 0.13);
}

.company-gallery img:first-child {
  grid-row: span 2;
}

.faq {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 18px;
  align-items: start;
}

.faq-list {
  max-width: 900px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--deep);
  font-weight: 900;
}

.faq-list p {
  padding: 0 22px 22px;
}

.faq-card {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: 8px;
  background: var(--deep);
  color: var(--white);
  box-shadow: var(--shadow);
}

.faq-card h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  line-height: 1.08;
}

.faq-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.faq-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-card li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.86);
}

.faq-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cta);
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(42px, 6vw, 68px) var(--container-pad);
  background:
    linear-gradient(135deg, rgba(215, 244, 108, 0.18), transparent 36%),
    var(--deep);
  color: var(--white);
  border-top: 1px solid rgba(215, 244, 108, 0.22);
}

.final-cta h2 {
  max-width: 820px;
  color: var(--white);
}

.final-cta p {
  max-width: 700px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  padding: 0 22px 0 16px;
  border: 0;
  border-radius: 999px;
  background: #24d366;
  color: #082015;
  font-weight: 950;
  box-shadow: 0 16px 42px rgba(36, 211, 102, 0.34), 0 10px 28px rgba(0, 0, 0, 0.22);
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  z-index: -1;
  border-radius: inherit;
  background: rgba(36, 211, 102, 0.22);
  animation: whatsapp-pulse 1.8s ease-out infinite;
}

.whatsapp-icon {
  display: block;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
}

.whatsapp-bubble {
  fill: #ffffff;
}

.whatsapp-phone {
  fill: #128c4a;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(0.94);
    opacity: 0.85;
  }

  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}

.modal.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 20, 16, 0.72);
}

.modal-dialog {
  position: relative;
  width: min(92vw, 520px);
  max-height: 92vh;
  overflow: auto;
  padding: 30px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 1.2rem;
}

.modal-dialog h2 {
  font-size: clamp(2rem, 4.5vw, 3.05rem);
}

.modal-dialog p {
  margin: 12px 0 22px;
  color: var(--muted);
}

#lead-form {
  display: grid;
  gap: 14px;
}

#lead-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 850;
}

#lead-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: 0;
}

#lead-form input:focus {
  border-color: var(--cta);
  box-shadow: 0 0 0 4px rgba(215, 244, 108, 0.22);
}

.thanks-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(9, 28, 19, 0.94), rgba(9, 28, 19, 0.72)),
    url("./bg-inovares.avif") center / cover no-repeat;
}

.thanks-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px var(--container-pad);
}

.thanks-card {
  width: min(100%, 680px);
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.thanks-card img {
  display: block;
  width: 168px;
  margin-bottom: 34px;
  padding: 12px;
  border-radius: 8px;
  background: var(--deep);
}

.thanks-card .section-kicker {
  color: var(--green);
}

.thanks-card h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.thanks-card p {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.thanks-actions .secondary-cta {
  border-color: var(--line);
  color: var(--deep);
  background: var(--white);
}

/* ── Loading state no botão de submit ── */
.primary-cta.is-loading {
  opacity: 0.78;
  cursor: wait;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.primary-cta.is-loading::after {
  content: '';
  display: block;
  width: 17px;
  height: 17px;
  border: 2.5px solid rgba(22, 53, 35, 0.28);
  border-top-color: var(--cta-dark);
  border-radius: 50%;
  animation: btn-spin 0.65s linear infinite;
  flex-shrink: 0;
}

@keyframes btn-spin {
  to { transform: rotate(360deg); }
}

/* ── Ícone de sucesso na página de obrigado ── */
.success-icon {
  margin-bottom: 28px;
}

.checkmark-svg {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: block;
  stroke-width: 3.5;
  stroke: var(--white);
  stroke-miterlimit: 10;
}

.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 3.5;
  stroke: var(--deep);
  fill: none;
  animation: ck-draw 0.55s cubic-bezier(0.65, 0, 0.45, 1) 0.1s forwards;
}

.checkmark-bg {
  fill: none;
  stroke: none;
  animation: ck-fill 0.4s ease-in-out 0.55s forwards;
}

.checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  stroke: var(--deep);
  animation: ck-draw 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.75s forwards;
}

.checkmark-svg.animated .checkmark-circle {
  animation: ck-draw 0.55s cubic-bezier(0.65, 0, 0.45, 1) 0.1s forwards;
}

@keyframes ck-draw {
  100% { stroke-dashoffset: 0; }
}

@keyframes ck-fill {
  100% { fill: var(--cta); stroke: var(--cta); }
}

@keyframes ck-bounce {
  0%, 100% { transform: none; }
  50% { transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-video {
    display: none;
  }
}

@media (max-width: 1080px) {
  .outcome-grid,
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  .site-header nav {
    display: none;
  }

  .hero-content,
  .split,
  .company,
  .experience,
  .pricing-grid,
  .commercial-box,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-card {
    position: static;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
  }

  .trust-band,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .band-cta {
    width: 100%;
    text-align: center;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  body,
  main,
  section {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .site-header {
    gap: 10px;
    padding: 12px 14px;
  }

  .brand img {
    width: 112px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 90px 16px 32px;
  }

  .hero-content {
    padding-top: 12px;
    overflow: hidden;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 11vw, 2.85rem);
    line-height: 1;
  }

  .hero h1 span {
    display: block;
  }

  .hero p {
    max-width: 342px;
    font-size: 0.98rem;
  }

  .hero-actions,
  .primary-cta,
  .secondary-cta,
  .section-cta {
    width: 100%;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    justify-content: center;
    width: 64px;
    height: 64px;
    min-height: 64px;
    padding: 0;
  }

  .whatsapp-icon {
    width: 44px;
    height: 44px;
  }

  .whatsapp-label {
    display: none;
  }

  .event-panel {
    padding: 12px;
  }

  .section,
  .experience,
  .final-cta {
    padding-left: 16px;
    padding-right: 16px;
  }

  .outcome-grid,
  .program-grid,
  .photo-grid,
  .company-gallery {
    grid-template-columns: 1fr;
  }

  .company-gallery {
    grid-template-rows: none;
  }

  .photo-grid img,
  .photo-grid img:nth-child(1),
  .photo-grid img:nth-child(4),
  .company-gallery img {
    height: 220px;
    transform: none;
  }

  .company-gallery img:first-child {
    grid-row: auto;
  }

  .modal-dialog {
    width: min(calc(100vw - 28px), 520px);
    max-height: calc(100svh - 28px);
    padding: 24px 18px;
  }

  .modal-dialog h2 {
    font-size: clamp(1.65rem, 7vw, 2.05rem);
    line-height: 1.08;
  }

  .modal-dialog p {
    font-size: 0.96rem;
  }

  #lead-form input {
    min-height: 50px;
  }
}

.outcome {
  position: relative;
  overflow: hidden;
}

.outcome::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 21%;
  background-image: url('./1.avif');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

.audience {
  position: relative;
  overflow: hidden;
}

.audience::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 21%;
  background-image: url('./2.avif');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

.outcome > *,
.audience > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 640px) {
  .outcome::before {
    width: 35%;
    height: 45%;
    top: 0;
    bottom: auto;
    left: auto;
    right: 0;
    background-position: right top;
    opacity: 0.6;
  }

  .audience::after {
    width: 35%;
    height: 45%;
    top: 0;
    bottom: auto;
    background-position: right top;
    opacity: 0.6;
  }
}

.pricing-single-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.pricing-single-layout .section-heading {
  margin-bottom: 0;
}

.price-installment {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 4px 0 2px;
}

.price-installment small {
  color: var(--green);
  font-size: 1.1rem;
  font-weight: 900;
}

.price-installment strong {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  color: var(--deep);
  line-height: 1;
}

.price-card .price-total {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 400;
}

.price-card .price-total b {
  font-weight: 600;
}

@media (max-width: 920px) {
  .pricing-single-layout {
    grid-template-columns: 1fr;
  }
}

.authority-strip {
  padding: 0 var(--container-pad) clamp(32px, 4vw, 48px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

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

.authority-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.authority-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--deep);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1;
}

.authority-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.authority-card--highlight {
  border-color: var(--green);
  background: linear-gradient(135deg, rgba(105, 159, 142, 0.08), var(--white));
}

.authority-card--highlight strong {
  color: var(--green);
}

@media (max-width: 640px) {
  .authority-grid {
    grid-template-columns: 1fr;
  }
}
