:root {
  --font-sans: "Manrope", "Segoe UI", Arial, sans-serif;
  --font-display: "Manrope", "Segoe UI", Arial, sans-serif;
  --background: 210 30% 98%;
  --foreground: 220 26% 10%;
  --border: 214 22% 86%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  color: #f8fafc;
  background:
    radial-gradient(circle at 8% -2%, rgba(71, 116, 213, 0.16), transparent 24%),
    radial-gradient(circle at 92% 0%, rgba(31, 157, 85, 0.08), transparent 18%),
    radial-gradient(circle at 50% 18%, rgba(120, 156, 222, 0.08), transparent 32%),
    linear-gradient(180deg, #fbfdff 0%, #f4f8fc 38%, #eef3f8 100%);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 8%, rgba(255, 255, 255, 0.74), transparent 22%),
    radial-gradient(circle at 82% 0%, rgba(150, 177, 219, 0.14), transparent 21%);
  opacity: 0.95;
}

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

button,
input,
select {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

button {
  border: 0;
}

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.icon {
  width: 1rem;
  height: 1rem;
}

.icon-rotate {
  transform: rotate(-45deg);
}

.lifeup-home {
  position: relative;
  z-index: 1;
}

.approved-hero-page {
  position: relative;
  padding: 0;
}

.approved-hero-shell {
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 108px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 24%, rgba(43, 113, 255, 0.2), transparent 26%),
    radial-gradient(circle at 42% 12%, rgba(21, 54, 104, 0.16), transparent 24%),
    linear-gradient(180deg, #050b15 0%, #040914 100%);
}

.approved-hero-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  width: 100%;
  min-height: 108px;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 1.5rem;
  background: #030a15;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.approved-hero-header[data-scrolled="true"] {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: #030a15;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.025);
}

.approved-hero-logo {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-self: start;
}

.approved-hero-logo-image {
  width: auto;
  height: 5.665rem;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(47, 121, 255, 0.12));
}

.approved-hero-header-nav {
  display: none;
  align-items: center;
  justify-self: center;
  gap: 1.75rem;
}

.approved-hero-header-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.25rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
  transition: color 1400ms ease;
}

.approved-hero-header-link::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0.05rem;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, transparent, #2f79ff 18%, #70b7ff 50%, #2f79ff 82%, transparent);
  box-shadow: 0 0 9px rgba(47, 121, 255, 0.85);
  transition: transform 1400ms ease;
}

.approved-hero-header-link:hover,
.approved-hero-header-link:focus-visible {
  color: #fff;
}

.approved-hero-header-link:hover::after,
.approved-hero-header-link:focus-visible::after {
  transform: scaleX(1);
}

.approved-hero-header-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 0.75rem;
}

.approved-hero-header-plan,
.approved-hero-header-whatsapp {
  display: inline-flex;
  min-width: 9.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 12px;
  padding: 0.875rem 1.25rem;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.approved-hero-header-plan {
  background: #2f79ff;
  box-shadow: 0 18px 36px rgba(47, 121, 255, 0.28);
}

.approved-hero-header-plan:hover,
.approved-hero-header-plan:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(125, 211, 252, 0.5);
  background: #3b84ff;
}

.approved-hero-header-whatsapp {
  min-width: 11.5rem;
  border-color: rgba(52, 211, 153, 0.3);
  background: #10b981;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.approved-hero-header-whatsapp:hover,
.approved-hero-header-whatsapp:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(110, 231, 183, 0.5);
  background: #34d399;
}

.approved-hero-main {
  padding: 1.5rem;
}

.approved-hero-copy {
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
}

.approved-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 4vw, 4.35rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.approved-hero-showcase {
  position: relative;
  width: 100vw;
  max-width: none;
  height: var(--approved-hero-card-height);
  --approved-hero-card-width: min(72vw, 1120px);
  --approved-hero-browser-bar-height: 36px;
  --approved-hero-card-height: calc(var(--approved-hero-browser-bar-height) + (var(--approved-hero-card-width) / 2.103));
  margin: 1.75rem calc(50% - 50vw) 0;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0, black 5%, black 95%, transparent 100%);
}

.approved-hero-showcase-track {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: max-content;
  align-items: flex-start;
  column-gap: clamp(1.5rem, 2.5vw, 3rem);
  padding-left: calc((100vw - var(--approved-hero-card-width)) / 2);
  will-change: transform;
}

.approved-hero-screen {
  position: relative;
  display: flex;
  width: var(--approved-hero-card-width);
  height: var(--approved-hero-card-height);
  flex-shrink: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(186, 230, 253, 0.3);
  border-radius: 22px;
  background: #0c1627;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.approved-hero-screen-bar {
  display: flex;
  flex: 0 0 var(--approved-hero-browser-bar-height);
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.75rem 1rem;
  background: linear-gradient(180deg, rgba(4, 9, 20, 0.9) 0%, rgba(8, 14, 26, 0.82) 100%);
}

.approved-hero-screen-dots {
  display: flex;
  gap: 0.5rem;
}

.approved-hero-screen-dots span {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
}

.approved-hero-screen-image-shell {
  position: relative;
  flex: 1;
  background: #fff;
}

.approved-hero-screen-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approved-hero-carousel-control {
  position: absolute;
  top: 50%;
  z-index: 20;
  display: flex;
  width: 3.5rem;
  height: 3.5rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: #fff;
  background: rgba(7, 17, 31, 0.8);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
  transition: opacity 180ms ease, border-color 180ms ease, background 180ms ease;
}

.approved-hero-carousel-control svg {
  width: 1.75rem;
  height: 1.75rem;
}

.approved-hero-showcase:hover .approved-hero-carousel-control,
.approved-hero-carousel-control:focus-visible {
  opacity: 1;
}

.approved-hero-carousel-control:hover,
.approved-hero-carousel-control:focus-visible {
  border-color: rgba(125, 211, 252, 0.5);
  background: #0d2038;
}

.approved-hero-carousel-control-previous {
  left: clamp(1rem, 3vw, 3.5rem);
}

.approved-hero-carousel-control-next {
  right: clamp(1rem, 3vw, 3.5rem);
}

.pricing-section,
.homepage-process-section,
.homepage-benefits-section,
.homepage-faq-section,
.homepage-final-cta-section,
.homepage-footer {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #f8fafc;
  background: #040b16;
}

.pricing-section {
  scroll-margin-top: 108px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: clamp(4.5rem, 5vw, 5.5rem);
  background:
    radial-gradient(circle at 78% 24%, rgba(43, 113, 255, 0.2), transparent 26%),
    radial-gradient(circle at 42% 12%, rgba(21, 54, 104, 0.16), transparent 24%),
    linear-gradient(180deg, #050b15 0%, #040914 100%);
}

.pricing-inner {
  position: relative;
  width: 94vw;
  margin-inline: auto;
}

.pricing-copy {
  margin-inline: auto;
  text-align: center;
}

.pricing-heading {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.6vw, 4.25rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.pricing-subtitle {
  max-width: 56rem;
  margin: 1.25rem auto 0;
  color: #e2e8f0;
  font-size: 17px;
  font-weight: 500;
  line-height: 2rem;
}

.pricing-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(16px, 1.45vw, 24px);
  margin-top: clamp(2.75rem, 3.7vw, 3.5rem);
}

.pricing-plan-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 640px;
  flex-direction: column;
  border: 1px solid;
  border-radius: 28px;
  padding: 1.75rem;
  color: #fff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.pricing-plan-card-start {
  border-color: rgba(255, 255, 255, 0.15);
  background: linear-gradient(180deg, rgba(8, 18, 40, 0.95) 0%, rgba(5, 13, 31, 0.98) 100%);
  box-shadow: 0 24px 72px rgba(4, 11, 28, 0.22);
}

.pricing-plan-card-pro {
  border-color: rgba(96, 165, 250, 0.8);
  background: linear-gradient(180deg, rgba(9, 27, 61, 0.98) 0%, rgba(5, 18, 43, 0.99) 100%);
  box-shadow: 0 0 0 1px rgba(77, 163, 255, 0.5), 0 32px 90px rgba(37, 99, 235, 0.24);
}

.pricing-plan-card-premium {
  border-color: rgba(167, 139, 250, 0.45);
  background: linear-gradient(180deg, rgba(8, 15, 35, 0.98) 0%, rgba(5, 11, 27, 0.99) 100%);
  box-shadow: 0 24px 80px rgba(26, 12, 64, 0.28);
}

.pricing-plan-badge {
  position: absolute;
  top: -14px;
  right: 28px;
  display: inline-flex;
  height: 28px;
  align-items: center;
  border-radius: 999px;
  padding-inline: 16px;
  color: #fff;
  background: #2563eb;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.pricing-plan-header {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 1.25rem;
}

.pricing-plan-icon {
  display: flex;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 22px;
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.12);
}

.pricing-plan-card-pro .pricing-plan-icon {
  border-color: rgba(147, 197, 253, 0.3);
  color: #fff;
  background: #2563eb;
}

.pricing-plan-card-premium .pricing-plan-icon {
  border-color: rgba(167, 139, 250, 0.3);
  color: #c4b5fd;
  background: rgba(139, 92, 246, 0.12);
}

.pricing-plan-icon svg {
  width: 36px;
  height: 36px;
}

.pricing-plan-eyebrow {
  margin: 0;
  color: #93c5fd;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.pricing-plan-card-premium .pricing-plan-eyebrow,
.pricing-plan-card-premium .pricing-plan-price-meta,
.pricing-plan-card-premium .pricing-plan-section-heading span:first-child {
  color: #c4b5fd;
}

.pricing-plan-title {
  margin: 0.5rem 0 0;
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.pricing-plan-price-wrap {
  min-width: 0;
  margin-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 1.75rem;
}

.pricing-plan-price {
  margin: 0;
  color: #fff;
  font-size: clamp(4.35rem, 5vw, 5.1rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.pricing-plan-card-pro .pricing-plan-price {
  color: #60a5fa;
}

.pricing-plan-card-premium .pricing-plan-price {
  color: #a78bfa;
}

.pricing-plan-price-meta {
  margin: 0.5rem 0 0;
  color: #c4b5fd;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-plan-subtitle {
  max-width: 36rem;
  margin: 1rem 0 0;
  color: #e2e8f0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75rem;
}

.pricing-plan-section-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.pricing-plan-section-heading span:first-child {
  color: #93c5fd;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.pricing-plan-section-heading span:last-child {
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.12);
}

.pricing-plan-included,
.pricing-plan-excluded {
  display: grid;
  gap: 0.75rem;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: #f1f5f9;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75rem;
}

.pricing-plan-excluded {
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.5rem;
}

.pricing-plan-included li,
.pricing-plan-excluded li {
  display: flex;
  gap: 0.75rem;
}

.pricing-plan-included svg,
.pricing-plan-excluded svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.25rem;
  color: #93c5fd;
}

.pricing-plan-excluded svg {
  width: 18px;
  height: 18px;
  color: rgba(148, 163, 184, 0.8);
}

.pricing-plan-card-premium .pricing-plan-included svg {
  color: #c4b5fd;
}

.pricing-plan-footnote {
  margin: 1.25rem 0 0;
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5rem;
}

.pricing-plan-note {
  margin-top: 1rem;
}

.pricing-plan-actions {
  margin-top: auto;
  padding-top: 1.5rem;
}

.pricing-plan-primary {
  display: inline-flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 1rem 1.75rem;
  color: #fff;
  background: linear-gradient(180deg, #215fda 0%, #174ac6 100%);
  box-shadow: 0 18px 36px rgba(33, 95, 218, 0.26);
  font-size: 16px;
  font-weight: 900;
  transition: transform 180ms ease, filter 180ms ease;
}

.pricing-plan-card-pro .pricing-plan-primary {
  background: linear-gradient(180deg, #3182ff 0%, #075cff 100%);
  box-shadow: 0 20px 42px rgba(37, 99, 235, 0.34);
}

.pricing-plan-card-premium .pricing-plan-primary {
  background: linear-gradient(180deg, #a56bff 0%, #7c3dff 100%);
  box-shadow: 0 18px 38px rgba(124, 58, 237, 0.28);
}

.pricing-plan-primary:hover,
.pricing-plan-primary:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.pricing-plan-primary svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.75rem;
}

.pricing-footer-note {
  margin-top: 2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(9, 17, 35, 0.96) 0%, rgba(5, 10, 22, 0.99) 100%);
  box-shadow: 0 18px 60px rgba(3, 8, 20, 0.28);
}

.pricing-footer-note p {
  margin: 0;
  color: #e2e8f0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.75rem;
}

#processo,
#faq {
  scroll-margin-top: 128px;
}

.homepage-section-inner {
  width: min(92vw, 1320px);
  margin-inline: auto;
}

.homepage-section-heading {
  max-width: 960px;
  margin-inline: auto;
  text-align: center;
}

.homepage-heading-line {
  position: relative;
  display: block;
}

.homepage-section-heading .homepage-heading-line > h2 {
  width: 100%;
  margin-top: 0;
  text-align: center;
}

.homepage-section-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(40px, 3.5vw, 50px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.homepage-section-heading p {
  max-width: 760px;
  margin: 20px auto 0;
  color: #b8c2d2;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 450;
  line-height: 1.55;
}

.homepage-process-section {
  border-top: 1px solid rgba(99, 153, 222, 0.12);
  padding: 48px 0 56px;
  background:
    radial-gradient(circle at 52% 46%, rgba(25, 91, 185, 0.16), transparent 38%),
    linear-gradient(180deg, #040b16 0%, #050c18 100%);
}

.homepage-process-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 3.3vw, 48px);
  margin: clamp(82px, 7vw, 108px) 0 0;
  padding: 0;
  list-style: none;
}

.homepage-process-step {
  position: relative;
  min-width: 0;
  min-height: 356px;
  border: 1px solid rgba(93, 155, 231, 0.5);
  border-radius: 26px;
  padding: 74px 30px 32px;
  background:
    radial-gradient(circle at 50% 0%, rgba(41, 112, 218, 0.15), transparent 42%),
    linear-gradient(180deg, rgba(7, 22, 45, 0.96), rgba(5, 15, 31, 0.98));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.homepage-process-marker {
  position: absolute;
  z-index: 2;
  top: -46px;
  left: 50%;
  display: flex;
  width: 92px;
  height: 92px;
  align-items: center;
  justify-content: center;
  border: 1px solid #358dff;
  border-radius: 50%;
  color: #6eb6ff;
  background: radial-gradient(circle at 50% 35%, #123d73, #07172f 70%);
  box-shadow: 0 16px 44px rgba(35, 112, 225, 0.26);
  transform: translateX(-50%);
}

.homepage-process-step:nth-child(n+3) .homepage-process-marker {
  border-color: rgba(151, 91, 255, 0.72);
  color: #a67bff;
  background: radial-gradient(circle at 50% 35%, #25205d, #0d1734 72%);
}

.homepage-process-marker svg {
  width: 38px;
  height: 38px;
  stroke-width: 1.8;
}

.homepage-process-number {
  display: block;
  margin-top: 10px;
  color: #3c8eff;
  font-size: clamp(35px, 3vw, 46px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.homepage-process-step:nth-child(n+3) .homepage-process-number {
  color: #8b6df4;
}

.homepage-process-step h3 {
  min-height: 58px;
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(21px, 1.7vw, 24px);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.035em;
}

.homepage-process-divider {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 22px;
  background: rgba(123, 164, 216, 0.34);
}

.homepage-process-step p {
  margin: 26px 0 0;
  color: #b7c2d2;
  font-size: 15px;
  font-weight: 450;
  line-height: 1.65;
}

.homepage-process-connector {
  position: absolute;
  z-index: 3;
  top: 128px;
  right: calc(clamp(28px, 3.3vw, 48px) * -0.72);
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #1788ff;
  border-radius: 50%;
  color: #65b4ff;
  background: #061225;
  box-shadow: 0 0 0 9px rgba(5, 14, 29, 0.88), 0 0 24px rgba(23, 136, 255, 0.25);
}

.homepage-process-step:nth-child(3) .homepage-process-connector {
  border-color: #915dff;
  color: #b087ff;
}

.homepage-process-connector svg {
  width: 22px;
  height: 22px;
}

.homepage-benefits-section {
  border-top: 1px solid rgba(86, 145, 218, 0.1);
  padding: 48px 0 56px;
  background:
    radial-gradient(circle at 50% 28%, rgba(25, 91, 185, 0.15), transparent 36%),
    linear-gradient(180deg, #050c18 0%, #040b16 100%);
}

.homepage-benefits-heading h2 {
  max-width: 980px;
  font-size: clamp(38px, 3.4vw, 48px);
  line-height: 1.06;
}

.homepage-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: clamp(54px, 5vw, 76px);
}

.homepage-benefit-card {
  min-height: 344px;
  border: 1px solid rgba(86, 150, 228, 0.52);
  border-radius: 22px;
  padding: 30px 26px;
  background: linear-gradient(155deg, rgba(8, 28, 56, 0.96), rgba(5, 16, 33, 0.98));
  box-shadow: 0 24px 66px rgba(2, 8, 20, 0.24);
}

.homepage-benefit-icon {
  display: flex;
  width: 88px;
  height: 88px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(44, 139, 255, 0.72);
  border-radius: 25px;
  color: #48a2ff;
  background: rgba(4, 18, 40, 0.72);
  box-shadow: inset 0 0 30px rgba(40, 123, 255, 0.08);
}

.homepage-benefit-card:last-child .homepage-benefit-icon {
  border-color: rgba(138, 91, 255, 0.6);
  color: #9272ff;
}

.homepage-benefit-icon svg {
  width: 42px;
  height: 42px;
  stroke-width: 1.8;
}

.homepage-benefit-card h3 {
  margin: 26px 0 0;
  color: #fff;
  font-size: clamp(20px, 1.55vw, 22px);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.homepage-benefit-divider {
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 22px;
  border-radius: 99px;
  background: #238cff;
}

.homepage-benefit-card p {
  margin: 24px 0 0;
  color: #c0c9d7;
  font-size: 16px;
  line-height: 1.65;
}

.homepage-faq-section {
  border-top: 1px solid rgba(96, 148, 211, 0.1);
  padding: 48px 0;
  background:
    radial-gradient(circle at 75% 26%, rgba(29, 100, 214, 0.12), transparent 34%),
    linear-gradient(180deg, #040b16 0%, #050d1a 100%);
}

.homepage-faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.7fr);
  gap: clamp(54px, 7vw, 110px);
  align-items: start;
}

.homepage-faq-intro {
  min-width: 0;
}

.homepage-faq-intro h2 {
  width: 100%;
  margin: 0;
  color: #fff;
  font-size: clamp(40px, 3.5vw, 50px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.05em;
  text-align: center;
  text-transform: uppercase;
}

.homepage-faq-intro h2 strong {
  color: inherit;
  background: none;
  font-weight: inherit;
}

.homepage-faq-intro > p {
  max-width: 400px;
  margin: 24px 0 0;
  color: #b6c0cf;
  font-size: 17px;
  line-height: 1.6;
}

.homepage-faq-highlights {
  display: grid;
  gap: 24px;
  margin-top: 42px;
}

.homepage-faq-highlight {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  align-items: center;
}

.homepage-faq-highlight > span {
  display: flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(95, 145, 212, 0.4);
  border-radius: 14px;
  color: #51a2ff;
  background: rgba(8, 25, 50, 0.7);
}

.homepage-faq-highlight > span svg {
  width: 28px;
  height: 28px;
}

.homepage-faq-highlight h3 {
  margin: 0;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
}

.homepage-faq-highlight p {
  margin: 4px 0 0;
  color: #aab6c8;
  font-size: 14px;
  line-height: 1.5;
}

.homepage-faq-list {
  display: grid;
  gap: 13px;
  margin-top: 10px;
  border: 0;
}

.homepage-faq-item {
  overflow: hidden;
  border: 1px solid rgba(115, 142, 180, 0.38);
  border-radius: 14px;
  background: rgba(5, 17, 34, 0.76);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.homepage-faq-item[data-open="true"] {
  border-color: #3295ff;
  background: linear-gradient(145deg, rgba(10, 43, 87, 0.96), rgba(7, 25, 51, 0.98));
  box-shadow: inset 0 0 46px rgba(30, 113, 235, 0.08), 0 20px 60px rgba(0, 8, 24, 0.2);
}

.homepage-faq-item button {
  display: grid;
  width: 100%;
  min-height: 74px;
  grid-template-columns: 42px minmax(0, 1fr) 24px;
  gap: 18px;
  align-items: center;
  padding: 15px 24px;
  color: #fff;
  text-align: left;
  background: transparent;
}

.homepage-faq-item button:focus-visible {
  outline: 2px solid #68b2ff;
  outline-offset: -4px;
  border-radius: 12px;
}

.homepage-faq-toggle {
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid #946bff;
  border-radius: 50%;
  color: #a684ff;
  font-size: 24px;
  line-height: 1;
}

.homepage-faq-item[data-open="true"] .homepage-faq-toggle {
  border-color: #247fff;
  color: #fff;
  background: #2677f4;
}

.homepage-faq-question {
  color: #fff;
  font-size: clamp(16px, 1.3vw, 18px);
  font-weight: 600;
  line-height: 1.35;
}

.homepage-faq-chevron {
  color: #cbd5e1;
  font-size: 25px;
  line-height: 1;
  transform: translateY(-3px);
}

.homepage-faq-item[data-open="true"] .homepage-faq-chevron {
  transform: rotate(180deg) translateY(3px);
}

.homepage-faq-answer {
  padding: 0 72px 26px 84px;
}

.homepage-faq-answer p {
  max-width: 780px;
  margin: 0;
  color: #b9c4d4;
  font-size: 15px;
  line-height: 1.65;
}

.homepage-final-cta-section {
  padding: 40px 0;
  background:
    radial-gradient(circle at 50% 64%, rgba(50, 93, 255, 0.2), transparent 36%),
    #040b16;
}

.homepage-final-cta-window {
  position: relative;
  width: min(94vw, 1320px);
  min-height: 620px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(78, 143, 224, 0.52);
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 50% 76%, rgba(37, 100, 255, 0.28), transparent 38%),
    radial-gradient(circle at 78% 58%, rgba(118, 64, 255, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(4, 13, 29, 0.98), rgba(5, 14, 34, 0.99));
  box-shadow: inset 0 0 90px rgba(18, 59, 122, 0.12);
}

.homepage-final-cta-window::before {
  content: "";
  position: absolute;
  right: 12%;
  bottom: 54px;
  left: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #178bff 28%, #8a5cff 72%, transparent);
  box-shadow: 0 0 32px 5px rgba(47, 113, 255, 0.65);
}

.homepage-final-cta-browser {
  display: flex;
  height: 46px;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(93, 132, 181, 0.2);
  padding-inline: 24px;
}

.homepage-final-cta-browser span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #223856;
}

.homepage-final-cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.8fr);
  align-items: stretch;
  gap: clamp(42px, 5vw, 82px);
  padding: 42px clamp(42px, 5vw, 76px) 48px;
}

.homepage-final-cta-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}

.homepage-final-cta-eyebrow {
  display: block;
  margin-bottom: 20px;
  color: #4da3ff;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.18em;
}

.homepage-final-cta-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 3.25vw, 52px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.homepage-final-cta-copy h2 strong {
  color: inherit;
  background: none;
  font-weight: inherit;
}

.homepage-final-cta-heading-line {
  width: 100%;
}

.homepage-final-cta-copy > p {
  max-width: 620px;
  margin: 24px 0 0;
  color: #bdc7d7;
  font-size: 18px;
  line-height: 1.55;
}

.homepage-final-cta-actions {
  display: flex;
  gap: 18px;
  margin-top: 30px;
  padding-top: 0;
}

.homepage-final-cta-copy::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: min(100%, 640px);
  height: clamp(292px, 28vw, 336px);
  border: 1px solid rgba(86, 146, 233, 0.32);
  border-radius: 22px;
  background: rgba(4, 14, 32, 0.72) url("./homepage-cta-worker.png") center bottom / contain no-repeat;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28), inset 0 1px rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.homepage-final-cta-copy::before {
  content: "";
  position: absolute;
  left: 18px;
  bottom: calc(clamp(292px, 28vw, 336px) - 18px);
  z-index: 1;
  width: 38px;
  height: 10px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 5px 5px, rgba(165, 189, 220, 0.75) 0 3px, transparent 3.4px),
    radial-gradient(circle at 19px 5px, rgba(165, 189, 220, 0.75) 0 3px, transparent 3.4px),
    radial-gradient(circle at 33px 5px, rgba(165, 189, 220, 0.75) 0 3px, transparent 3.4px);
  opacity: 0.95;
  pointer-events: none;
}

.homepage-final-cta-primary,
.homepage-final-cta-whatsapp {
  display: inline-flex;
  min-width: 224px;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 13px;
  padding: 16px 28px;
  color: #fff;
  font-size: 17px;
  font-weight: 750;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.homepage-final-cta-primary {
  background: linear-gradient(180deg, #3485ff, #0860ed);
  box-shadow: 0 20px 50px rgba(27, 105, 255, 0.35);
}

.homepage-final-cta-whatsapp {
  border: 1px solid rgba(52, 211, 153, 0.55);
  background: #16a765;
  box-shadow: 0 18px 42px rgba(22, 167, 101, 0.22);
}

.homepage-final-cta-primary:hover,
.homepage-final-cta-whatsapp:hover,
.homepage-final-cta-primary:focus-visible,
.homepage-final-cta-whatsapp:focus-visible {
  transform: translateY(-2px);
}

.homepage-final-cta-primary svg,
.homepage-final-cta-whatsapp svg {
  width: 24px;
  height: 24px;
}

.homepage-final-cta-form {
  position: relative;
  width: 100%;
  border: 1px solid rgba(88, 151, 238, 0.38);
  border-radius: 20px;
  padding: 30px;
  background: rgba(5, 16, 36, 0.84);
  box-shadow: 0 26px 70px rgba(0, 5, 20, 0.36), inset 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
}

.homepage-final-cta-form-heading h3 {
  margin: 0;
  color: #fff;
  font-size: 25px;
  font-weight: 650;
  line-height: 1.2;
}

.homepage-final-cta-form-heading p {
  margin: 8px 0 0;
  color: #aebacf;
  font-size: 14px;
  line-height: 1.5;
}

.homepage-final-cta-field {
  display: grid;
  gap: 7px;
  margin-top: 17px;
}

.homepage-final-cta-field label {
  color: #dbe8f9;
  font-size: 13px;
  font-weight: 650;
}

.homepage-final-cta-field input,
.homepage-final-cta-field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(113, 151, 201, 0.34);
  border-radius: 10px;
  outline: none;
  padding: 11px 14px;
  color: #fff;
  background: rgba(2, 10, 25, 0.78);
  font-size: 15px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.homepage-final-cta-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #79baff 50%),
    linear-gradient(135deg, #79baff 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 20px,
    calc(100% - 12px) 20px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.homepage-final-cta-field input:focus-visible,
.homepage-final-cta-field select:focus-visible {
  border-color: #4da3ff;
  box-shadow: 0 0 0 3px rgba(77, 163, 255, 0.18);
}

.homepage-final-cta-field input[aria-invalid="true"] {
  border-color: #fb7185;
}

.homepage-final-cta-field-error {
  color: #fda4af;
  font-size: 12px;
}

.homepage-final-cta-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.homepage-final-cta-submit {
  display: inline-flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(180deg, #3485ff, #0860ed);
  box-shadow: 0 18px 42px rgba(27, 105, 255, 0.28);
  font-size: 15px;
  font-weight: 750;
  transition: transform 180ms ease, filter 180ms ease;
}

.homepage-final-cta-submit:hover:not(:disabled),
.homepage-final-cta-submit:focus-visible:not(:disabled) {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.homepage-final-cta-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.homepage-final-cta-privacy {
  margin: 13px 0 0;
  color: #8998af;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.homepage-final-cta-privacy-link,
.homepage-final-cta-feedback-link {
  color: #79baff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.homepage-final-cta-feedback {
  min-height: 38px;
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.homepage-final-cta-feedback [data-status="success"] {
  color: #6ee7b7;
}

.homepage-final-cta-feedback [data-status="error"] {
  color: #fda4af;
}

.homepage-footer {
  padding: 36px 0;
  background:
    radial-gradient(circle at 82% 100%, rgba(108, 53, 225, 0.22), transparent 32%),
    linear-gradient(180deg, #040b16, #050c19);
}

.homepage-footer-panel {
  width: min(96vw, 1360px);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(91, 147, 218, 0.48);
  border-radius: 24px;
  background: linear-gradient(150deg, rgba(5, 17, 34, 0.98), rgba(8, 13, 35, 0.98));
  box-shadow: inset 0 0 90px rgba(59, 74, 168, 0.08);
}

.homepage-footer-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.68fr 1.48fr 0.82fr;
  gap: clamp(30px, 4vw, 66px);
  padding: clamp(46px, 5vw, 76px);
}

.homepage-footer-brand img {
  width: min(100%, 320px);
  height: auto;
  object-fit: contain;
}

.homepage-footer-brand p {
  max-width: 300px;
  margin: 36px 0 0;
  color: #bcc6d5;
  font-size: 16px;
  line-height: 1.65;
}

.homepage-footer-column h2 {
  margin: 0;
  border-bottom: 1px solid rgba(112, 146, 190, 0.35);
  padding-bottom: 20px;
  color: #4da0ff;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.homepage-footer-contact h2,
.homepage-footer-legal h2 {
  color: #9a72ff;
}

.homepage-footer-column nav {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.homepage-footer-link,
.homepage-footer-contact-link,
.homepage-footer-legal-link {
  position: relative;
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  border-radius: 5px;
  color: #f1f5f9;
  font-size: 16px;
  line-height: 1.4;
  outline: none;
  transition: color 980ms ease;
}

.homepage-footer-link::after,
.homepage-footer-contact-link::after,
.homepage-footer-legal-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, transparent, currentColor 18%, currentColor 82%, transparent);
  box-shadow: 0 0 8px currentColor;
  transition: transform 980ms ease;
}

.homepage-footer-link:hover::after,
.homepage-footer-link:focus-visible::after,
.homepage-footer-contact-link:hover::after,
.homepage-footer-contact-link:focus-visible::after,
.homepage-footer-legal-link:hover::after,
.homepage-footer-legal-link:focus-visible::after {
  transform: scaleX(1);
}

.homepage-footer-link:hover,
.homepage-footer-contact-link:hover,
.homepage-footer-legal-link:hover {
  color: #a8cfff;
}

.homepage-footer-link:focus-visible,
.homepage-footer-contact-link:focus-visible,
.homepage-footer-legal-link:focus-visible {
  box-shadow: 0 0 0 3px rgba(77, 160, 255, 0.42);
}

.homepage-footer-link svg,
.homepage-footer-legal-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: #3b98ff;
}

.homepage-footer-contact-link {
  margin-top: 22px;
  overflow-wrap: anywhere;
  font-size: 14px;
}

.homepage-footer-contact-link > span {
  display: flex;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(107, 153, 215, 0.44);
  border-radius: 11px;
  color: #74b6ff;
}

.homepage-footer-contact-link svg {
  width: 21px;
  height: 21px;
}

.homepage-footer-legal {
  display: grid;
  align-content: start;
  gap: 28px;
}

.homepage-footer-legal-link svg {
  color: #9c70ff;
}

.homepage-footer-copyright {
  margin: 0;
  border-top: 1px solid rgba(94, 139, 199, 0.42);
  padding: 28px 24px;
  color: #aeb9ca;
  font-size: 15px;
  text-align: center;
}

@media (min-width: 768px) {
  .approved-hero-header {
    padding-inline: 2rem;
  }

  .approved-hero-main {
    padding-inline: 2rem;
  }
}

@media (min-width: 1024px) {
  .approved-hero-header {
    padding-inline: 2rem;
  }
}

@media (min-width: 1180px) {
  .approved-hero-shell {
    padding-top: 81px;
  }

  .approved-hero-header {
    min-height: 81px;
    gap: 18px;
    padding-inline: 30px;
  }

  .approved-hero-logo-image {
    height: 68.2px;
    max-width: 286.8px;
  }

  .approved-hero-header-nav {
    display: flex;
    gap: 21px;
  }

  .approved-hero-header-link {
    padding-block: 6px;
    font-size: 15px;
    line-height: 22.5px;
  }

  .approved-hero-header-actions {
    gap: 9px;
  }

  .approved-hero-header-plan,
  .approved-hero-header-whatsapp {
    gap: 6px;
    border-radius: 9px;
    padding: 10.5px 15px;
    font-size: 14px;
  }

  .approved-hero-header-plan {
    min-width: 114px;
  }

  .approved-hero-header-whatsapp {
    min-width: 138px;
  }

  .approved-hero-main {
    padding: 21px 30px;
  }

  .approved-hero-copy h1 {
    font-size: clamp(33px, 3vw, 52px);
  }

  .approved-hero-showcase {
    --approved-hero-card-width: min(62.25vw, 840px);
    --approved-hero-browser-bar-height: 27px;
    margin-top: 21px;
  }

  .approved-hero-showcase-track {
    column-gap: clamp(18px, 2.5vw, 36px);
  }

  .approved-hero-screen {
    border-radius: 17px;
  }

  .approved-hero-screen-bar {
    padding: 9px 12px;
  }

  .approved-hero-screen-dots {
    gap: 6px;
  }

  .approved-hero-screen-dots span {
    width: 7.5px;
    height: 7.5px;
  }

  .approved-hero-carousel-control {
    width: 42px;
    height: 42px;
  }

  .approved-hero-carousel-control svg {
    width: 21px;
    height: 21px;
  }

  .approved-hero-carousel-control-previous {
    left: clamp(12px, 2.25vw, 42px);
  }

  .approved-hero-carousel-control-next {
    right: clamp(12px, 2.25vw, 42px);
  }

  .pricing-section {
    scroll-margin-top: 81px;
    padding: 36px 0 54px;
  }

  .pricing-heading {
    font-size: clamp(32px, 3.1vw, 44px);
    font-weight: 400;
    letter-spacing: -0.05em;
  }

  .pricing-subtitle {
    margin-top: 15px;
    font-size: 13px;
    line-height: 24px;
  }

  .pricing-grid {
    gap: 18px;
    margin-top: clamp(33px, 2.625vw, 42px);
  }

  .pricing-plan-card {
    min-height: 724px;
    border-radius: 21px;
    padding: 20px;
  }

  .pricing-plan-badge {
    top: -10.5px;
    right: 21px;
    height: 21px;
    padding-inline: 12px;
    font-size: 8px;
  }

  .pricing-plan-header {
    gap: 15px;
  }

  .pricing-plan-icon {
    width: 60px;
    height: 60px;
    border-radius: 17px;
  }

  .pricing-plan-icon svg {
    width: 30px;
    height: 30px;
  }

  .pricing-plan-title {
    font-size: 24px;
    font-weight: 650;
  }

  .pricing-plan-subtitle {
    margin-top: 6px;
    font-size: 12.75px;
    line-height: 18px;
  }

  .pricing-plan-price-wrap {
    margin-top: 18px;
    padding-top: 18px;
  }

  .pricing-plan-price {
    font-size: 59px;
    font-weight: 750;
  }

  .pricing-plan-section-heading {
    margin-top: 14px;
    gap: 9px;
  }

  .pricing-plan-section-heading span:first-child {
    font-size: 9px;
  }

  .pricing-plan-included {
    margin-top: 12px;
    gap: 9px;
    font-size: 13.5px;
    font-weight: 450;
    line-height: 21px;
  }

  .pricing-plan-excluded {
    margin-top: 10px;
    gap: 9px;
    font-size: 12.75px;
    line-height: 21px;
  }

  .pricing-plan-included li,
  .pricing-plan-excluded li {
    gap: 9px;
  }

  .pricing-plan-included svg {
    width: 15px;
    height: 15px;
    margin-top: 3px;
  }

  .pricing-plan-excluded svg {
    width: 12px;
    height: 12px;
    margin-top: 3px;
  }

  .pricing-plan-footnote {
    margin-top: 10px;
    font-size: 12.75px;
    line-height: 21px;
  }

  .pricing-plan-actions {
    padding-top: 8px;
    padding-bottom: 12px;
  }

  .pricing-plan-card-start .pricing-plan-price-wrap {
    margin-top: 12px;
    padding-top: 12px;
  }

  .pricing-plan-card-start .pricing-plan-section-heading {
    margin-top: 8px;
  }

  .pricing-plan-card-start .pricing-plan-included {
    margin-top: 6px;
  }

  .pricing-plan-card-start .pricing-plan-note {
    margin-top: 0.65rem;
  }

  .pricing-plan-card-start .pricing-plan-footnote {
    margin-top: 6px;
  }

  .pricing-plan-card-start .pricing-plan-actions {
    padding-top: 6px;
    padding-bottom: 12px;
  }

  .pricing-plan-card-pro .pricing-plan-price-wrap,
  .pricing-plan-card-premium .pricing-plan-price-wrap {
    margin-top: 16px;
    padding-top: 16px;
  }

  .pricing-plan-card-pro .pricing-plan-section-heading,
  .pricing-plan-card-premium .pricing-plan-section-heading {
    margin-top: 16px;
  }

  .pricing-plan-card-pro .pricing-plan-included,
  .pricing-plan-card-premium .pricing-plan-included {
    margin-top: 16px;
  }

  .pricing-plan-card-pro .pricing-plan-excluded,
  .pricing-plan-card-premium .pricing-plan-excluded {
    margin-top: 15px;
  }

  .pricing-plan-card-pro .pricing-plan-footnote,
  .pricing-plan-card-premium .pricing-plan-footnote {
    margin-top: 18px;
  }

  .pricing-plan-primary {
    min-height: 41px;
    border-radius: 9px;
    padding: 12px 21px;
    font-size: 13.5px;
    font-weight: 600;
  }

  .pricing-plan-primary svg {
    width: 15px;
    height: 15px;
    margin-left: 9px;
  }

  .pricing-footer-note {
    margin-top: 27px;
  }

  .pricing-footer-note p {
    font-size: 12.75px;
  }

  #processo,
  #faq {
    scroll-margin-top: 101px;
  }
}

@media (min-width: 1360px) {
  .pricing-plan-card {
    min-height: 724px;
    padding: 20px;
  }
}

@media (min-width: 1800px) {
  .pricing-plan-card {
    min-height: 712px;
  }

  .pricing-plan-actions {
    padding-bottom: 12px;
  }
}

@media (min-width: 1180px) and (max-width: 1399px) {
  .pricing-plan-card {
    min-height: 724px;
  }

  .pricing-plan-actions {
    padding-bottom: 12px;
  }
}

@media (max-width: 1179px) {
  .pricing-inner {
    width: 94vw;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .pricing-plan-card {
    min-height: 0;
  }

  .pricing-plan-actions {
    padding-bottom: 28px;
  }
}

@media (max-width: 767px) {
  .pricing-plan-actions {
    margin-top: 1.25rem;
    padding-top: 0;
    padding-bottom: 24px;
  }
}

@media (max-width: 1100px) {
  .homepage-process-timeline,
  .homepage-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 70px 24px;
  }

  .homepage-process-connector {
    display: none;
  }

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

  .homepage-faq-intro {
    max-width: 760px;
  }

  .homepage-faq-highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .homepage-faq-highlight {
    grid-template-columns: 52px 1fr;
  }

  .homepage-faq-highlight > span {
    width: 52px;
    height: 52px;
  }

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

@media (max-width: 1023px) {
  .approved-hero-shell {
    min-height: auto;
  }

  .approved-hero-header {
    padding: 1.25rem;
  }

  .approved-hero-header-nav {
    display: none;
  }

  .approved-hero-main {
    padding: 1.5rem 1.25rem;
  }

  .approved-hero-copy {
    max-width: none;
  }

  .approved-hero-copy h1 {
    font-size: clamp(2.1rem, 4.7vw, 3.15rem);
    white-space: nowrap;
  }

  .approved-hero-showcase {
    --approved-hero-card-width: 88vw;
    margin-top: 1.25rem;
  }

  .approved-hero-showcase-track {
    column-gap: 0.15rem;
  }
}

@media (max-width: 767px) {
  .approved-hero-page {
    padding: 0.5rem 0;
  }

  .approved-hero-shell {
    min-height: auto;
    border-radius: 0;
    padding-top: 0;
  }

  .approved-hero-header {
    position: sticky;
    top: 0;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    justify-items: center;
    min-height: auto;
    padding: 1rem 1.25rem;
  }

  .approved-hero-logo-image {
    height: 61.6px;
    max-width: 259.05px;
  }

  .approved-hero-header-actions {
    width: 100%;
    justify-content: center;
    gap: 0.5rem;
  }

  .approved-hero-header-plan,
  .approved-hero-header-whatsapp {
    min-width: 0;
    flex: 1;
    padding: 0.75rem;
    min-height: 3.25rem;
    font-size: 0.95rem;
    line-height: 1.1;
    white-space: nowrap;
  }

  .approved-hero-header-whatsapp {
    font-size: 0.95rem;
  }

  .approved-hero-main {
    padding: 1.25rem;
  }

  .approved-hero-copy h1 {
    font-size: 1.55rem;
    line-height: 1.04;
    letter-spacing: -0.03em;
    white-space: normal;
  }

  .approved-hero-showcase {
    --approved-hero-card-width: 88vw;
    width: calc(100vw + 2.5rem);
    margin-top: 1rem;
    margin-left: -1.25rem;
  }

  .approved-hero-showcase-track {
    column-gap: 1rem;
  }

  .approved-hero-screen {
    width: 88vw;
  }

  .approved-hero-carousel-control {
    width: 2.75rem;
    height: 2.75rem;
    opacity: 1;
  }

  .pricing-section {
    scroll-margin-top: 170px;
    padding: 36px 0 48px;
  }

  .pricing-inner {
    width: calc(100vw - 32px);
    margin-inline: 16px;
  }

  .pricing-heading {
    font-size: 34px;
    font-weight: 400;
    letter-spacing: -0.05em;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    margin-top: calc(clamp(2.75rem, 3.7vw, 3.5rem) - 16px);
  }

  .pricing-plan-card {
    min-height: 0;
  }

  .pricing-plan-card:nth-child(2) {
    min-height: 0;
  }

  .pricing-plan-card:nth-child(3) {
    min-height: 0;
  }

  .pricing-plan-title {
    font-size: 23px;
    font-weight: 650;
  }

  .pricing-plan-price {
    font-size: 56px;
    font-weight: 750;
  }

  .pricing-plan-included,
  .pricing-plan-excluded {
    font-weight: 450;
  }

  .pricing-plan-included {
    gap: 9px;
    font-size: 14px;
    line-height: 24px;
  }

  .pricing-plan-excluded {
    gap: 8px;
    font-size: 13px;
    line-height: 22px;
  }

  .pricing-plan-actions {
    padding-bottom: 28px;
  }

  .pricing-plan-primary {
    min-height: 56px;
    padding: 16px 21px;
    font-size: 16px;
    font-weight: 600;
  }

  .homepage-section-inner {
    width: calc(100vw - 32px);
  }

  .homepage-section-heading {
    text-align: left;
  }

  .homepage-section-heading h2,
  .homepage-benefits-heading h2 {
    margin-top: 0;
    font-size: 34px;
    line-height: 1.04;
  }

  .homepage-section-heading p {
    margin-top: 16px;
    font-size: 15px;
  }

  .homepage-process-section,
  .homepage-benefits-section,
  .homepage-faq-section {
    padding-block: 36px;
  }

  .homepage-process-timeline,
  .homepage-benefits-grid {
    grid-template-columns: 1fr;
  }

  .homepage-process-timeline {
    gap: 70px;
    margin-top: 82px;
  }

  .homepage-process-step {
    min-height: 320px;
    padding: 72px 26px 28px;
  }

  .homepage-process-step h3 {
    min-height: 0;
  }

  .homepage-benefits-grid {
    gap: 18px;
    margin-top: 42px;
  }

  .homepage-benefit-card {
    min-height: 0;
  }

  .homepage-faq-intro h2 {
    font-size: 34px;
    text-align: center;
  }

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

  .homepage-faq-item button {
    min-height: 70px;
    grid-template-columns: 34px minmax(0, 1fr) 18px;
    gap: 12px;
    padding: 14px;
  }

  .homepage-faq-toggle {
    width: 32px;
    height: 32px;
  }

  .homepage-faq-question {
    font-size: 15px;
  }

  .homepage-faq-answer {
    padding: 0 18px 22px 60px;
  }

  .homepage-final-cta-section {
    padding-block: 32px;
  }

  .homepage-final-cta-window {
    min-height: 0;
  }

  .homepage-final-cta-content {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 30px 20px 34px;
  }

  .homepage-final-cta-copy {
    display: block;
    justify-content: flex-start;
  }

  .homepage-final-cta-copy h2 {
    font-size: 34px;
  }

  .homepage-final-cta-copy > p {
    font-size: 16px;
  }

  .homepage-final-cta-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 0;
  }

  .homepage-final-cta-copy::after {
    display: none;
  }

  .homepage-final-cta-copy::before {
    display: none;
  }

  .homepage-final-cta-primary,
  .homepage-final-cta-whatsapp {
    width: 100%;
    min-height: 58px;
  }

  .homepage-final-cta-form {
    padding: 22px;
  }

  .homepage-footer {
    padding: 28px 0;
  }

  .homepage-footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 34px 24px;
  }
}

@media (max-width: 400px) {
  .approved-hero-header-plan,
  .approved-hero-header-whatsapp {
    min-height: 69.21875px;
  }

  .pricing-plan-card {
    min-height: 1142.5px;
  }

  .pricing-plan-card:nth-child(2) {
    min-height: 1028.5px;
  }

  .pricing-plan-card:nth-child(3) {
    min-height: 1055.75px;
  }
}

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