/* Izzat Lab — Minimal White, Aesthetic */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #ffffff;
  --gray: #86868b;
  --light: #0a0a0a;
  --white: #0a0a0a;
  --border: #2a2a2a;
  --font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', 'DM Sans', sans-serif;
}

html { -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
::selection { background: #fff; color: #0a0a0a; }

.container { max-width: 980px; margin: 0 auto; padding: 0 22px; }

/* ====== Nav (Logo left, links center, CTA right) ====== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: none;
  transition: background 0.3s, backdrop-filter 0.3s;
}

.nav--scrolled {
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.nav__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 22px;
  height: 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.nav__logo { display: flex; align-items: center; justify-self: start; }
.nav__logo svg { color: var(--black); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-self: center;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.2s;
}

.nav__link:hover { color: var(--black); }

.nav__cta-wrap {
  justify-self: end;
}

.nav__cta {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 100px;
  background: #fff;
  color: #0a0a0a;
  transition: background 0.2s;
  cursor: pointer;
}

.nav__cta:hover { background: #e5e5e5; }

.nav__hamburger {
  display: none;
  padding: 8px;
  justify-self: end;
}

.nav__hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #fff;
  margin: 4px 0;
  transition: 0.3s;
}

.nav__hamburger.open span:first-child { transform: rotate(45deg) translate(3px, 3px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:last-child { transform: rotate(-45deg) translate(3px, -3px); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 56px;
  background: #0a0a0a;
  z-index: 99;
  padding: 24px 32px;
  flex-direction: column;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 18px;
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  color: var(--black);
}

/* ====== Hero (Apple-style fullscreen video) ====== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: translateZ(0);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(0,0,0,0.45);
  background-image: linear-gradient(to bottom,
    rgba(10,10,10,0.78) 0%,
    rgba(10,10,10,0.7) 35%,
    rgba(10,10,10,0.88) 70%,
    rgba(10,10,10,0.99) 92%,
    #0a0a0a 100%);
  pointer-events: none;
  transform: translateZ(0);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__label {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

.hero__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero__title {
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: #fff;
}

.hero__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 480px;
}

.hero__sub {
  font-size: clamp(28px, 3.6vw, 48px);
  color: rgba(255,255,255,0.75);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 400;
  text-wrap: balance;
  max-width: 18ch;
}

.hero__sub.hero__sub--body {
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0;
  max-width: 42ch;
  color: rgba(255,255,255,0.65);
  margin-top: 18px;
  text-wrap: pretty;
}

.hero__form {
  width: 420px;
  flex-shrink: 0;
}

.hero__form .form-card {
  padding: 28px 24px;
}

.hero__form .form-group {
  margin-bottom: 14px;
}

.hero__form label {
  font-size: 11px;
  margin-bottom: 6px;
}

.hero__form input,
.hero__form select,
.hero__form textarea {
  padding: 11px 14px;
  font-size: 14px;
}

.hero__form .form-submit {
  padding: 14px;
  font-size: 14px;
}

.hero__form .form-note {
  margin-top: 10px;
}

/* ====== Buttons ====== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 100px;
  transition: all 0.2s;
}

.btn--primary {
  background: #fff;
  color: #0a0a0a;
}

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

.btn--secondary {
  background: transparent;
  color: #0071e3;
}

.btn--secondary:hover { text-decoration: underline; }


/* ====== Section ====== */
.section { padding: 120px 0; }
.section--gray { background: #111111; }
.section--border { border-top: 1px solid var(--border); }

.section__eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: #0071e3;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: 16px;
}

.section__desc {
  font-size: 17px;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.65;
}

/* ====== About (Apple cards) ====== */
.apple-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.apple-card {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 28px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.apple-card__icon { margin-bottom: 24px; }

.apple-card__text {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--black);
  flex: 1;
}

.apple-card__plus {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: none;
  color: #0a0a0a;
  font-size: 18px;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  z-index: 3;
}

.apple-card__plus.open { transform: rotate(45deg); }

/* Apple-style Popup */
.popup {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.popup.open { opacity: 1; visibility: visible; }

.popup__bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.popup__card {
  position: relative;
  background: #0a0a0a;
  border-radius: 20px;
  padding: 40px;
  max-width: 560px;
  width: calc(100% - 48px);
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.12);
  transform: scale(0.96);
  transition: transform 0.3s;
}

.popup.open .popup__card { transform: scale(1); }

.popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #2a2a2a;
  border: none;
  font-size: 18px;
  color: #86868b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.popup__close:hover { background: var(--border); }

.popup__title {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.popup__subtitle {
  font-size: 15px;
  color: var(--black);
  margin-bottom: 8px;
}

.popup__text {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.65;
}

/* ====== Services Carousel (same structure as portfolio) ====== */
.svc-carousel {
  margin-top: 48px;
  overflow: hidden;
  padding-bottom: 60px;
}

.svc-carousel__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
  padding-left: max(32px, calc((100vw - 916px) / 2));
  padding-right: 32px;
}

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

.svc-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.svc-dots { display: flex; gap: 8px; }

.svc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.svc-dot.active {
  background: #fff;
  transform: scale(1.2);
}

.svc-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  font-size: 20px;
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.svc-arrow:hover {
  border-color: #fff;
  color: #fff;
}

.carousel__pause {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.carousel__pause:hover {
  border-color: #fff;
  color: #fff;
}

.svc-slide {
  flex: 0 0 62%;
  scroll-snap-align: center;
  min-width: 0;
}

@media (max-width: 900px) { .svc-slide { flex: 0 0 82%; } }
@media (max-width: 600px) { .svc-slide { flex: 0 0 92%; } }

.svc-card {
  position: relative;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 28px;
  min-height: 380px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, border-color 0.3s ease, background 0.3s ease;
}

.svc-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.svc-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.14);
  background: #161616;
}
.svc-card:hover::after { opacity: 1; }

.svc-card__top {
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: filter 0.3s, opacity 0.3s;
}

.svc-card.blur .svc-card__top {
  filter: blur(8px);
  opacity: 0.25;
}

.svc-card.blur .svc-card__visual {
  filter: blur(18px) brightness(1.05) contrast(1.05);
  opacity: 0.3;
  transition: filter 0.35s ease, opacity 0.35s ease;
}

.svc-card__visual {
  transition: filter 0.35s ease, opacity 0.35s ease;
}

.svc-card__kicker {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}

.svc-card__title {
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 92%;
}

.svc-card__desc {
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255,255,255,0.55);
  max-width: 360px;
  margin-top: 4px;
}

.svc-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
}

.svc-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  flex-shrink: 0;
}

.svc-card__icon svg {
  width: 36px;
  height: 36px;
}

.svc-card__visual {
  position: absolute;
  top: 50%;
  right: -8%;
  transform: translateY(-50%);
  width: 58%;
  height: auto;
  mix-blend-mode: screen;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
  filter: brightness(1.05) contrast(1.05);
  transition: opacity 0.35s ease;
}
.svc-card:hover .svc-card__visual { opacity: 1; }

.svc-card--has-visual .svc-card__top,
.svc-card--has-visual .svc-card__bottom { position: relative; z-index: 2; }

@media (max-width: 700px) {
  .svc-card {
    min-height: 540px;
    height: 540px;
  }
  .svc-card--has-visual .svc-card__visual {
    position: absolute;
    bottom: -40px;
    left: 50%;
    right: auto;
    top: auto;
    transform: translateX(-50%);
    width: 125%;
    max-width: none;
    max-height: 400px;
    height: auto;
    object-fit: contain;
    object-position: bottom center;
    opacity: 0.5;
    z-index: 1;
  }
  .svc-card__visual[src*="criativos-lenses"],
  .svc-card__visual[src*="pages-panels"] {
    transform: translateX(-50%) rotate(90deg) !important;
    width: 110% !important;
    max-height: 500px !important;
    transform-origin: center center;
  }
  .svc-card--has-visual .svc-card__top { position: relative; z-index: 3; }
  .svc-card--has-visual .svc-card__bottom {
    position: relative;
    z-index: 3;
    margin-top: auto;
  }
}

.svc-card__plus {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  padding: 0;
  transition: background 0.2s, transform 0.35s ease;
  z-index: 5;
}

.svc-card__plus:hover { background: rgba(255,255,255,0.14); }
.svc-card__plus.open { transform: rotate(45deg); }

.svc-card__detail {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  padding: 36px;
}

.svc-card__detail.open { opacity: 1; visibility: visible; }

.svc-card__detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.svc-card__detail-tags span {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  color: #fff;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(4px);
}

/* ====== Protocol ====== */
.protocol-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.protocol-step {
  padding: 32px 24px;
  background: #1a1a1a;
  border-radius: 16px;
}

.protocol-step__num {
  font-size: 12px;
  font-weight: 500;
  color: #0071e3;
  margin-bottom: 20px;
}

.protocol-step__title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.protocol-step__desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
}

/* ====== Portfolio Carousel (Apple TV+ style) ====== */
.carousel {
  margin-top: 48px;
  position: relative;
  overflow: hidden;
  padding: 0 0 60px;
}

.carousel__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
  padding-left: max(32px, calc((100vw - 916px) / 2));
  padding-right: 32px;
}

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

.carousel__slide {
  flex: 0 0 72%;
  scroll-snap-align: center;
  min-width: 0;
}

.carousel__card {
  border-radius: 20px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.carousel__card:hover { transform: scale(1.01); }

/* Portfolio mockup cards */
.carousel__card-mockup {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
}
.carousel__card-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.carousel__card:hover .carousel__card-mockup img {
  transform: scale(1.03);
}
.carousel__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.92) 100%);
  z-index: 1;
  pointer-events: none;
}

.carousel__card--video { overflow: hidden; }

.carousel__card-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.carousel__card--video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
  pointer-events: none;
}

.carousel__card-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
  position: relative;
}

.carousel__card-name {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 500;
  color: #fff;
}

.carousel__card-cat {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.carousel__card-cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: -0.01em;
  width: fit-content;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.2s ease;
}
.carousel__card:hover .carousel__card-cta { opacity: 1; transform: translateY(0); }
.carousel__card-cta:hover { background: #fff; color: #0a0a0a; }
.carousel__card-cta svg { transition: transform 0.2s ease; }
.carousel__card-cta:hover svg { transform: translateX(3px); }
@media (max-width: 768px) {
  .carousel__card-cta { opacity: 1; transform: none; }
}

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.carousel__dots {
  display: flex;
  gap: 8px;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.carousel__dot.active {
  background: var(--black);
  transform: scale(1.2);
}

.carousel__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 20px;
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.carousel__arrow:hover {
  border-color: var(--black);
  color: var(--black);
}

/* ====== Testimonials ====== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.testimonial {
  padding: 32px 28px;
  background: #1a1a1a;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}

.testimonial__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--black);
  flex: 1;
  margin-bottom: 24px;
}

.testimonial__author {
  font-size: 14px;
  font-weight: 500;
}

.testimonial__role {
  font-size: 13px;
  color: var(--gray);
}

/* ====== CTA ====== */
.cta {
  text-align: center;
  padding: 120px 0;
}

.cta__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.cta__desc {
  font-size: 17px;
  color: var(--gray);
  margin-bottom: 36px;
}

/* ====== Footer ====== */
.footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.footer__brand svg { color: var(--black); }

.footer__brand-name {
  font-size: 14px;
  font-weight: 500;
}

.footer__desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
  max-width: 280px;
}

.footer__col h4 {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray);
  margin-bottom: 14px;
}

.footer__col a {
  display: block;
  font-size: 14px;
  color: var(--gray);
  padding: 4px 0;
  transition: color 0.2s;
}

.footer__col a:hover { color: var(--black); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--gray);
}

.footer__legal { display: flex; gap: 20px; }
.footer__legal a { color: var(--gray); transition: color 0.2s; }
.footer__legal a:hover { color: var(--black); }

/* ====== Modal ====== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal.open { opacity: 1; visibility: visible; }

.modal__bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(4px);
}

.modal__card {
  position: relative;
  background: #0a0a0a;
  border-radius: 20px;
  padding: 40px;
  max-width: 480px;
  width: calc(100% - 48px);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.12);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 24px;
  color: var(--gray);
  transition: color 0.2s;
}

.modal__close:hover { color: var(--black); }

.modal__title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 4px;
}

.modal__sub {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 28px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--black);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  background: #0a0a0a;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0071e3;
}

.form-group textarea { resize: vertical; min-height: 80px; }

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

.btn--full {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* ====== Responsive ====== */

/* Tablet */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .hero__title { font-size: clamp(26px, 4vw, 40px); }
  .hero__sub { font-size: clamp(26px, 4vw, 40px); }
  .hero__row { gap: 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .protocol-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section { padding: 80px 0; }
  .cta { padding: 80px 0; }
  .svc-carousel__track, .carousel__track { padding-left: 24px; padding-right: 24px; }
  .svc-slide, .carousel__slide { flex: 0 0 80%; }
}

/* Mobile */
@media (max-width: 768px) {
  .nav__links, .nav__cta-wrap { display: none; }
  .nav__hamburger { display: block; }
  .nav__inner { grid-template-columns: 1fr auto; }
  .hero { height: auto; min-height: 85vh; }
  .hero__content { padding: 120px 20px 48px; }
  .hero__row { flex-direction: column; align-items: center; gap: 28px; }
  .hero__left { align-items: center; text-align: center; max-width: 100%; gap: 14px; }
  .hero__title { font-size: clamp(26px, 6vw, 36px); max-width: 100%; letter-spacing: -0.025em; line-height: 1.05; }
  .hero__sub { font-size: clamp(26px, 6vw, 36px); line-height: 1.2; max-width: 14ch; margin-left: auto; margin-right: auto; letter-spacing: -0.02em; }
  .hero__label { font-size: 13px; }
  .hero__pill { flex-direction: column; padding: 14px 16px; border-radius: 16px; width: 100%; }
  .hero__pill-text { text-align: center; font-size: 12px; }
  .hero__pill-btn { width: 100%; text-align: center; }
  .hero__overlay { background: linear-gradient(to bottom, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.75) 40%, rgba(10,10,10,0.92) 76%, rgba(10,10,10,0.99) 92%, #0a0a0a 100%), rgba(0,0,0,0.5); }
  .section__title { font-size: clamp(24px, 6vw, 36px); }
  .section__desc { font-size: 15px; }
  .apple-cards { grid-template-columns: 1fr; gap: 12px; }
  .apple-card { min-height: 200px; }
  .apple-card__text { font-size: 17px; }
  .protocol-grid { grid-template-columns: 1fr; gap: 12px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 12px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .modal__card { padding: 28px 20px; margin: 0 16px; }
  .popup__card { padding: 28px 24px; }
  .popup__title { font-size: 22px; }
  .section { padding: 64px 0; }
  .cta { padding: 64px 0; }
  .cta__title { font-size: clamp(22px, 6vw, 32px); }
  .svc-slide, .carousel__slide { flex: 0 0 92%; }
  .svc-card { aspect-ratio: auto; min-height: 320px; }
  .svc-card__name { font-size: 22px; }
  .carousel__card { aspect-ratio: 3/4; }
  .carousel__card-name { font-size: 22px; }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero__content { padding: 100px 16px 40px; }
  .hero__title { font-size: 26px; }
  .hero__sub { font-size: 26px; line-height: 1.2; max-width: 13ch; margin-left: auto; margin-right: auto; letter-spacing: -0.02em; }
  .section__title { font-size: 22px; }
  .container { padding: 0 16px; }
  .svc-carousel__track, .carousel__track { padding-left: 16px; padding-right: 16px; }
  .svc-slide, .carousel__slide { flex: 0 0 95%; }
  .svc-card { min-height: 300px; padding: 24px; }
  .carousel__card { padding: 24px; aspect-ratio: 3/4; }
  .protocol-step { padding: 24px 20px; }
  .apple-card { padding: 24px; min-height: 180px; }
  .footer__desc { font-size: 13px; }
  .btn { font-size: 14px; padding: 11px 22px; }
  .nav__inner { padding: 0 16px; }
}

/* ============================================
   PROJECT MODAL — apple-style popup
   ============================================ */
.pmodal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.22,1,0.36,1);
}
.pmodal.open { display: flex; opacity: 1; }

.pmodal__wrap {
  position: relative;
  width: 100%;
  max-width: 1040px;
  background: #0a0a0a;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  transform: scale(0.96) translateY(24px);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1), opacity 0.4s ease;
  box-shadow: 0 60px 140px rgba(0,0,0,0.75);
}
.pmodal.open .pmodal__wrap { transform: scale(1) translateY(0); opacity: 1; }

.pmodal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 10;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background 0.2s ease, transform 0.2s ease;
}
.pmodal__close:hover { background: rgba(255,255,255,0.16); transform: scale(1.06); }

.pmodal__hero {
  position: relative;
  padding: 120px 56px 80px;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pmodal__hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  filter: saturate(110%) contrast(102%);
  opacity: 1;
  transform: scale(1.04);
  transition: transform 8s ease, opacity 0.6s ease;
  z-index: 0;
}
video.pmodal__hero-bg--video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #000;
}
.pmodal.open .pmodal__hero-bg { transform: scale(1); }
.pmodal__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
.pmodal__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 45%, rgba(10,10,10,0.88) 100%);
  pointer-events: none;
  z-index: 1;
}
.pmodal__hero > * { position: relative; z-index: 2; }

.pmodal__site-badge {
  position: absolute;
  top: 24px;
  left: 56px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 14px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 99px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: -0.005em;
  z-index: 4;
  transition: background 0.2s ease, transform 0.2s ease;
}
.pmodal__site-badge:hover { background: #fff; color: #0a0a0a; transform: translateY(-2px); }
.pmodal__site-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #30d158;
  box-shadow: 0 0 12px rgba(48,209,88,0.6);
}
.pmodal__site-badge svg { transition: transform 0.2s ease; }
.pmodal__site-badge:hover svg { transform: translateX(3px); }

.pmodal__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.pmodal__gallery-item {
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.pmodal__gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.pmodal__gallery-item:hover img { transform: scale(1.04); }

.pmodal__kicker {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
}
.pmodal__title {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: #fff;
  margin-bottom: 20px;
}
.pmodal__sub {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  color: rgba(255,255,255,0.75);
  max-width: 680px;
  letter-spacing: -0.01em;
  font-weight: 400;
}

.pmodal__body {
  padding: 56px;
}

.pmodal__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.pmodal__stat {
  padding: 28px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
}
.pmodal__stat-num {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1;
}
.pmodal__stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}

.pmodal__section {
  margin-bottom: 48px;
}
.pmodal__section:last-child { margin-bottom: 0; }

.pmodal__section-title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}

.pmodal__h3 {
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 18px;
  max-width: 780px;
}

.pmodal__p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  max-width: 780px;
  letter-spacing: -0.005em;
  margin-bottom: 14px;
}

.pmodal__protocol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.pmodal__step {
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pmodal__step-num {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
  min-width: 44px;
}
.pmodal__step-name {
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.pmodal__step-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.pmodal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.pmodal__tag {
  padding: 8px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 99px;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  letter-spacing: -0.005em;
}

.pmodal__quote {
  padding: 48px 40px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  margin-top: 16px;
}
.pmodal__quote-text {
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
  font-style: italic;
  margin-bottom: 14px;
}
.pmodal__quote-author {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}

.pmodal__cta {
  margin-top: 48px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255,106,0,0.12), rgba(255,106,0,0.02));
  border: 1px solid rgba(255,106,0,0.18);
  border-radius: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.pmodal__cta-text { flex: 1; min-width: 240px; }
.pmodal__cta-t {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 6px;
}
.pmodal__cta-s {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
}
.pmodal__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: #fff;
  color: #0a0a0a;
  text-decoration: none;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform 0.2s ease, background 0.2s ease;
}
.pmodal__cta-btn:hover { transform: translateY(-2px); background: rgba(255,255,255,0.88); }

.pmodal__missing {
  padding: 28px;
  background: rgba(255,193,7,0.06);
  border: 1px solid rgba(255,193,7,0.18);
  border-radius: 18px;
  margin-top: 24px;
}
.pmodal__missing-title {
  font-size: 14px;
  font-weight: 500;
  color: #ffc107;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pmodal__missing-text {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}

/* Manifesto grande */
.pmodal__manifesto {
  padding: 56px 48px;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  margin-top: 16px;
  position: relative;
  overflow: hidden;
}
.pmodal__manifesto::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 36px;
  font-size: 220px;
  font-weight: 700;
  color: #fff;
  opacity: 0.15;
  line-height: 1;
  pointer-events: none;
}
.pmodal__manifesto-text {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: #fff;
  position: relative;
  z-index: 1;
  max-width: 780px;
}

/* Positioning trio */
.pmodal__positioning {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.pmodal__pos-card {
  padding: 28px 26px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
}
.pmodal__pos-card--wide {
  grid-column: 1 / -1;
  padding: 32px 30px;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
}
.pmodal__pos-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}
.pmodal__pos-text {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
}
.pmodal__pos-card--wide .pmodal__pos-text {
  font-size: 19px;
  line-height: 1.4;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.015em;
}

/* Mechanism block */
.pmodal__mechanism {
  padding: 36px 34px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  margin-top: 16px;
}
.pmodal__mech-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.pmodal__mech-name {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}
.pmodal__mech-badge {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 99px;
}
.pmodal__mech-def {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin-bottom: 24px;
  max-width: 780px;
}
.pmodal__mech-pillars {
  display: grid;
  gap: 10px;
}
.pmodal__mech-pillar {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  border-left: 2px solid rgba(255,255,255,0.35);
}
.pmodal__mech-pillar-num {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.1em;
  min-width: 22px;
}
.pmodal__mech-pillar-text {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
}

/* Enemy block */
.pmodal__enemy {
  padding: 32px 30px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  margin-top: 16px;
  border-left: 3px solid #d84040;
}
.pmodal__enemy-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d84040;
  margin-bottom: 12px;
}
.pmodal__enemy-text {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  max-width: 780px;
}

/* Personas grid */
.pmodal__personas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.pmodal__persona {
  padding: 26px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pmodal__persona-name {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pmodal__persona-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pmodal__persona-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}
.pmodal__persona-text {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
}

/* Voice rules */
.pmodal__voice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}
.pmodal__voice-col {
  padding: 26px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
}
.pmodal__voice-head {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.pmodal__voice-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pmodal__voice-item {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  padding-left: 16px;
  position: relative;
}
.pmodal__voice-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: #fff;
}
.pmodal__voice-pill {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 99px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  margin: 0 6px 6px 0;
}

/* Product lineup */
.pmodal__products {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.pmodal__product {
  padding: 18px 22px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  position: relative;
  padding-left: 46px;
}
.pmodal__product::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #fff;
}

/* Visual system */
.pmodal__visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.pmodal__visual-card {
  padding: 26px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
}
.pmodal__visual-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}
.pmodal__visual-text {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
}

/* Unbreakable rules */
.pmodal__rules {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}
.pmodal__rule {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
}
.pmodal__rule-x {
  width: 22px;
  height: 22px;
  border-radius: 99px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.pmodal__rule-text {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
}

/* Narrative block */
.pmodal__narrative {
  padding: 40px 36px;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  margin-top: 16px;
}
.pmodal__narrative-mother {
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 18px;
}
.pmodal__narrative-proposal {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  max-width: 780px;
}

body.pmodal-open { overflow: hidden; }

@media (max-width: 900px) {
  .pmodal__positioning { grid-template-columns: 1fr; }
  .pmodal__personas { grid-template-columns: 1fr; }
  .pmodal__voice { grid-template-columns: 1fr; }
  .pmodal__visual { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .pmodal { padding: 16px; }
  .pmodal__wrap { border-radius: 22px; }
  .pmodal__hero { padding: 90px 28px 56px; min-height: 560px; }
  .pmodal__site-badge { left: 20px; top: 20px; padding: 8px 14px 8px 12px; font-size: 12px; }
  .pmodal__body { padding: 32px 28px; }
  .pmodal__stats { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 40px; }
  .pmodal__stat { padding: 20px 18px; }
  .pmodal__protocol { grid-template-columns: 1fr; }
  .pmodal__quote { padding: 32px 24px; }
  .pmodal__cta { padding: 28px; flex-direction: column; align-items: flex-start; }
  .pmodal__gallery { grid-template-columns: repeat(2, 1fr); }
  .pmodal__manifesto { padding: 40px 28px; }
  .pmodal__manifesto::before { font-size: 160px; left: 16px; }
  .pmodal__mechanism { padding: 28px 24px; }
  .pmodal__narrative { padding: 32px 26px; }
  .pmodal__enemy { padding: 26px 22px; }
}

/* ============================
   Lab — Apple aesthetic blocks
   ============================ */
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
}
.lab-statement {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
}
.lab-body {
  max-width: 720px;
  margin: 32px auto 0;
  text-align: center;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}
.lab-bullets {
  max-width: 720px;
  margin: 48px auto 0;
  list-style: none;
  padding: 0;
  font-size: 18px;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}
.lab-bullets li + li { margin-top: 2px; }
.lab-principle {
  max-width: 720px;
  margin: 64px auto 0;
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.5;
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  letter-spacing: -0.005em;
}
.lab-twocol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  max-width: 960px;
  margin: 72px auto 0;
}
.lab-col-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.lab-col-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 17px;
  line-height: 2.05;
  color: rgba(255, 255, 255, 0.82);
}
.lab-final-cta {
  display: inline-block;
  margin-top: 36px;
  padding: 18px 40px;
  background: #fff;
  color: #0a0a0a;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  border-radius: 999px;
  transition: opacity 0.2s ease, transform 0.2s ease;
  letter-spacing: -0.005em;
}
.lab-final-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.lab-institutional-note {
  margin-top: 36px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
}
.lab-section-center {
  text-align: center;
}
.lab-results-list {
  max-width: 640px;
  margin: 40px auto 0;
  list-style: none;
  padding: 0;
  text-align: center;
  font-size: 16px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.75);
}
.pillar-grid--four { grid-template-columns: repeat(4, 1fr) !important; }
.process-grid--five { grid-template-columns: repeat(5, 1fr) !important; }
@media (max-width: 900px) {
  .pillar-grid--four { grid-template-columns: repeat(2, 1fr) !important; }
  .process-grid--five { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 734px) {
  .lab-twocol { grid-template-columns: 1fr; gap: 40px; }
  .lab-bullets { font-size: 17px; line-height: 1.9; }
  .lab-col-list { font-size: 16px; line-height: 1.95; }
}
@media (max-width: 560px) {
  .pillar-grid--four { grid-template-columns: 1fr !important; }
  .process-grid--five { grid-template-columns: 1fr !important; }
}

/* Lab feature grid (cards com icone) */
.lab-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1040px;
  margin: 64px auto 0;
}
.lab-feature-grid--five {
  grid-template-columns: repeat(5, 1fr);
}
.lab-feature-card {
  position: relative;
  padding: 28px 24px 26px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  text-align: left;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.lab-feature-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
  transform: translateY(-2px);
}
.lab-feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #fff;
}
.lab-feature-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}
.lab-feature-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.lab-feature-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 900px) {
  .lab-feature-grid,
  .lab-feature-grid--five {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .lab-feature-grid,
  .lab-feature-grid--five {
    grid-template-columns: 1fr;
  }
}

/* Lab twocol items com icone check/cross */
.lab-twocol-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}
.lab-twocol-item:last-child {
  border-bottom: none;
}
.lab-twocol-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.lab-twocol-icon--yes {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.lab-twocol-icon--no {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.4);
}
.lab-twocol-icon svg {
  width: 12px;
  height: 12px;
  stroke-width: 2.5;
}
.lab-twocol-col {
  min-width: 0;
}
.lab-twocol-col--no .lab-twocol-item {
  color: rgba(255, 255, 255, 0.5);
}

/* Lab governanca diagram */
.lab-gov-diagram {
  max-width: 560px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.lab-gov-node {
  padding: 20px 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 260px;
  justify-content: center;
}
.lab-gov-node--top {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}
.lab-gov-node-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.lab-gov-node-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
}
.lab-gov-node-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.lab-gov-node-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 2px;
}
.lab-gov-node-name {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.005em;
}
.lab-gov-connector {
  width: 1px;
  height: 34px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.22));
  position: relative;
}
.lab-gov-connector::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255, 255, 255, 0.3);
}

/* Lab final block, glyph */
.lab-final-glyph {
  width: 56px;
  height: 56px;
  margin: 0 auto 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.lab-final-glyph svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.4;
}

/* Lab results, lista com icone */
.lab-results-grid {
  max-width: 920px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.lab-result-pill {
  padding: 20px 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  text-align: center;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.lab-result-pill:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
}
.lab-result-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #fff;
}
.lab-result-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
}
.lab-result-text {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: -0.005em;
}
@media (max-width: 900px) {
  .lab-results-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .lab-results-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Problem icons (alerta/fragil) */
.lab-problem-icon--warn {
  color: rgba(255, 255, 255, 0.85);
}
.lab-problem-icon--warn svg {
  stroke-width: 1.4;
}

/* ========================================================================== */
/* CATALOGO DE PACOTES (Lab v2.0)                                             */
/* ========================================================================== */

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
@media (max-width: 900px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .packages-grid { grid-template-columns: 1fr; }
}

.pkg-tabs-wrap {
  text-align: center;
  margin-top: 32px;
}
.pkg-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}
.pkg-tab {
  background: transparent;
  border: 0;
  cursor: pointer;
  color: #888;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.pkg-tab:hover { color: #fff; }
.pkg-tab.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Package card - extends .plan-card */
.plan-card--package {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.plan-card--package .pkg-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FF6A00;
  margin-bottom: 12px;
}
.plan-card--package[data-type="recurring"] .pkg-badge {
  color: #888;
}
.plan-card--package .pkg-deadline {
  font-size: 12px;
  color: #555;
  margin-top: 12px;
  margin-bottom: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.plan-card--package .pkg-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}
.plan-card--package .pkg-cta::after {
  content: '\2192';
  margin-left: 8px;
  transition: transform 0.2s;
}
.plan-card--package:hover .pkg-cta::after {
  transform: translateX(4px);
}
.plan-card--package.is-hidden { display: none; }

/* Hero meta (preço/prazo/modalidade) nas paginas dedicadas */
.pkg-hero-meta {
  margin-top: 32px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.pkg-hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pkg-hero-meta-label {
  font-size: 12px;
  color: #666;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pkg-hero-meta-value {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
}

.pkg-hero-ctas {
  margin-top: 40px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.pkg-hero-cta-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: #fff;
  color: #0a0a0a;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.pkg-hero-cta-primary:hover { background: #e5e5e5; }
.pkg-hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.pkg-hero-cta-secondary:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.04);
}

/* FAQ details/summary */
.pkg-faq {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}
.pkg-faq:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.pkg-faq summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pkg-faq summary::-webkit-details-marker { display: none; }
.pkg-faq summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: #888;
  transition: transform 0.2s;
}
.pkg-faq[open] summary::after { transform: rotate(45deg); }
.pkg-faq p {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.65;
  color: #888;
}

/* Lista de itens "NAO INCLUI" */
.pkg-exclude-list {
  max-width: 580px;
  margin: 48px auto 0;
  list-style: none;
  padding: 0;
}
.pkg-exclude-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 15px;
  color: #888;
}
.pkg-exclude-list li::before {
  content: '\2013';
  color: #FF6A00;
  font-weight: 600;
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1.2;
}

/* Lista de itens "INCLUI" */
.pkg-include-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
  margin-top: 48px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 600px) {
  .pkg-include-grid { grid-template-columns: 1fr; }
}
.pkg-include-grid li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 15px;
  color: #ccc;
  list-style: none;
}
.pkg-include-grid li::before {
  content: '+';
  color: #FF6A00;
  font-weight: 600;
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1.2;
}

/* Process steps das paginas dedicadas */
.pkg-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media (max-width: 900px) { .pkg-process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .pkg-process-grid { grid-template-columns: 1fr; } }

.pkg-process-step {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
}
.pkg-process-day {
  font-size: 11px;
  color: #FF6A00;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pkg-process-name {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.pkg-process-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.55;
}

/* Garantia card */
.pkg-guarantee {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  padding: 32px 28px;
}
.pkg-guarantee-title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.pkg-guarantee-text {
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}
.pkg-guarantee-text + .pkg-guarantee-text { margin-top: 12px; }

/* Card upsell (proximo passo) */
.pkg-upsell-card {
  max-width: 520px;
  margin: 32px auto 0;
}

/* ========================================================================== */
/* CATALOGO EDITORIAL (Lab v2.1) — sem preço, ícones SVG animados             */
/* ========================================================================== */

.pkg-edgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 80px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  overflow: hidden;
}
@media (max-width: 980px) {
  .pkg-edgrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .pkg-edgrid { grid-template-columns: 1fr; }
}

.pkg-edcard {
  display: flex;
  flex-direction: column;
  background: #0a0a0a;
  padding: 48px 36px 40px;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: background 0.5s cubic-bezier(0.28, 0.11, 0.32, 1);
  min-height: 380px;
}
.pkg-edcard:hover {
  background: rgba(255, 255, 255, 0.025);
}
.pkg-edcard--featured {
  background: linear-gradient(180deg, rgba(255, 106, 0, 0.04) 0%, rgba(10, 10, 10, 1) 60%);
}

.pkg-edicon {
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
  color: #FF6A00;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(0.28, 0.11, 0.32, 1);
}
.pkg-edcard:hover .pkg-edicon {
  transform: scale(1.08);
}
.pkg-edicon svg {
  width: 100%;
  height: 100%;
}

/* Stroke-draw animation: triggered when card enters viewport */
.pkg-stroke {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  opacity: 0;
}
.pkg-fill {
  opacity: 0;
  transform-origin: center;
  transform: scale(0.4);
}
.pkg-edcard.pkg-visible .pkg-stroke {
  animation: pkgDraw 1.1s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
.pkg-edcard.pkg-visible .pkg-fill {
  animation: pkgPop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.pkg-edcard.pkg-visible .pkg-stroke-1 { animation-delay: 0.05s; }
.pkg-edcard.pkg-visible .pkg-stroke-2 { animation-delay: 0.25s; }
.pkg-edcard.pkg-visible .pkg-stroke-3 { animation-delay: 0.45s; }
.pkg-edcard.pkg-visible .pkg-stroke-4 { animation-delay: 0.65s; }

@keyframes pkgDraw {
  0% { stroke-dashoffset: 220; opacity: 0; }
  20% { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 1; }
}
@keyframes pkgPop {
  0% { opacity: 0; transform: scale(0.4); }
  60% { opacity: 1; transform: scale(1.15); }
  100% { opacity: 1; transform: scale(1); }
}

/* Idle micro-pulse no icon featured (Ecom 360 + Growth) */
@keyframes pkgFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.pkg-edcard--featured.pkg-visible .pkg-edicon {
  animation: pkgFloat 4s ease-in-out infinite;
  animation-delay: 1.2s;
}

.pkg-edmeta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 12px;
}
.pkg-edname {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 14px;
}
.pkg-edthesis {
  font-size: 14px;
  line-height: 1.55;
  color: #999;
  margin: 0 0 22px;
  letter-spacing: -0.005em;
  flex-grow: 0;
}
.pkg-edout {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}
.pkg-edout li {
  font-size: 13px;
  line-height: 1.5;
  color: #ccc;
  padding-left: 16px;
  position: relative;
  letter-spacing: -0.005em;
}
.pkg-edout li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 1px;
  background: #FF6A00;
}
.pkg-edcta {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.005em;
  margin-top: auto;
}
.pkg-edcta::after {
  content: '\2192';
  margin-left: 8px;
  transition: transform 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
}
.pkg-edcard:hover .pkg-edcta::after {
  transform: translateX(6px);
}

/* ========================================================================== */
/* PAGINAS DEDICADAS (premium) — componentes adicionais                       */
/* ========================================================================== */

/* Hero icon grande (animado) */
.pkg-page-hero-icon {
  width: 96px;
  height: 96px;
  color: #FF6A00;
  margin-bottom: 40px;
}
.pkg-page-hero-icon svg { width: 100%; height: 100%; }

/* Outcomes grid */
.pkg-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 64px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  text-align: left;
}
@media (max-width: 900px) {
  .pkg-outcomes { grid-template-columns: 1fr; }
}
.pkg-outcome {
  background: #0a0a0a;
  padding: 40px 32px;
}
.pkg-outcome-num {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #FF6A00;
  margin-bottom: 16px;
  line-height: 1;
}
.pkg-outcome-num span {
  font-size: 18px;
  color: #666;
  font-weight: 400;
  letter-spacing: 0;
  margin-left: 4px;
}
.pkg-outcome-name {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.pkg-outcome-desc {
  font-size: 14px;
  line-height: 1.55;
  color: #888;
}

/* Comparison table (3 colunas) */
.pkg-compare {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1px;
  margin-top: 56px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  font-size: 14px;
}
@media (max-width: 760px) {
  .pkg-compare { grid-template-columns: 1.2fr 1fr 1fr; }
  .pkg-compare-col--alt2 { display: none; }
}
.pkg-compare > div {
  background: #0a0a0a;
  padding: 18px 20px;
}
.pkg-compare-h {
  background: rgba(255, 255, 255, 0.03) !important;
  font-weight: 600;
  color: #fff;
  font-size: 13px;
  letter-spacing: -0.005em;
}
.pkg-compare-h--lab {
  color: #FF6A00 !important;
}
.pkg-compare-rowlabel {
  color: #888;
  font-weight: 400;
}
.pkg-compare-cell {
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pkg-compare-cell--no { color: #555; }
.pkg-compare-cell--yes { color: #fff; }
.pkg-compare-cell--lab { color: #FF6A00; font-weight: 500; }
.pkg-compare-cell svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Investimento card (preço só aparece aqui) */
.pkg-invest {
  max-width: 540px;
  margin: 56px auto 0;
  background: linear-gradient(180deg, rgba(255, 106, 0, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 106, 0, 0.2);
  border-radius: 24px;
  padding: 40px 36px;
  text-align: center;
}
.pkg-invest-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FF6A00;
  margin-bottom: 16px;
  display: block;
}
.pkg-invest-price {
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.pkg-invest-price span {
  font-size: 18px;
  color: #888;
  font-weight: 400;
  letter-spacing: 0;
  margin-left: 4px;
}
.pkg-invest-meta {
  font-size: 14px;
  color: #888;
  margin-bottom: 28px;
  letter-spacing: -0.005em;
}
.pkg-invest-cta {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: #fff;
  color: #0a0a0a;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: transform 0.3s cubic-bezier(0.28, 0.11, 0.32, 1), background 0.3s;
}
.pkg-invest-cta:hover {
  transform: translateY(-2px);
  background: #f5f5f5;
}
.pkg-invest-cta::after {
  content: '\2192';
  margin-left: 10px;
}
.pkg-invest-foot {
  font-size: 12px;
  color: #666;
  margin-top: 20px;
  letter-spacing: -0.005em;
}

/* Includes grid (com ícones por item) */
.pkg-includes-detailed {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 56px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  text-align: left;
}
@media (max-width: 760px) {
  .pkg-includes-detailed { grid-template-columns: 1fr; }
}
.pkg-include-item {
  background: #0a0a0a;
  padding: 28px 32px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: background 0.3s;
}
.pkg-include-item:hover {
  background: rgba(255, 255, 255, 0.025);
}
.pkg-include-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: #FF6A00;
  margin-top: 2px;
}
.pkg-include-icon svg { width: 100%; height: 100%; }
.pkg-include-name {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.pkg-include-desc {
  font-size: 13px;
  line-height: 1.5;
  color: #888;
  letter-spacing: -0.005em;
}

/* ========================================================================== */
/* PAGINAS DEDICADAS — LAYOUT SPLIT PREMIUM (v2.2)                            */
/* ========================================================================== */

/* Section split layout: eyebrow + título + tese fica numa coluna lateral */
.pkg-section-split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .pkg-section-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.pkg-split-aside {
  position: sticky;
  top: 120px;
  align-self: start;
}
@media (max-width: 900px) {
  .pkg-split-aside { position: static; }
}
.pkg-split-aside .section-eyebrow {
  display: block;
  margin-bottom: 24px;
}
.pkg-split-aside h2 {
  font-size: clamp(36px, 4.8vw, 56px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 24px;
}
.pkg-split-aside .pkg-tese {
  font-size: 17px;
  line-height: 1.6;
  color: #999;
  letter-spacing: -0.005em;
  margin: 0;
}
.pkg-split-aside .pkg-tese strong {
  color: #fff;
  font-weight: 500;
}

/* HERO SPLIT */
.pkg-hero--split {
  background: linear-gradient(180deg, rgba(255,106,0,0.04) 0%, rgba(10,10,10,1) 70%);
  padding: 160px 22px 140px;
  position: relative;
  overflow: hidden;
}
.pkg-hero--split::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 30%, rgba(255,106,0,0.10) 0%, transparent 55%);
  pointer-events: none;
}
.pkg-hero-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .pkg-hero-grid { grid-template-columns: 1fr; gap: 40px; }
}
.pkg-hero-text h1 {
  font-size: clamp(52px, 7.5vw, 104px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.98;
  color: #fff;
  margin: 24px 0 32px;
}
.pkg-hero-text .pkg-hero-sub {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  color: #ccc;
  max-width: 540px;
  margin: 0 0 48px;
  letter-spacing: -0.01em;
}
.pkg-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.pkg-hero-visual::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.18) 0%, transparent 65%);
  filter: blur(30px);
  z-index: 0;
  animation: pkgGlow 6s ease-in-out infinite;
}
@keyframes pkgGlow {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
}
.pkg-hero-visual-icon {
  width: 220px;
  height: 220px;
  color: #FF6A00;
  position: relative;
  z-index: 1;
  animation: pkgFloatLg 6s ease-in-out infinite;
}
.pkg-hero-visual-icon svg { width: 100%; height: 100%; }
@keyframes pkgFloatLg {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

/* OUTCOMES — split layout, cards verticais empilhados */
.pkg-outcomes-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}
.pkg-outcome-row {
  padding: 36px 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  transition: background 0.3s;
}
.pkg-outcome-row:last-child { border-bottom: 0; }
.pkg-outcome-row:hover { background: rgba(255, 106, 0, 0.03); }
.pkg-outcome-bignum {
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 600;
  letter-spacing: -0.05em;
  color: #FF6A00;
  line-height: 0.95;
  min-width: 140px;
  text-align: left;
}
.pkg-outcome-bignum span {
  display: block;
  font-size: 13px;
  color: #666;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 6px;
}
.pkg-outcome-body-name {
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 8px;
}
.pkg-outcome-body-desc {
  font-size: 14px;
  line-height: 1.55;
  color: #888;
  margin: 0;
  letter-spacing: -0.005em;
}
@media (max-width: 600px) {
  .pkg-outcome-row { grid-template-columns: 1fr; gap: 12px; padding: 28px 24px; }
  .pkg-outcome-bignum { min-width: 0; font-size: 48px; }
}

/* COMPARISON refined */
.pkg-compare-v2 {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}
.pkg-compare-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.pkg-compare-row:last-child { border-bottom: 0; }
.pkg-compare-row > div {
  padding: 22px 24px;
  font-size: 14px;
  letter-spacing: -0.005em;
}
.pkg-compare-row--head { background: rgba(255, 255, 255, 0.04); }
.pkg-compare-row--head > div { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: #888; }
.pkg-compare-row--head .pkg-compare-cell--lab { color: #FF6A00; }
.pkg-compare-rowlbl { color: #ccc; font-weight: 400; }
.pkg-compare-cell { color: #666; }
.pkg-compare-cell--lab { color: #fff; font-weight: 500; background: linear-gradient(180deg, rgba(255,106,0,0.05) 0%, transparent 100%); }
@media (max-width: 760px) {
  .pkg-compare-row { grid-template-columns: 1.4fr 1fr 1.2fr; }
  .pkg-compare-cell--alt2 { display: none; }
  .pkg-compare-row--head .pkg-compare-cell--alt2 { display: none; }
  .pkg-compare-row > div { padding: 18px 16px; font-size: 13px; }
}

/* INCLUDES — items numerados em grid 2 col com mais respiração */
.pkg-includes-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}
@media (max-width: 760px) { .pkg-includes-v2 { grid-template-columns: 1fr; } }
.pkg-include-v2 {
  padding: 32px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: flex-start;
  transition: background 0.3s;
}
.pkg-include-v2:hover { background: rgba(255, 106, 0, 0.03); }
.pkg-includes-v2 .pkg-include-v2:nth-child(2n) { border-right: 0; }
.pkg-include-v2-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: #FF6A00;
  margin-top: 2px;
}
.pkg-include-v2-icon svg { width: 100%; height: 100%; }
.pkg-include-v2-name {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.pkg-include-v2-desc {
  font-size: 13px;
  line-height: 1.55;
  color: #888;
  letter-spacing: -0.005em;
}

/* PROCESSO — timeline vertical numerada */
.pkg-process-v2 {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.pkg-process-v2::before {
  content: '';
  position: absolute;
  left: 38px;
  top: 32px;
  bottom: 32px;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 106, 0, 0.4) 0%, rgba(255, 106, 0, 0.05) 100%);
}
@media (max-width: 600px) { .pkg-process-v2::before { left: 30px; } }
.pkg-process-v2-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  padding: 24px 0;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) {
  .pkg-process-v2-step { gap: 20px; padding: 20px 0; }
}
.pkg-process-v2-num {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255, 106, 0, 0.1);
  border: 1px solid rgba(255, 106, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  color: #FF6A00;
  letter-spacing: -0.01em;
  text-align: center;
  line-height: 1.2;
  padding: 4px;
}
@media (max-width: 600px) { .pkg-process-v2-num { width: 60px; height: 60px; font-size: 11px; } }
.pkg-process-v2-content {
  padding-top: 14px;
}
.pkg-process-v2-name {
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  line-height: 1.15;
}
.pkg-process-v2-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #999;
  margin: 0;
  letter-spacing: -0.005em;
  max-width: 580px;
}

/* INVESTIMENTO premium card refeito */
.pkg-invest-v2 {
  background: linear-gradient(180deg, rgba(255, 106, 0, 0.08) 0%, rgba(255, 255, 255, 0.02) 60%);
  border: 1px solid rgba(255, 106, 0, 0.18);
  border-radius: 32px;
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}
.pkg-invest-v2::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,0,0.15) 0%, transparent 60%);
  filter: blur(40px);
  top: -150px;
  right: -100px;
  z-index: 0;
}
.pkg-invest-v2-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 760px) {
  .pkg-invest-v2 { padding: 48px 32px; }
  .pkg-invest-v2-content { grid-template-columns: 1fr; gap: 32px; }
}
.pkg-invest-v2-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FF6A00;
  margin-bottom: 20px;
  display: block;
}
.pkg-invest-v2-price {
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 600;
  letter-spacing: -0.05em;
  color: #fff;
  line-height: 0.95;
  margin-bottom: 12px;
}
.pkg-invest-v2-price span {
  display: block;
  font-size: 17px;
  color: #888;
  font-weight: 400;
  letter-spacing: 0;
  margin-top: 8px;
}
.pkg-invest-v2-meta {
  font-size: 14px;
  color: #999;
  margin-bottom: 0;
  letter-spacing: -0.005em;
}
.pkg-invest-v2-cta {
  display: inline-flex;
  align-items: center;
  padding: 18px 40px;
  background: #fff;
  color: #0a0a0a;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: transform 0.3s cubic-bezier(0.28, 0.11, 0.32, 1), background 0.3s;
  margin-bottom: 20px;
}
.pkg-invest-v2-cta:hover {
  transform: translateY(-2px);
  background: #f5f5f5;
}
.pkg-invest-v2-cta::after {
  content: '\2192';
  margin-left: 12px;
}
.pkg-invest-v2-foot {
  font-size: 13px;
  color: #888;
  line-height: 1.5;
  margin: 0;
  letter-spacing: -0.005em;
}

/* GARANTIA refeita — split com ícone */
.pkg-guarantee-v2 {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 48px 44px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 760px) {
  .pkg-guarantee-v2 { grid-template-columns: 1fr; gap: 24px; padding: 36px 28px; }
}
.pkg-guarantee-v2-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 106, 0, 0.1);
  border: 1px solid rgba(255, 106, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF6A00;
  flex-shrink: 0;
}
.pkg-guarantee-v2-icon svg { width: 28px; height: 28px; }
.pkg-guarantee-v2-title {
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
}
.pkg-guarantee-v2-text {
  font-size: 15px;
  line-height: 1.6;
  color: #aaa;
  margin: 0 0 14px;
  letter-spacing: -0.005em;
}
.pkg-guarantee-v2-text:last-child { margin-bottom: 0; }
.pkg-guarantee-v2-text strong { color: #fff; font-weight: 500; }

/* FAQ refinado */
.pkg-faq-v2 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0;
}
.pkg-faq-v2:first-child { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.pkg-faq-v2 summary {
  cursor: pointer;
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 500;
  color: #fff;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: -0.015em;
  gap: 24px;
}
.pkg-faq-v2 summary::-webkit-details-marker { display: none; }
.pkg-faq-v2 summary::after {
  content: '';
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
  background-position: center;
  background-size: 12px 1px, 1px 12px;
  background-repeat: no-repeat;
  flex-shrink: 0;
  color: #888;
  transition: transform 0.3s, color 0.3s, border-color 0.3s;
}
.pkg-faq-v2[open] summary::after {
  transform: rotate(45deg);
  color: #FF6A00;
  border-color: rgba(255, 106, 0, 0.4);
  background-size: 12px 1px, 0px 12px;
}
.pkg-faq-v2 p {
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.65;
  color: #999;
  max-width: 720px;
  letter-spacing: -0.005em;
}

/* ========================================================================== */
/* CATALOGO DE 2 PRODUTOS (v3.0) — Big cards STORE + FLOW                     */
/* ========================================================================== */

.pkg-twogrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 80px;
}
@media (max-width: 900px) { .pkg-twogrid { grid-template-columns: 1fr; gap: 20px; } }

.pkg-bigcard {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 56px 48px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: background 0.5s cubic-bezier(0.28, 0.11, 0.32, 1), border-color 0.5s, transform 0.5s;
  min-height: 580px;
}
.pkg-bigcard::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,0,0.08) 0%, transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  transition: opacity 0.5s;
  opacity: 0.7;
}
.pkg-bigcard:hover {
  background: linear-gradient(180deg, rgba(255,106,0,0.04) 0%, rgba(255,255,255,0.03) 100%);
  border-color: rgba(255,106,0,0.2);
  transform: translateY(-4px);
}
.pkg-bigcard:hover::before { opacity: 1; }
@media (max-width: 600px) {
  .pkg-bigcard { padding: 40px 28px; min-height: 0; }
}

.pkg-bigcard-icon {
  width: 72px;
  height: 72px;
  color: #FF6A00;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.28, 0.11, 0.32, 1);
}
.pkg-bigcard-icon svg { width: 100%; height: 100%; }
.pkg-bigcard:hover .pkg-bigcard-icon { transform: scale(1.08) rotate(-3deg); }

.pkg-bigcard-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FF6A00;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.pkg-bigcard-title {
  font-size: clamp(24px, 2.3vw, 32px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}

.pkg-bigcard-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #aaa;
  margin: 0 0 28px;
  letter-spacing: -0.005em;
  position: relative;
  z-index: 1;
}

.pkg-bigcard-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}
.pkg-bigcard-list li {
  font-size: 14px;
  line-height: 1.5;
  color: #ccc;
  padding-left: 20px;
  position: relative;
  letter-spacing: -0.005em;
}
.pkg-bigcard-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 1.5px;
  background: #FF6A00;
}

.pkg-bigcard-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
  gap: 16px;
  flex-wrap: wrap;
}
.pkg-bigcard-meta {
  font-size: 12px;
  color: #888;
  letter-spacing: -0.005em;
}
.pkg-bigcard-cta {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.005em;
}
.pkg-bigcard-cta::after {
  content: '\2192';
  margin-left: 8px;
  transition: transform 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
}
.pkg-bigcard:hover .pkg-bigcard-cta::after { transform: translateX(6px); }

/* ========================================================================== */
/* CATALOGO TABS APPLE-STYLE (v3.1) — STORE + FLOW                           */
/* ========================================================================== */

.lab-tabs-wrap {
  display: flex;
  justify-content: center;
  margin: 64px 0 56px;
}
.lab-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.lab-tab {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  background: transparent;
  border: 0;
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.55);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
  position: relative;
}
.lab-tab:hover {
  color: rgba(255, 255, 255, 0.9);
}
.lab-tab.is-active {
  background: #fff;
  color: #0a0a0a;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
}
.lab-tab-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lab-tab-icon svg { width: 100%; height: 100%; }
.lab-tab-label { font-weight: 600; letter-spacing: -0.015em; }
.lab-tab-sub {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.7;
  letter-spacing: -0.005em;
}
@media (max-width: 600px) {
  .lab-tab { padding: 10px 18px; font-size: 13px; gap: 8px; }
  .lab-tab-sub { display: none; }
}

/* Panels */
.lab-tab-panel {
  display: none;
  opacity: 0;
}
.lab-tab-panel.is-active {
  display: block;
  animation: labTabFadeIn 0.5s cubic-bezier(0.28, 0.11, 0.32, 1) forwards;
}
@keyframes labTabFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero do produto dentro do tab */
.lab-prod-hero {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 80px;
}
.lab-prod-hero-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 24px;
}
.lab-prod-hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: -0.005em;
  margin: 0;
  max-width: 720px;
  margin: 0 auto;
}

/* Block (escopo, processo) */
.lab-prod-block { margin-bottom: 80px; }
.lab-prod-block-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 32px;
  text-align: center;
}

/* Grid de itens (escopo) */
.lab-prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}
@media (max-width: 980px) { .lab-prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .lab-prod-grid { grid-template-columns: 1fr; } }
.lab-prod-item {
  padding: 28px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s;
}
.lab-prod-item:hover { background: rgba(255, 255, 255, 0.04); }
@media (min-width: 981px) {
  .lab-prod-item:nth-child(3n) { border-right: 0; }
  .lab-prod-grid > .lab-prod-item:nth-last-child(-n+3) { border-bottom: 0; }
}
@media (max-width: 980px) and (min-width: 601px) {
  .lab-prod-item:nth-child(2n) { border-right: 0; }
}
@media (max-width: 600px) {
  .lab-prod-item { border-right: 0; }
}
.lab-prod-item-name {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.lab-prod-item-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: -0.005em;
}

/* Timeline */
.lab-prod-timeline {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.lab-prod-timeline::before {
  content: '';
  position: absolute;
  left: 60px;
  top: 30px;
  bottom: 30px;
  width: 1.5px;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.1) 100%);
}
@media (max-width: 600px) { .lab-prod-timeline::before { left: 44px; } }
.lab-prod-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  padding: 22px 0;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.lab-prod-step-day {
  width: 122px;
  height: 60px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .lab-prod-step-day { width: 88px; height: 52px; font-size: 11px; }
  .lab-prod-step { gap: 18px; }
}
.lab-prod-step-body { padding-top: 10px; }
.lab-prod-step-name {
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.lab-prod-step-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: -0.005em;
  max-width: 580px;
}

/* Two-col cards (revisões/garantia OU porqueLab/prereq) */
.lab-prod-twocol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 64px;
}
@media (max-width: 760px) { .lab-prod-twocol { grid-template-columns: 1fr; } }
.lab-prod-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px 32px;
  transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
}
.lab-prod-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.18);
}
.lab-prod-card-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
}
.lab-prod-card-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 18px;
}
.lab-prod-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lab-prod-card-list li {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  padding-left: 18px;
  position: relative;
  letter-spacing: -0.005em;
}
.lab-prod-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 1.5px;
  background: #fff;
}
.lab-prod-card-list li strong { color: #fff; font-weight: 600; }
.lab-prod-card-text {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: -0.005em;
  margin: 0;
}
.lab-prod-card-text strong { color: #fff; font-weight: 600; }

/* Quote final do tab */
.lab-prod-quote {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
  letter-spacing: -0.015em;
  padding: 36px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Briefing form */
.lab-brief-wrap {
  margin-top: 100px;
  display: flex;
  justify-content: center;
}
.lab-brief-card {
  width: 100%;
  max-width: 620px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lab-brief-card::before {
  content: '';
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
  filter: blur(50px);
  top: -200px;
  right: -180px;
  pointer-events: none;
}
@media (max-width: 600px) { .lab-brief-card { padding: 40px 24px; } }

.lab-brief-head { position: relative; z-index: 1; margin-bottom: 36px; }
.lab-brief-title {
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #fff;
  margin: 16px 0 14px;
}
.lab-brief-title #labBriefProdName,
.lab-brief-title span {
  color: #fff;
  background: linear-gradient(180deg, transparent 75%, rgba(255, 255, 255, 0.4) 75%, rgba(255, 255, 255, 0.4) 90%, transparent 90%);
  padding: 0 4px;
}
.lab-brief-sub {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: -0.005em;
  margin: 0;
}

.lab-brief-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) { .lab-brief-row { grid-template-columns: 1fr; } }

.lab-brief-input {
  width: 100%;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #fff;
  font: inherit;
  font-size: 14px;
  letter-spacing: -0.005em;
  transition: all 0.2s cubic-bezier(0.28, 0.11, 0.32, 1);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.lab-brief-row .lab-brief-input { margin-bottom: 0; }
.lab-brief-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}
.lab-brief-input::placeholder { color: rgba(255, 255, 255, 0.35); }
.lab-brief-input option { background: #0a0a0a; color: #fff; }
textarea.lab-brief-input { resize: vertical; min-height: 80px; }

select.lab-brief-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' stroke-linecap='round'><path d='m4 6 4 4 4-4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 16px;
  padding-right: 44px;
}

.lab-brief-submit {
  width: 100%;
  padding: 18px;
  margin-top: 8px;
  background: #fff;
  color: #0a0a0a;
  border: 0;
  border-radius: 100px;
  font: inherit;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}
.lab-brief-submit:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.5);
}
.lab-brief-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.lab-brief-note {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin: 16px 0 0;
  position: relative;
  z-index: 1;
}

/* Override eyebrows DENTRO do #catalogo pra P&B */
#catalogo .section-eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

/* ========================================================================== */
/* CATALOGO TABS v3.2 — Premium upgrades (stats, bento, big timeline, asym)  */
/* ========================================================================== */

/* HERO TAG */
.lab-prod-hero { position: relative; }
.lab-prod-hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

/* STATS ROW */
.lab-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0 0 96px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 56px 0;
}
@media (max-width: 900px) { .lab-stats { grid-template-columns: repeat(2, 1fr); padding: 40px 0; } }
@media (max-width: 480px) { .lab-stats { grid-template-columns: 1fr; padding: 32px 0; } }

.lab-stat {
  text-align: center;
  padding: 12px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.lab-stat:last-child { border-right: 0; }
@media (max-width: 900px) {
  .lab-stat:nth-child(2n) { border-right: 0; }
  .lab-stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, 0.06); padding-bottom: 24px; }
  .lab-stat:nth-child(n+3) { padding-top: 24px; }
}
@media (max-width: 480px) {
  .lab-stat { border-right: 0; padding: 20px 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .lab-stat:last-child { border-bottom: 0; }
}

.lab-stat-num {
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
  color: #fff;
  margin-bottom: 14px;
}
.lab-stat-num span {
  font-size: 0.5em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  margin-left: 2px;
}
.lab-stat-lbl {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: -0.005em;
  max-width: 200px;
  margin: 0 auto;
}

/* BLOCK HEAD */
.lab-prod-block-head {
  text-align: center;
  margin-bottom: 56px;
}
.lab-prod-block-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
}
.lab-prod-block-h {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
  margin: 0;
}

/* BENTO ESCOPO */
.lab-bento {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lab-bento-feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lab-bento-feats--two { grid-template-columns: repeat(2, 1fr); }
.lab-bento-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .lab-bento-feats,
  .lab-bento-feats--two { grid-template-columns: 1fr; }
  .lab-bento-mini-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .lab-bento-mini-grid { grid-template-columns: 1fr; }
}

.lab-bento-feat {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 36px 32px;
  transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
  position: relative;
  overflow: hidden;
}
.lab-bento-feat::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
  filter: blur(40px);
  top: -120px;
  right: -100px;
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.5s;
}
.lab-bento-feat:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-3px);
}
.lab-bento-feat:hover::before { opacity: 1; }
.lab-bento-icon {
  width: 48px;
  height: 48px;
  color: #fff;
  margin-bottom: 28px;
  transition: transform 0.5s cubic-bezier(0.28, 0.11, 0.32, 1);
  position: relative;
  z-index: 1;
}
.lab-bento-feat:hover .lab-bento-icon { transform: scale(1.08) rotate(-2deg); }
.lab-bento-icon svg { width: 100%; height: 100%; }
.lab-bento-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
}
.lab-bento-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: -0.005em;
  margin: 0;
  position: relative;
  z-index: 1;
}

.lab-bento-mini {
  grid-column: span 1;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 20px 22px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: -0.005em;
  line-height: 1.45;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}
.lab-bento-mini::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.5;
}
.lab-bento-mini:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
  transform: translateX(2px);
}
.lab-bento-mini:hover::before { opacity: 1; }

/* TIMELINE BIG (números gigantes) */
.lab-timeline-big {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.lab-timeline-big::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 80px;
  bottom: 80px;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.05) 100%);
}
@media (max-width: 720px) { .lab-timeline-big::before { left: 50px; } }

.lab-tl-step {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  align-items: flex-start;
  padding: 28px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 720px) {
  .lab-tl-step { grid-template-columns: 100px 1fr; gap: 24px; padding: 20px 0; }
}

.lab-tl-num {
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: rgba(255, 255, 255, 0.18);
  text-align: right;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.08) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-feature-settings: 'tnum';
  transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
}
.lab-tl-step:hover .lab-tl-num {
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.45) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lab-tl-body {
  padding-top: 12px;
}
.lab-tl-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.lab-tl-name {
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 12px;
}
.lab-tl-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: -0.005em;
  max-width: 600px;
  margin: 0;
}

/* CARDS ASSIMÉTRICOS (bottom) */
.lab-prod-asym {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 16px;
  margin-bottom: 64px;
}
@media (max-width: 900px) { .lab-prod-asym { grid-template-columns: 1fr; } }

.lab-asym-major {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 44px 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
}
.lab-asym-major::before {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
  filter: blur(40px);
  bottom: -180px;
  left: -120px;
  pointer-events: none;
}
.lab-asym-major:hover { border-color: rgba(255, 255, 255, 0.18); }
@media (max-width: 600px) {
  .lab-asym-major { grid-template-columns: 1fr; gap: 20px; padding: 32px 28px; }
}
.lab-asym-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.lab-asym-icon svg { width: 26px; height: 26px; }
.lab-asym-major-content { position: relative; z-index: 1; }
.lab-asym-major-title {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #fff;
  margin: 14px 0 16px;
}
.lab-asym-major-text {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: -0.005em;
  margin: 0;
}
.lab-asym-major-text strong { color: #fff; font-weight: 600; }

/* Lista de falhas (FLOW) */
.lab-falhas-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.lab-falhas-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: -0.005em;
}
.lab-falhas-num {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lab-falhas-list li strong { color: #fff; font-weight: 600; }

/* CARD MENOR (asym minor) — lista chave/valor */
.lab-asym-minor {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 36px 32px;
  transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
}
.lab-asym-minor:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
}
.lab-asym-minor-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #fff;
  margin: 14px 0 24px;
}
.lab-rev-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.lab-rev-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14.5px;
  letter-spacing: -0.005em;
}
.lab-rev-list li:first-child { border-top: 0; padding-top: 0; }
.lab-rev-list li span {
  color: rgba(255, 255, 255, 0.55);
}
.lab-rev-list li strong {
  color: #fff;
  font-weight: 600;
}

/* ========================================================================== */
/* CATALOGO TABS v3.3 — Copy com tese, bullets, outcomes                      */
/* ========================================================================== */

/* Promise line no hero */
.lab-prod-hero-promise {
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  letter-spacing: -0.015em;
  max-width: 700px;
  margin: 0 auto 24px;
}

/* Subtítulo dos blocos (descrição abaixo do título) */
.lab-prod-block-sub {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: -0.005em;
  max-width: 640px;
  margin: 18px auto 0;
}

/* Bullets dentro dos cards destaque */
.lab-bento-bullets {
  list-style: none;
  padding: 24px 0 0;
  margin: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.lab-bento-bullets li {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  padding-left: 22px;
  position: relative;
  letter-spacing: -0.005em;
}
.lab-bento-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.4);
}

/* Outcome line na timeline */
.lab-tl-outcome {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.005em;
  transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}
.lab-tl-outcome::before {
  content: '\2192';
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
}
.lab-tl-step:hover .lab-tl-outcome {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

/* ========================================================================== */
/* LAB ENGINE — 9 sections + CTA final (P&B premium)                          */
/* ========================================================================== */

.eng-section {
  padding: 100px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.eng-section:last-child { border-bottom: 0; }
.eng-section:first-child { padding-top: 60px; }

/* Block head (eyebrow + título + sub) */
.eng-block-head {
  text-align: center;
  margin-bottom: 64px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.eng-block-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 18px;
}
.eng-block-h {
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: #fff;
  margin: 0;
}
.eng-block-sub {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: -0.01em;
  margin: 18px 0 0;
}

/* X icon usado em problemas e negações */
.eng-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
  font-weight: 500;
  line-height: 1;
}

/* CTA buttons */
.eng-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: #fff;
  color: #0a0a0a;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  margin-top: 36px;
}
.eng-cta:hover {
  transform: translateY(-2px);
  background: #f0f0f0;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
}
.eng-cta-arrow { transition: transform 0.3s cubic-bezier(0.28, 0.11, 0.32, 1); }
.eng-cta:hover .eng-cta-arrow { transform: translateX(6px); }

/* SECTION 1: HERO */
.eng-hero { padding: 80px 0 100px; text-align: center; }
.eng-hero-inner { max-width: 880px; margin: 0 auto; }
.eng-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.eng-hero-title {
  font-size: clamp(40px, 5.2vw, 68px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
  color: #fff;
  margin: 0 0 28px;
}
.eng-hero-sub {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: -0.005em;
  max-width: 720px;
  margin: 0 auto;
}
.eng-hero-pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin: 40px 0 16px;
}
.eng-hero-pillars span {
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
}
.eng-hero-proof {
  margin: 24px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: -0.005em;
}

/* SECTION 2: PROBLEMA */
.eng-problem-grid {
  max-width: 840px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 760px) { .eng-problem-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .eng-problem-grid { grid-template-columns: 1fr; } }
.eng-problem-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: -0.005em;
}
.eng-problem-fechamento {
  text-align: center;
  margin: 56px auto 12px;
  max-width: 640px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: -0.005em;
}
.eng-problem-punch {
  text-align: center;
  margin: 0 auto;
  max-width: 640px;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

/* SECTION 3: O QUE É */
.eng-what { text-align: center; }
.eng-what-list {
  max-width: 600px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.eng-what-neg {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: -0.01em;
  text-align: left;
}
.eng-what-aff {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: #fff;
  margin: 0 auto 18px;
  max-width: 720px;
}
.eng-what-aff strong {
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.55) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.eng-what-def {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: -0.005em;
  max-width: 640px;
  margin: 0 auto;
}

/* SECTION 4: ENTREGA */
.eng-deliver-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 760px) { .eng-deliver-grid { grid-template-columns: 1fr; } }
.eng-deliver-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
}
.eng-deliver-card:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}
.eng-deliver-icon {
  width: 44px;
  height: 44px;
  color: #fff;
  margin-bottom: 24px;
  transition: transform 0.5s cubic-bezier(0.28, 0.11, 0.32, 1);
}
.eng-deliver-card:hover .eng-deliver-icon { transform: scale(1.08) rotate(-2deg); }
.eng-deliver-icon svg { width: 100%; height: 100%; }
.eng-deliver-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 8px;
}
.eng-deliver-platform {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.eng-deliver-list {
  list-style: none;
  padding: 24px 0 0;
  margin: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.eng-deliver-list li {
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  padding-left: 22px;
  position: relative;
  letter-spacing: -0.005em;
}
.eng-deliver-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.4);
}

/* SECTION 5: SCOPE (BR / GLOBAL) */
.eng-scope-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 760px) { .eng-scope-grid { grid-template-columns: 1fr; } }
.eng-scope-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px 36px;
  transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
}
.eng-scope-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}
.eng-scope-flag {
  width: 60px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 4px;
  overflow: hidden;
}
.eng-scope-flag svg { width: 100%; height: 100%; display: block; }
.eng-scope-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 24px;
}
.eng-scope-countries {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.eng-scope-countries span {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: -0.005em;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
}

/* SECTION 6: COMO FUNCIONA */
.eng-how-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 760px) { .eng-how-grid { grid-template-columns: 1fr; } }
.eng-how-step {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
}
.eng-how-step:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}
.eng-how-num {
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.9;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.08) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}
.eng-how-name {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 12px;
}
.eng-how-desc {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: -0.005em;
}

/* SECTION 7: POR QUE */
.eng-why { text-align: center; }
.eng-why-text {
  max-width: 720px;
  margin: 0 auto 48px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: -0.005em;
}
.eng-why-stats {
  max-width: 720px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}
@media (max-width: 600px) { .eng-why-stats { grid-template-columns: 1fr; } }
.eng-why-stat {
  padding: 36px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}
.eng-why-stat:last-child { border-right: 0; }
@media (max-width: 600px) {
  .eng-why-stat { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .eng-why-stat:last-child { border-bottom: 0; }
}
.eng-why-stat strong {
  display: block;
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
  color: #fff;
  margin-bottom: 10px;
}
.eng-why-stat span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: -0.005em;
}
.eng-why-partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.eng-why-partner {
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  letter-spacing: -0.005em;
}

/* SECTION 8: PARA QUEM É */
.eng-target-list {
  max-width: 720px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 600px) { .eng-target-list { grid-template-columns: 1fr; } }
.eng-target-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -0.005em;
}
.eng-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  color: #0a0a0a;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}

/* SECTION 9: FAQ */
.eng-faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.eng-faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
}
.eng-faq-item:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.eng-faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.015em;
}
.eng-faq-item summary::-webkit-details-marker { display: none; }
.eng-faq-item summary::after {
  content: '';
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
  background-position: center;
  background-size: 12px 1.5px, 1.5px 12px;
  background-repeat: no-repeat;
  color: rgba(255, 255, 255, 0.55);
  transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}
.eng-faq-item[open] summary::after {
  transform: rotate(135deg);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.eng-faq-item p {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: -0.005em;
}

/* CTA FINAL */
.eng-cta-final {
  padding: 120px 0 80px;
  text-align: center;
}
.eng-cta-final-inner {
  max-width: 720px;
  margin: 0 auto;
}
.eng-cta-final-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
  color: #fff;
  margin: 0 0 24px;
}
.eng-cta-final-tag {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: -0.005em;
  margin: 0 0 28px;
}
.eng-cta-final-q {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.3;
  color: #fff;
  margin: 0 0 16px;
}
.eng-cta-final-q em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
}
.eng-cta-final-q strong {
  display: block;
  margin-top: 8px;
  font-weight: 600;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.55) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.eng-cta-final-q strong em { color: rgba(255, 255, 255, 0.95); }
.eng-cta--final { margin-top: 40px; }

/* ========================================================================== */
/* LAB ENGINE — Demo animations (showing the product, not telling)            */
/* ========================================================================== */

.eng-demo {
  height: 156px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  margin-bottom: 28px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* DEMO 1: BRAND — Naming morphing + color palette */
.eng-demo--brand {
  flex-direction: column;
  gap: 18px;
  padding: 24px;
}
.eng-demo-brand-stage {
  position: relative;
  height: 44px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eng-demo-brand-name {
  position: absolute;
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.04em;
  opacity: 0;
  animation: engBrandRotate 9s infinite cubic-bezier(0.5, 0, 0.5, 1);
}
.eng-demo-brand-name--1 {
  animation-delay: 0s;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: -0.05em;
}
.eng-demo-brand-name--2 {
  animation-delay: 3s;
  font-family: 'Times New Roman', serif;
  letter-spacing: 0.18em;
  font-weight: 400;
}
.eng-demo-brand-name--3 {
  animation-delay: 6s;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.03em;
}
@keyframes engBrandRotate {
  0% { opacity: 0; transform: translateY(8px); }
  6%, 27% { opacity: 1; transform: translateY(0); }
  33%, 100% { opacity: 0; transform: translateY(-8px); }
}

.eng-demo-brand-swatch {
  display: flex;
  gap: 6px;
}
.eng-demo-brand-swatch span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--c);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: scale(0.5);
  animation: engSwatchPop 9s infinite;
}
.eng-demo-brand-swatch span:nth-child(1) { animation-delay: 0.4s; }
.eng-demo-brand-swatch span:nth-child(2) { animation-delay: 0.6s; }
.eng-demo-brand-swatch span:nth-child(3) { animation-delay: 0.8s; }
.eng-demo-brand-swatch span:nth-child(4) { animation-delay: 1.0s; }
.eng-demo-brand-swatch span:nth-child(5) { animation-delay: 1.2s; }
@keyframes engSwatchPop {
  0%, 4% { opacity: 0; transform: scale(0.5); }
  10%, 90% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(0.5); }
}

/* DEMO 2: STORE — Mini browser with products + PIX */
.eng-demo--store {
  padding: 18px 28px 18px 28px;
}
.eng-demo-browser {
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.eng-demo-browser-bar {
  height: 14px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.eng-demo-browser-bar span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.eng-demo-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 6px;
}
.eng-demo-prod {
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  opacity: 0;
  transform: scale(0.85);
  animation: engProdPop 6s infinite;
}
.eng-demo-prod:nth-child(1) { animation-delay: 0.2s; }
.eng-demo-prod:nth-child(2) { animation-delay: 0.6s; }
.eng-demo-prod:nth-child(3) { animation-delay: 1.0s; }
.eng-demo-prod:nth-child(4) { animation-delay: 1.4s; }
@keyframes engProdPop {
  0%, 5% { opacity: 0; transform: scale(0.85); }
  15%, 75% { opacity: 1; transform: scale(1); }
  90%, 100% { opacity: 0; transform: scale(0.85); }
}
.eng-demo-pix {
  position: absolute;
  bottom: 18px;
  right: 28px;
  padding: 6px 12px;
  background: #fff;
  color: #0a0a0a;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(10px);
  animation: engPixPop 6s infinite;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
@keyframes engPixPop {
  0%, 60% { opacity: 0; transform: translateY(10px); }
  70%, 90% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

/* DEMO 3: PERFORMANCE — Bars growing + line ascending + revenue counting */
.eng-demo--perf {
  padding: 20px 24px 12px;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  justify-content: space-between;
}
.eng-demo-perf-num {
  position: relative;
  height: 22px;
  width: 100%;
}
.eng-demo-perf-num span {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  opacity: 0;
  font-feature-settings: 'tnum';
  animation: engNumRotate 7s infinite;
}
.eng-demo-perf-num-1 { animation-delay: 0s; }
.eng-demo-perf-num-2 { animation-delay: 2.3s; }
.eng-demo-perf-num-3 { animation-delay: 4.6s; }
@keyframes engNumRotate {
  0% { opacity: 0; transform: translateY(6px); }
  4%, 30% { opacity: 1; transform: translateY(0); }
  35%, 100% { opacity: 0; transform: translateY(-6px); }
}

.eng-demo-perf-chart {
  width: 100%;
  height: 80px;
  display: block;
}
.eng-bar {
  fill: rgba(255, 255, 255, 0.12);
  transform-origin: bottom;
  transform-box: fill-box;
  transform: scaleY(0);
  animation: engBarGrow 7s infinite cubic-bezier(0.4, 0.0, 0.2, 1);
}
.eng-bar-1 { animation-delay: 0.2s; }
.eng-bar-2 { animation-delay: 0.5s; }
.eng-bar-3 { animation-delay: 0.8s; }
.eng-bar-4 { animation-delay: 1.1s; }
.eng-bar-5 { animation-delay: 1.4s; fill: rgba(255, 255, 255, 0.35); }
@keyframes engBarGrow {
  0%, 5% { transform: scaleY(0); }
  20%, 80% { transform: scaleY(1); }
  95%, 100% { transform: scaleY(0); }
}
.eng-line {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: engLineDraw 7s infinite cubic-bezier(0.4, 0.0, 0.2, 1);
}
@keyframes engLineDraw {
  0%, 8% { stroke-dashoffset: 220; opacity: 0; }
  18% { opacity: 1; }
  35%, 80% { stroke-dashoffset: 0; opacity: 1; }
  92%, 100% { stroke-dashoffset: 220; opacity: 0; }
}

/* DEMO 4: CONTENT — Stack of creative cards appearing */
.eng-demo--content {
  padding: 24px;
  gap: 12px;
}
.eng-demo-card {
  width: 92px;
  height: 108px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px) rotate(-3deg);
  animation: engCardRise 5s infinite cubic-bezier(0.34, 1.36, 0.64, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.82);
}
.eng-demo-card--1 {
  background: linear-gradient(135deg, #2c2c30 0%, #46464a 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation-delay: 0s;
  transform: translateY(14px) rotate(-4deg);
}
.eng-demo-card--2 {
  background: linear-gradient(135deg, #1a1a1c 0%, #2c2c30 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  animation-delay: 0.4s;
}
.eng-demo-card--3 {
  background: linear-gradient(135deg, #3a3a40 0%, #1a1a1c 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation-delay: 0.8s;
  transform: translateY(14px) rotate(4deg);
}
.eng-demo-card-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}
.eng-demo-card svg { color: #fff; opacity: 0.8; }
.eng-demo-card-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 60%;
}
.eng-demo-card-lines div {
  height: 4px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 2px;
}
.eng-demo-card-lines div:nth-child(2) { width: 70%; }
@keyframes engCardRise {
  0% { opacity: 0; transform: translateY(14px) rotate(var(--r, 0deg)); }
  10%, 80% { opacity: 1; transform: translateY(0) rotate(0deg); }
  92%, 100% { opacity: 0; transform: translateY(-14px) rotate(0deg); }
}
.eng-demo-card--1 { --r: -4deg; }
.eng-demo-card--3 { --r: 4deg; }

/* Tese (frase curta entre título e bullets) nos deliver cards */
.eng-deliver-tese {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: -0.005em;
  font-style: italic;
  margin: 12px 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ========================================================================== */
/* CATALOGO v4.1 — Seção destacada com background, decoração e tipografia    */
/* ========================================================================== */

.prods-section {
  position: relative;
  padding: 180px 22px 200px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.015) 30%, rgba(255, 255, 255, 0.015) 70%, transparent 100%),
    #0a0a0a;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
@media (max-width: 760px) { .prods-section { padding: 120px 22px 140px; } }

/* Decoração ambiente — orbes + grid sutil */
.prods-bg-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.prods-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.prods-bg-orb--1 {
  width: 620px;
  height: 620px;
  top: -150px;
  left: -120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 65%);
  animation: orbDrift 18s ease-in-out infinite;
}
.prods-bg-orb--2 {
  width: 520px;
  height: 520px;
  bottom: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 65%);
  animation: orbDrift 22s ease-in-out infinite reverse;
}
@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.08); }
}
.prods-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.prods-container {
  max-width: 1200px !important;
  position: relative;
  z-index: 1;
}

/* Headline com kicker numerado + frase + sub */
.prods-head {
  text-align: center;
  margin-bottom: 88px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.prods-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  padding: 8px 18px 8px 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
}
.prods-kicker-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: #0a0a0a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.prods-kicker-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.prods-headline {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
  color: #fff;
  margin: 0;
}
.prods-headline-line {
  display: block;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}
.prods-headline em {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-style: normal;
  font-weight: 600;
}
.prods-headline-sub {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: -0.005em;
  margin: 32px auto 0;
  max-width: 600px;
}

/* Grid asymétrico: Engine destaque (1.6fr) + Flow secondary (1fr) */
.prods-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) { .prods-grid { grid-template-columns: 1fr; } }

/* Card */
.prod-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s cubic-bezier(0.28, 0.11, 0.32, 1), transform 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
}
.prod-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

/* Demo (top do card, animação) */
.prod-card-demo {
  height: 200px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  margin-bottom: 32px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* DEMO ENGINE: naming morphing + paleta */
.prod-demo--engine {
  flex-direction: column;
  gap: 24px;
  padding: 24px;
}
.prod-demo-stage {
  position: relative;
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prod-demo-name {
  position: absolute;
  font-size: 38px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.04em;
  opacity: 0;
  animation: prodNameRotate 9s infinite cubic-bezier(0.5, 0, 0.5, 1);
}
.prod-demo-name--1 {
  animation-delay: 0s;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: -0.05em;
}
.prod-demo-name--2 {
  animation-delay: 3s;
  font-family: 'Times New Roman', serif;
  letter-spacing: 0.18em;
  font-weight: 400;
}
.prod-demo-name--3 {
  animation-delay: 6s;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.03em;
}
@keyframes prodNameRotate {
  0% { opacity: 0; transform: translateY(8px); }
  6%, 27% { opacity: 1; transform: translateY(0); }
  33%, 100% { opacity: 0; transform: translateY(-8px); }
}
.prod-demo-swatch {
  display: flex;
  gap: 8px;
}
.prod-demo-swatch span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: scale(0.5);
  animation: prodSwatchPop 9s infinite;
}
.prod-demo-swatch span:nth-child(1) { animation-delay: 0.4s; }
.prod-demo-swatch span:nth-child(2) { animation-delay: 0.6s; }
.prod-demo-swatch span:nth-child(3) { animation-delay: 0.8s; }
.prod-demo-swatch span:nth-child(4) { animation-delay: 1.0s; }
.prod-demo-swatch span:nth-child(5) { animation-delay: 1.2s; }
@keyframes prodSwatchPop {
  0%, 4% { opacity: 0; transform: scale(0.5); }
  10%, 90% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(0.5); }
}

/* DEMO FLOW: cards de email em cascata */
.prod-demo--flow {
  flex-direction: column;
  gap: 8px;
  padding: 22px 28px;
  align-items: stretch;
  justify-content: center;
}
.prod-demo-flow-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(-20px);
  animation: prodFlowEnter 6s infinite cubic-bezier(0.28, 0.11, 0.32, 1);
}
.prod-demo-flow-card--1 { animation-delay: 0s; }
.prod-demo-flow-card--2 { animation-delay: 1.2s; }
.prod-demo-flow-card--3 { animation-delay: 2.4s; }
@keyframes prodFlowEnter {
  0%, 6% { opacity: 0; transform: translateX(-20px); }
  14%, 70% { opacity: 1; transform: translateX(0); }
  82%, 100% { opacity: 0; transform: translateX(20px); }
}
.prod-demo-flow-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #fff;
  text-transform: uppercase;
}
.prod-demo-flow-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  width: 100%;
}
.prod-demo-flow-bar--short { width: 60%; }

/* Tag (eyebrow do card) */
.prod-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  align-self: flex-start;
}

/* Title */
.prod-card-title {
  font-size: clamp(28px, 2.8vw, 36px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 14px;
  position: relative;
  z-index: 1;
}

/* Promise */
.prod-card-promise {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: -0.005em;
  margin: 0 0 28px;
  position: relative;
  z-index: 1;
}

/* List */
.prod-card-list {
  list-style: none;
  padding: 24px 0 0;
  margin: 0 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
  flex-grow: 1;
}
.prod-card-list li {
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  padding-left: 22px;
  position: relative;
  letter-spacing: -0.005em;
}
.prod-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.45);
}

/* CTA */
.prod-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 26px;
  background: #fff;
  color: #0a0a0a;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1;
}
.prod-card-cta:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}
.prod-card-cta-arrow {
  margin-left: 12px;
  transition: transform 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}
.prod-card-cta:hover .prod-card-cta-arrow { transform: translateX(4px); }

/* ========================================================================== */
/* CARD FEATURED (Engine) + SECONDARY (Flow) — destaque assimétrico           */
/* ========================================================================== */

.prod-card--featured {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
  padding: 44px 44px 36px;
}
.prod-card--featured:hover {
  border-color: rgba(255, 255, 255, 0.24);
}
.prod-card--featured .prod-card-demo { height: 240px; }
.prod-card--featured .prod-card-title {
  font-size: clamp(32px, 3.4vw, 44px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.prod-card--featured .prod-card-promise { font-size: 17px; max-width: 540px; }
.prod-card--featured .prod-card-list { gap: 14px; }
.prod-card--featured .prod-card-list li { font-size: 15px; }

/* Badge "Sistema principal" */
.prod-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  align-self: flex-start;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.prod-card-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  animation: badgeDot 2.4s infinite;
}
@keyframes badgeDot {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* Card secondary (Flow) — mais compacto */
.prod-card--secondary {
  padding: 32px 32px 28px;
}
.prod-card--secondary .prod-card-demo { height: 200px; }
.prod-card--secondary .prod-card-title { font-size: clamp(22px, 2vw, 28px); }
.prod-card--secondary .prod-card-promise { font-size: 14.5px; }
.prod-card--secondary .prod-card-list li { font-size: 13.5px; }

/* ========================================================================== */
/* PHASES — animações multi-etapa (Engine + Flow)                            */
/* ========================================================================== */

.phase {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 28px;
  opacity: 0;
  animation: phaseFade 16s infinite ease-in-out;
}
.prod-card-demo .phase-1,
.showcase-demo .phase-1 { animation-delay: 0s; }
.prod-card-demo .phase-2,
.showcase-demo .phase-2 { animation-delay: -12s; }
.prod-card-demo .phase-3,
.showcase-demo .phase-3 { animation-delay: -8s; }
.prod-card-demo .phase-4,
.showcase-demo .phase-4 { animation-delay: -4s; }

@keyframes phaseFade {
  0% { opacity: 0; transform: translateY(8px); }
  3%, 22% { opacity: 1; transform: translateY(0); }
  25%, 100% { opacity: 0; transform: translateY(-8px); }
}

.phase-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  position: absolute;
  top: 18px;
  left: 22px;
}

/* ENGINE phases */
.phase-engine-stage {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.phase-engine-name {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}
.phase-engine-name--1 { font-family: 'DM Sans', sans-serif; letter-spacing: -0.05em; }
.phase-engine-name--2 { font-family: 'Times New Roman', serif; letter-spacing: 0.16em; font-weight: 400; }
.phase-engine-name--3 { font-style: italic; font-weight: 500; }

.phase-engine-swatch {
  display: flex;
  gap: 10px;
}
.phase-engine-swatch span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--c);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.phase-engine-typo {
  display: flex;
  gap: 28px;
  margin-top: 8px;
}
.phase-engine-typo span {
  font-size: 28px;
  color: rgba(255, 255, 255, 0.7);
}

.phase-engine-logo {
  width: 96px;
  height: 96px;
  color: #fff;
}
.phase-engine-logo circle,
.phase-engine-logo path {
  stroke-dasharray: none;
  stroke-dashoffset: 0;
  opacity: 1;
}

.phase-engine-browser {
  width: 80%;
  max-width: 280px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
}
.phase-engine-browser-bar {
  height: 14px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.phase-engine-browser-bar span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.phase-engine-browser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 6px;
  height: 96px;
}
.phase-engine-browser-grid > div {
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

/* FLOW phases */
.phase-flow-list {
  width: 80%;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.phase-flow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 8px 12px;
}
.phase-flow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--d);
  flex-shrink: 0;
}
.phase-flow-line {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 2px;
}

.phase-flow-cards {
  width: 88%;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.phase-flow-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.phase-flow-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #fff;
  text-transform: uppercase;
}
.phase-flow-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 2px;
}
.phase-flow-bar--short { width: 60%; }

.phase-flow-cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  width: 80%;
  max-width: 230px;
}
.phase-flow-cal > div {
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 3px;
}
.phase-flow-cal > div.hi { background: #fff; border-color: #fff; }

.phase-flow-chart {
  width: 80%;
  max-width: 240px;
  height: 80px;
}
.phase-flow-line-path {
  stroke-dasharray: none;
  stroke-dashoffset: 0;
}
.phase-flow-line-end {
  opacity: 1;
}

/* Cards minimalistas (v4.2) — sem shadows pesadas, sem blur */

/* ========================================================================== */
/* CATALOGO v5.0 — Showcases full-width verticais (Apple feature page style) */
/* ========================================================================== */

.showcase-section {
  background: #0a0a0a;
  padding: 160px 0 200px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}
@media (max-width: 760px) { .showcase-section { padding: 120px 0 140px; } }

.showcase-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 760px) { .showcase-container { padding: 0 22px; } }

/* Header da seção (compacto, minimalista) */
.showcase-head {
  text-align: center;
  margin-bottom: 120px;
}
@media (max-width: 760px) { .showcase-head { margin-bottom: 80px; } }
.showcase-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 24px;
}
.showcase-headline {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
  color: #fff;
  margin: 0;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

/* SHOWCASE — cada produto full-width, 2 colunas */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 540px;
}
.showcase--reverse {
  grid-template-columns: 1fr 1fr;
}
.showcase--reverse .showcase-content { order: 1; }
.showcase--reverse .showcase-visual { order: 2; }
@media (max-width: 900px) {
  .showcase {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: 0;
  }
  .showcase--reverse .showcase-content { order: 2; }
  .showcase--reverse .showcase-visual { order: 1; }
}

/* Visual (área de animação) */
.showcase-visual {
  position: relative;
}
.showcase-visual-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.showcase-visual-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  animation: showcaseDot 2.4s infinite;
}
@keyframes showcaseDot {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.showcase-demo {
  height: 420px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 760px) { .showcase-demo { height: 320px; } }

/* Content (texto à direita ou esquerda) */
.showcase-content {
  display: flex;
  flex-direction: column;
}
.showcase-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
  align-self: flex-start;
}
.showcase-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 20px;
}
.showcase-promise {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: -0.005em;
  margin: 0 0 32px;
  max-width: 540px;
}
.showcase-list {
  list-style: none;
  padding: 28px 0 0;
  margin: 0 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.showcase-list li {
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
  padding-left: 22px;
  position: relative;
  letter-spacing: -0.005em;
}
.showcase-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.45);
}

.showcase-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: #fff;
  color: #0a0a0a;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
  align-self: flex-start;
}
.showcase-cta:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}
.showcase-cta-arrow {
  transition: transform 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}
.showcase-cta:hover .showcase-cta-arrow { transform: translateX(4px); }

/* Divisor entre os 2 showcases */
.showcase-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.12), transparent);
  margin: 140px 0;
}
@media (max-width: 760px) { .showcase-divider { margin: 80px 0; } }

/* Reuso das phases (já definidas em v4.1) — apenas garanto que cabem na showcase-demo */
.showcase-demo .phase {
  position: absolute;
  inset: 0;
}

/* ========================================================================== */
/* CATALOGO v6.0 — Hero monumental Engine + Card slim Flow                    */
/* ========================================================================== */

.showcase-section--monumental {
  background: #0a0a0a;
  padding: 200px 0 240px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}
@media (max-width: 760px) {
  .showcase-section--monumental {
    padding: 120px 0 140px;
  }
}

.showcase-section--monumental .showcase-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 760px) {
  .showcase-section--monumental .showcase-container { padding: 0 22px; }
}

/* esconde blocos antigos do v5 caso restem */
.showcase-section--monumental .showcase-head,
.showcase-section--monumental .showcase {
  display: none;
}

/* Header da seção */
.monumental-head {
  text-align: center;
  margin-bottom: 160px;
}
@media (max-width: 760px) {
  .monumental-head { margin-bottom: 90px; }
}

.monumental-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 28px;
}

.monumental-headline {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #fff;
  margin: 0;
}

/* ============ HERO ENGINE — domina ============ */
.hero-engine {
  text-align: center;
  margin-bottom: 220px;
}
@media (max-width: 760px) {
  .hero-engine { margin-bottom: 130px; }
}

.hero-engine-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  margin-bottom: 36px;
}
.hero-engine-num {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}
.hero-engine-divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
}
.hero-engine-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.hero-engine-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(48px, 8.5vw, 104px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.96;
  color: #fff;
  margin: 0 0 36px;
}

.hero-engine-subhead {
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
  max-width: 680px;
  margin: 0 auto 90px;
}
@media (max-width: 760px) {
  .hero-engine-subhead { margin-bottom: 70px; }
}

/* Visual cinematográfico massivo */
.hero-engine-stage {
  width: 100%;
  max-width: 920px;
  margin: 0 auto 100px;
  aspect-ratio: 16 / 10;
  background: radial-gradient(120% 90% at 50% 0%, #1c1c1e 0%, #0d0d0d 70%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}
@media (max-width: 760px) {
  .hero-engine-stage {
    aspect-ratio: 4 / 5;
    margin-bottom: 70px;
    border-radius: 16px;
  }
}

.hero-engine-stage .showcase-demo {
  position: absolute;
  inset: 0;
}
.hero-engine-stage .phase {
  padding: 60px;
  gap: 28px;
}
.hero-engine-stage .phase-engine-name {
  font-size: clamp(36px, 5vw, 56px);
}
.hero-engine-stage .phase-engine-swatch span {
  width: 48px;
  height: 48px;
}
.hero-engine-stage .phase-engine-typo span {
  font-size: 36px;
}
.hero-engine-stage .phase-engine-logo {
  width: 128px;
  height: 128px;
}
.hero-engine-stage .phase-engine-browser {
  max-width: 360px;
}
.hero-engine-stage .phase-engine-browser-grid {
  height: 130px;
}

/* 4 features distribuídas */
.hero-engine-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto 90px;
  text-align: left;
}
@media (max-width: 900px) {
  .hero-engine-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}
@media (max-width: 500px) {
  .hero-engine-features {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.hero-feature {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 22px;
}
.hero-feature-num {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
}
.hero-feature h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 8px;
}
.hero-feature p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

/* CTA hero */
.hero-engine-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 34px;
  background: #fff;
  color: #0a0a0a;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.08);
}
.hero-engine-cta:hover {
  transform: translateY(-1px);
  background: #f4f4f4;
  box-shadow: 0 14px 36px rgba(255, 255, 255, 0.12);
}
.hero-engine-cta-arrow {
  font-size: 18px;
  transition: transform 0.2s ease;
}
.hero-engine-cta:hover .hero-engine-cta-arrow {
  transform: translateX(4px);
}

/* Divisor */
.monumental-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14) 30%, rgba(255,255,255,0.14) 70%, transparent);
  margin: 0 0 110px;
}
@media (max-width: 760px) {
  .monumental-divider { margin-bottom: 80px; }
}

/* ============ CARD SLIM FLOW — secundário ============ */
.slim-flow {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 64px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .slim-flow {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 40px;
    border-radius: 20px;
  }
}

.slim-flow-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.slim-flow-num {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}
.slim-flow-divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.18);
}
.slim-flow-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.slim-flow-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 18px;
}

.slim-flow-promise {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
  margin: 0 0 26px;
  max-width: 460px;
}

.slim-flow-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.slim-flow-list li {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.slim-flow-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.slim-flow-cta:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}
.slim-flow-cta-arrow {
  font-size: 16px;
  transition: transform 0.2s ease;
}
.slim-flow-cta:hover .slim-flow-cta-arrow {
  transform: translateX(3px);
}

/* Visual menor do Flow */
.slim-flow-visual {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: radial-gradient(120% 90% at 50% 0%, #1c1c1e 0%, #0d0d0d 70%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
@media (max-width: 900px) {
  .slim-flow-visual {
    aspect-ratio: 16 / 10;
    border-radius: 14px;
  }
}
.slim-flow-visual .showcase-demo {
  position: absolute;
  inset: 0;
}
.slim-flow-visual .phase {
  padding: 32px;
  gap: 16px;
}

/* ========================================================================== */
/* SISTEMAS (catálogo v7) — extensão nativa do padrão Lab                     */
/* Apenas modificador de lab-feature-card. Sem novos componentes destoantes.  */
/* ========================================================================== */

.lab-feature-grid--two-systems {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1040px;
}
@media (max-width: 760px) {
  .lab-feature-grid--two-systems {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Card "sistema" — herda lab-feature-card e estende com lista + CTA */
.lab-feature-card--system {
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  text-align: left;
}
@media (max-width: 760px) {
  .lab-feature-card--system { padding: 30px 26px 28px; }
}

.lab-system-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.lab-feature-card--system .lab-feature-icon {
  margin-bottom: 0;
  width: 44px;
  height: 44px;
}
.lab-feature-card--system .lab-feature-icon svg {
  width: 22px;
  height: 22px;
}

/* Card em destaque (Engine) — ênfase visual sutil, sem texto */
.lab-feature-card--featured {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 24px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}
.lab-feature-card--featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}
.lab-feature-card--featured:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.24);
}
.lab-feature-card--featured .lab-feature-icon {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.lab-feature-card--featured .lab-feature-title {
  font-size: 24px;
}

.lab-feature-card--system .lab-feature-title {
  margin-bottom: 12px;
}
.lab-feature-card--system .lab-feature-desc {
  margin-bottom: 24px;
}

.lab-system-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.lab-system-list li {
  position: relative;
  padding: 14px 0 14px 22px;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.lab-system-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 8px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.lab-system-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 6px;
  align-self: flex-start;
  transition: border-color 0.2s ease, gap 0.2s ease;
}
.lab-system-cta:hover {
  border-color: #fff;
  gap: 12px;
}

/* Engine CTA — botão pílula em destaque (mesmo padrão do .lab-final-cta) */
.lab-feature-card--featured .lab-system-cta {
  background: #fff;
  color: #0a0a0a;
  border: 0;
  border-radius: 999px;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease, gap 0.2s ease;
}
.lab-feature-card--featured .lab-system-cta:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.14);
  gap: 12px;
  border: 0;
}

/* neutraliza qualquer eco de v5/v6 caso ainda venha ativo */
.showcase-section--monumental,
.hero-engine,
.slim-flow,
.monumental-head,
.monumental-divider {
  display: none !important;
}

/* ========================================================================== */
/* SISTEMAS — Mini-demos animados dentro dos cards (v7.1)                     */
/* Timeline horizontal Engine + Stream Flow. Sincronizados em 8s.             */
/* ========================================================================== */

.lab-system-demo {
  margin: 4px 0 28px;
  padding: 26px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* === ENGINE: Timeline horizontal === */
.lab-demo-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 28px 0 0;
}
.lab-demo-track::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.lab-demo-progress {
  position: absolute;
  top: 35px;
  left: 0;
  width: 0%;
  max-width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  animation: labProgressGrow 8s infinite ease-in-out;
}
@keyframes labProgressGrow {
  0%   { width: 0%; }
  20%  { width: 30%; }
  45%  { width: 55%; }
  70%  { width: 80%; }
  92%  { width: 100%; }
  100% { width: 100%; }
}

.lab-demo-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.lab-demo-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: none;
  animation: labDotPulse 8s infinite ease-in-out;
}
.lab-demo-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
  animation: labLabelOn 8s infinite ease-in-out;
}

.lab-demo-step--1 .lab-demo-dot,
.lab-demo-step--1 .lab-demo-label { animation-delay: 0s; }
.lab-demo-step--2 .lab-demo-dot,
.lab-demo-step--2 .lab-demo-label { animation-delay: 2s; }
.lab-demo-step--3 .lab-demo-dot,
.lab-demo-step--3 .lab-demo-label { animation-delay: 4s; }
.lab-demo-step--4 .lab-demo-dot,
.lab-demo-step--4 .lab-demo-label { animation-delay: 6s; }

@keyframes labDotPulse {
  0%, 4%   { background: #0a0a0a; border-color: rgba(255,255,255,0.25); transform: scale(1); }
  8%, 22%  { background: #fff; border-color: #fff; transform: scale(1.25); box-shadow: 0 0 0 4px rgba(255,255,255,0.08); }
  28%, 100% { background: rgba(255,255,255,0.5); border-color: rgba(255,255,255,0.5); transform: scale(1); box-shadow: 0 0 0 0 transparent; }
}
@keyframes labLabelOn {
  0%, 4%   { color: rgba(255,255,255,0.4); }
  10%, 22% { color: #fff; }
  28%, 100% { color: rgba(255,255,255,0.55); }
}

/* === FLOW: Stream vertical de emails === */
.lab-system-demo--flow {
  padding: 20px 0;
  justify-content: center;
}
.lab-flow-stream {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lab-flow-mail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  opacity: 0;
  transform: translateX(-12px);
  animation: labMailIn 8s infinite cubic-bezier(0.28, 0.11, 0.32, 1);
}
.lab-flow-mail--1 { animation-delay: 0.0s; }
.lab-flow-mail--2 { animation-delay: 1.6s; }
.lab-flow-mail--3 { animation-delay: 3.2s; }
.lab-flow-mail--4 { animation-delay: 4.8s; }

@keyframes labMailIn {
  0%, 2%   { opacity: 0; transform: translateX(-12px); }
  6%, 20%  { opacity: 1; transform: translateX(0); border-color: rgba(255,255,255,0.18); background: rgba(255,255,255,0.06); }
  30%, 100% { opacity: 1; transform: translateX(0); border-color: rgba(255,255,255,0.06); background: rgba(255,255,255,0.025); }
}

.lab-flow-mail-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}
.lab-flow-mail-bar {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 1px;
  max-width: 90px;
}
.lab-flow-mail-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
  margin-left: auto;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .lab-demo-progress,
  .lab-demo-dot,
  .lab-demo-label,
  .lab-flow-mail { animation: none; }
  .lab-flow-mail { opacity: 1; transform: none; }
  .lab-demo-progress { width: 84%; }
  .lab-demo-dot { background: #fff; border-color: #fff; }
}

/* ========================================================================== */
/* SISTEMAS — Override de peso visual (v7.3)                                  */
/* Mantém o sistema de design do site, mas com mais escala e presença.        */
/* ========================================================================== */

#catalogo {
  padding: 180px 22px !important;
  background:
    radial-gradient(70% 50% at 50% 20%, rgba(255,255,255,0.035) 0%, transparent 60%),
    #0a0a0a;
  position: relative;
}
@media (max-width: 760px) {
  #catalogo { padding: 120px 22px !important; }
}

/* Tipografia: usa os tamanhos padrão do site (section-eyebrow, lab-statement,
   lab-body, lab-principle, lab-feature-title, lab-feature-desc) — sem override.
   O peso visual da seção vem de espaçamento, background e cards, não de fontes. */

/* Cards: mais ar e peso (sem tocar em fonte) */
#catalogo .lab-feature-grid--two-systems {
  margin-top: 72px;
  gap: 24px;
  max-width: 1100px;
}
@media (max-width: 760px) {
  #catalogo .lab-feature-grid--two-systems {
    margin-top: 56px;
    gap: 18px;
  }
}

#catalogo .lab-feature-card--system {
  padding: 44px 36px 36px;
  border-radius: 20px;
  transition: border-color 0.4s ease, background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}
@media (max-width: 760px) {
  #catalogo .lab-feature-card--system { padding: 32px 26px 28px; }
}

#catalogo .lab-feature-card--system:hover {
  transform: translateY(-3px);
}

#catalogo .lab-system-list {
  margin-bottom: 32px;
}

/* Featured (Engine) — destaque firme via background/sombra, sem mexer em fonte */
#catalogo .lab-feature-card--featured {
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 30px 80px rgba(0, 0, 0, 0.45);
}
#catalogo .lab-feature-card--featured::before {
  left: 32px;
  right: 32px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}
#catalogo .lab-feature-card--featured:hover {
  border-color: rgba(255, 255, 255, 0.28);
}
#catalogo .lab-feature-card--featured .lab-feature-icon {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

#catalogo .lab-principle {
  margin-top: 72px;
}

/* Animação dos ícones dos sistemas (Engine triangle + Flow lines) */
.lab-feature-card--featured .lab-feature-icon svg polygon {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: triDraw 5s infinite ease-in-out;
}
@keyframes triDraw {
  0%, 4%   { stroke-dashoffset: 60; opacity: 0.35; }
  50%, 92% { stroke-dashoffset: 0; opacity: 1; }
  100%     { stroke-dashoffset: 60; opacity: 0.35; }
}

.lab-feature-card--system:not(.lab-feature-card--featured) .lab-feature-icon svg line {
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  animation: lineDraw 4s infinite ease-in-out;
}
.lab-feature-card--system:not(.lab-feature-card--featured) .lab-feature-icon svg line:nth-child(1) { animation-delay: 0s; }
.lab-feature-card--system:not(.lab-feature-card--featured) .lab-feature-icon svg line:nth-child(2) { animation-delay: 0.45s; }
.lab-feature-card--system:not(.lab-feature-card--featured) .lab-feature-icon svg line:nth-child(3) { animation-delay: 0.9s; }
@keyframes lineDraw {
  0%, 4%    { stroke-dashoffset: 24; opacity: 0.4; }
  35%, 75%  { stroke-dashoffset: 0; opacity: 1; }
  95%, 100% { stroke-dashoffset: 24; opacity: 0.4; }
}

@media (prefers-reduced-motion: reduce) {
  .lab-feature-card--featured .lab-feature-icon svg polygon,
  .lab-feature-card--system:not(.lab-feature-card--featured) .lab-feature-icon svg line {
    animation: none;
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

/* ========================================================================== */
/* SISTEMAS — Engine shape morpher + Flow funil de vendas (v7.4)              */
/* ========================================================================== */

/* === Engine: shape morpher centralizado === */
.lab-system-demo--engine {
  padding: 12px 0;
  justify-content: center;
}
.lab-demo-morph {
  position: relative;
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lab-morph-shape {
  position: absolute;
  width: 130px;
  height: 130px;
  color: #fff;
  opacity: 0;
  transform-origin: center;
  animation: morphIn 8s infinite ease-in-out;
}
.lab-morph-shape--1 { animation-delay: 0s; }
.lab-morph-shape--2 { animation-delay: 2s; }
.lab-morph-shape--3 { animation-delay: 4s; }
.lab-morph-shape--4 { animation-delay: 6s; }
@keyframes morphIn {
  0%, 4%   { opacity: 0; transform: scale(0.7) rotate(-10deg); }
  10%, 22% { opacity: 1; transform: scale(1) rotate(0deg); }
  30%, 100% { opacity: 0; transform: scale(0.85) rotate(10deg); }
}
.lab-morph-label {
  position: absolute;
  bottom: 6px;
  left: 50%;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-50%);
  animation: morphLabel 8s infinite ease-in-out;
}
.lab-morph-label--1 { animation-delay: 0s; }
.lab-morph-label--2 { animation-delay: 2s; }
.lab-morph-label--3 { animation-delay: 4s; }
.lab-morph-label--4 { animation-delay: 6s; }
@keyframes morphLabel {
  0%, 7%    { opacity: 0; }
  12%, 22%  { opacity: 1; }
  30%, 100% { opacity: 0; }
}

/* === Flow: funil de vendas === */
.lab-system-demo--funnel {
  padding: 12px 0;
  justify-content: center;
}
.lab-funnel {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
}
.lab-funnel-row {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  justify-content: center;
}
.lab-funnel-bar {
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}
.lab-funnel-row--1 .lab-funnel-bar { width: 220px; }
.lab-funnel-row--2 .lab-funnel-bar { width: 150px; }
.lab-funnel-row--3 .lab-funnel-bar {
  width: 90px;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
}
.lab-funnel-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  white-space: nowrap;
}
.lab-funnel-row--3 .lab-funnel-label { color: rgba(255, 255, 255, 0.92); }

.lab-funnel-drop {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  top: 0;
  opacity: 0;
  box-shadow: 0 0 6px rgba(255,255,255,0.4);
  animation: funnelDrop 4s infinite cubic-bezier(0.55, 0.05, 0.55, 0.95);
}
.lab-funnel-drop--1 { left: 32%; animation-delay: 0s; }
.lab-funnel-drop--2 { left: 48%; animation-delay: 1s; }
.lab-funnel-drop--3 { left: 56%; animation-delay: 2s; }
.lab-funnel-drop--4 { left: 42%; animation-delay: 3s; }
@keyframes funnelDrop {
  0%, 4%    { opacity: 0; transform: translateY(-6px) scale(0.7); }
  12%, 18%  { opacity: 1; transform: translateY(20px) scale(1); }
  50%, 60%  { opacity: 0.85; transform: translateY(80px) scale(0.85); }
  88%, 100% { opacity: 0; transform: translateY(150px) scale(0.5); }
}

/* === CTA wrap: centralizado + frase curta ao lado === */
.lab-system-cta-wrap {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 8px;
}
.lab-system-cta-note {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}

/* CTA do Engine: já é botão pílula branca; só remove align-self */
.lab-feature-card--system .lab-system-cta {
  align-self: auto;
}

@media (max-width: 760px) {
  .lab-funnel { max-width: 280px; }
  .lab-funnel-row--1 .lab-funnel-bar { width: 180px; }
  .lab-funnel-row--2 .lab-funnel-bar { width: 130px; }
  .lab-funnel-row--3 .lab-funnel-bar { width: 80px; }
  .lab-demo-morph { height: 180px; }
  .lab-morph-shape { width: 110px; height: 110px; }
}

@media (prefers-reduced-motion: reduce) {
  .lab-morph-shape,
  .lab-morph-label,
  .lab-funnel-drop {
    animation: none;
  }
  .lab-morph-shape--4 { opacity: 1; }
  .lab-morph-label--4 { opacity: 1; }
}

/* ========================================================================== */
/* SISTEMAS — Bloco tipográfico (v7.5)                                        */
/* Sem ilustração elaborada. Peso vem da escala da tipografia.                */
/* ========================================================================== */

.lab-system-demo--type {
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
}

/* Animação icônica única por serviço */
.lab-anim {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 4px;
}
.lab-anim svg {
  color: #fff;
  display: block;
}
.lab-anim--engine svg { width: 96px; height: 96px; }
.lab-anim--flow svg { width: 120px; height: 96px; }

/* === Engine: marca se construindo (cruz + círculo + ponto central) === */
.le-circle {
  stroke-dasharray: 230;
  stroke-dashoffset: 230;
  animation: drawCircle 6s infinite ease-in-out;
  animation-delay: 0.2s;
}
@keyframes drawCircle {
  0%, 6%    { stroke-dashoffset: 230; opacity: 0.8; }
  35%, 78%  { stroke-dashoffset: 0; opacity: 1; }
  92%, 100% { stroke-dashoffset: 230; opacity: 0.8; }
}
.le-line-h, .le-line-v {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: drawLine 6s infinite ease-in-out;
}
.le-line-h { animation-delay: 1.0s; }
.le-line-v { animation-delay: 1.4s; }
@keyframes drawLine {
  0%, 6%    { stroke-dashoffset: 80; }
  32%, 78%  { stroke-dashoffset: 0; }
  92%, 100% { stroke-dashoffset: 80; }
}
.le-dot {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: leDotPop 6s infinite ease-out;
  animation-delay: 1.9s;
}
@keyframes leDotPop {
  0%, 25%   { opacity: 0; transform: scale(0); }
  35%, 78%  { opacity: 1; transform: scale(1); }
  92%, 100% { opacity: 0; transform: scale(0); }
}

/* === Flow: envelope + seta voando === */
.lf-body {
  stroke-dasharray: 210;
  stroke-dashoffset: 210;
  animation: drawBody 5s infinite ease-out;
}
@keyframes drawBody {
  0%, 5%    { stroke-dashoffset: 210; }
  22%, 80%  { stroke-dashoffset: 0; }
  92%, 100% { stroke-dashoffset: 210; }
}
.lf-flap {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: drawFlap 5s infinite ease-out;
  animation-delay: 0.4s;
}
@keyframes drawFlap {
  0%, 5%    { stroke-dashoffset: 100; }
  28%, 80%  { stroke-dashoffset: 0; }
  92%, 100% { stroke-dashoffset: 100; }
}
.lf-arrow {
  opacity: 0;
  animation: arrowFly 5s infinite cubic-bezier(0.55, 0.05, 0.55, 0.95);
  animation-delay: 1.3s;
  transform-origin: 44px 56px;
}
@keyframes arrowFly {
  0%, 18%   { opacity: 0; transform: translate(-12px, 12px) scale(0.8); }
  30%, 50%  { opacity: 1; transform: translate(0, 0) scale(1); }
  70%       { opacity: 1; transform: translate(14px, -14px) scale(1.04); }
  85%, 100% { opacity: 0; transform: translate(28px, -28px) scale(0.9); }
}

@media (prefers-reduced-motion: reduce) {
  .le-circle, .le-line-h, .le-line-v, .le-dot,
  .lf-body, .lf-flap, .lf-arrow {
    animation: none;
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

.lab-type-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.lab-type-line {
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 600;
  color: #fff;
}
.lab-type-line--alt {
  color: rgba(255, 255, 255, 0.5);
}

.lab-type-cursor {
  display: inline-block;
  width: 2px;
  height: 0.78em;
  background: #fff;
  margin-left: 4px;
  vertical-align: -0.06em;
  animation: cursorBlink 1.05s infinite step-end;
}
@keyframes cursorBlink {
  0%, 50%   { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.lab-type-arrow {
  display: inline-block;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-left: 6px;
  animation: arrowPulse 2.4s infinite ease-in-out;
}
@keyframes arrowPulse {
  0%, 100% { transform: translate(0, 0); opacity: 0.85; }
  50%      { transform: translate(3px, -3px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .lab-type-cursor,
  .lab-type-arrow { animation: none; }
}
