/* Topbar e navegaÃ§Ã£o */
.topbar {
  min-height: 36px;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.72rem;
}

.topbar__inner,
.topbar__contacts,
.topbar__contacts a,
.topbar__coverage {
  display: flex;
  align-items: center;
}

.topbar__inner {
  min-height: 36px;
  justify-content: space-between;
}

.topbar__contacts {
  gap: 26px;
}

.topbar__contacts a,
.topbar__coverage {
  gap: 7px;
}

.topbar .icon {
  width: 14px;
  height: 14px;
  color: var(--cyan-400);
}

.topbar .fa-whatsapp {
  font-size: 14px;
  line-height: 1;
  color: var(--cyan-400);
}

.topbar a:hover {
  color: #fff;
}

.site-header {
  position: relative;
  z-index: 50;
  background: #fff;
  box-shadow: 0 1px 0 rgba(5, 46, 85, 0.07);
}

.site-header__inner {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 36px;
}

.brand {
  width: 206px;
  flex: 0 0 206px;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.2vw, 40px);
}

.main-nav__top,
.main-nav__actions,
.main-nav__contacts {
  display: none;
}

.main-nav__links {
  display: contents;
}

.main-nav a,
.client-link {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 650;
  white-space: nowrap;
}

.main-nav__links > a {
  position: relative;
  padding-block: 12px;
}

.main-nav__links > a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--cyan-500);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav__links > a:hover::after,
.main-nav__links > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.main-nav__links > a[aria-current="page"] {
  color: var(--cyan-500);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.client-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.client-link .icon {
  width: 22px;
  height: 22px;
  color: var(--blue-600);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 6px;
  background: var(--surface-soft);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--navy-900);
  transition: transform 180ms ease, opacity 180ms ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--navy-900);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: 3;
  inset: 0;
  background:
    linear-gradient(90deg, #052f59 0%, rgba(5, 47, 89, 0.97) 24%, rgba(5, 47, 89, 0.55) 38%, rgba(5, 47, 89, 0.12) 52%, rgba(5, 47, 89, 0) 64%);
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: 110px;
  background: linear-gradient(180deg, transparent, rgba(2, 32, 65, 0.28));
  content: "";
  pointer-events: none;
}

.hero__rings {
  position: absolute;
  z-index: 2;
  top: 46%;
  left: 42%;
  width: min(720px, 58vw);
  aspect-ratio: 1;
  background-image: url("../img/logo-mark-white.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.22;
  pointer-events: none;
  mix-blend-mode: soft-light;
  transform: translate(-42%, -52%);
}

.hero__visual {
  position: absolute;
  z-index: 0;
  inset: 0 0 0 26%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  transition: opacity 180ms ease;
}

.hero__visual img.is-changing {
  opacity: 0.35;
}

.hero__inner {
  position: relative;
  z-index: 4;
  min-height: 680px;
  padding-bottom: 96px;
}

.hero__content {
  width: min(660px, 52%);
  padding-top: 96px;
  color: #fff;
}

.hero h1 {
  color: #fff;
  font-size: clamp(3.6rem, 5.3vw, 5.25rem);
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.hero h1 span {
  color: var(--cyan-500);
}

.hero__content > p {
  max-width: 600px;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.11rem;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.hero__actions .button {
  min-height: 56px;
  padding: 0.95rem 1.9rem;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 32px rgba(19, 175, 214, 0.32);
}

.hero__actions .button:hover {
  box-shadow: 0 18px 36px rgba(19, 175, 214, 0.4);
  transform: translateY(-2px);
}

.hero__actions .button--outline-light {
  border-width: 2px;
  border-color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 28px rgba(3, 41, 79, 0.28);
  backdrop-filter: blur(6px);
}

.hero__actions .button--outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 32px rgba(3, 41, 79, 0.36);
}

.hero__dots {
  position: absolute;
  z-index: 5;
  right: 50%;
  bottom: 88px;
  display: flex;
  gap: 13px;
  transform: translateX(50%);
}

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

.hero__dots button span {
  width: 11px;
  height: 11px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
}

.hero__dots button.is-active span {
  background: #fff;
}

.experience {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 37px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.83rem;
  line-height: 1.25;
}

.experience .icon {
  width: 43px;
  height: 43px;
  color: #fff;
  stroke-width: 1.4;
}

.experience span {
  display: flex;
  flex-direction: column;
}

.experience strong {
  color: #fff;
  font-size: 1.05rem;
}

/* Navegação de proteção */
.protect-nav-wrap {
  position: relative;
  z-index: 10;
  height: 118px;
}

.protect-nav {
  position: relative;
  min-height: 172px;
  margin-top: -64px;
  padding: 24px 40px 22px;
  border: 1px solid rgba(3, 41, 79, 0.06);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  box-shadow: var(--shadow);
}

.protect-nav h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  text-align: center;
}

.protect-nav__items {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 4px;
}

.protect-nav__items a {
  position: relative;
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 8px 14px;
  border: 0;
  border-radius: var(--radius-md);
  color: var(--navy-850);
  flex-direction: column;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-align: center;
  transition:
    color 200ms ease,
    background-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.protect-nav__items a:not(:last-child)::after {
  position: absolute;
  top: 18%;
  right: -2px;
  width: 1px;
  height: 64%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--line) 18%,
    var(--line) 82%,
    transparent 100%
  );
  content: "";
  pointer-events: none;
}

.protect-nav__items a:hover,
.protect-nav__items a:focus-visible {
  z-index: 1;
  background: var(--surface-blue);
  color: var(--navy-950);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.protect-nav__items a:hover::after,
.protect-nav__items a:focus-visible::after {
  opacity: 0;
}

.protect-nav__items a:focus-visible {
  outline: 2px solid var(--cyan-500);
  outline-offset: 2px;
}

.protect-nav__items a:hover .icon-hero,
.protect-nav__items a:focus-visible .icon-hero {
  transform: translateY(-2px) scale(1.06);
}

.protect-nav__items .icon-hero {
  width: 48px;
  height: 48px;
  display: block;
  flex: 0 0 auto;
  transition: transform 200ms ease;
}

/* Soluções pessoais — grid unificado */
.products {
  padding-top: 136px;
  padding-bottom: 56px;
  background: #fff;
}

.products-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.05fr 1.05fr 1.05fr;
  grid-template-rows: repeat(2, minmax(268px, 286px));
  gap: 18px;
  align-items: stretch;
}

.products-heading {
  grid-column: 1;
  grid-row: 1;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  min-height: 0;
  padding: 22px 20px 20px;
  background: transparent;
}

.products-heading h2 {
  max-width: 12ch;
  color: var(--navy-950);
  font-size: clamp(1.35rem, 1.85vw, 1.72rem);
  font-weight: 780;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.products-heading__lead {
  max-width: 28ch;
  color: var(--body);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.45;
}

.product-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 0;
  border: 0;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card__link {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1.35fr 0.9fr;
  height: 100%;
  min-height: inherit;
  color: inherit;
  text-decoration: none;
}

.product-card::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(3, 41, 79, 0.45) 0%,
    rgba(3, 41, 79, 0.82) 55%,
    rgba(3, 41, 79, 0.94) 100%
  );
  opacity: 0;
  transform: translateY(100%);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), opacity 280ms ease;
}

.product-card--from-bottom::before {
  transform: translateY(100%);
}

.product-card--from-left::before {
  transform: translateX(-100%);
}

.product-card--from-right::before {
  transform: translateX(100%);
}

.product-card--from-top::before {
  transform: translateY(-100%);
}

.product-card--from-bl::before {
  transform: translate(-100%, 100%);
}

.product-card--from-br::before {
  transform: translate(100%, 100%);
}

.product-card:hover,
.product-card:focus-within {
  z-index: 2;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.product-card:hover::before,
.product-card:focus-within::before {
  opacity: 1;
  transform: none;
}

.product-card__media {
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.product-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 360ms ease;
}

.product-card:hover .product-card__media img,
.product-card:focus-within .product-card__media img {
  filter: brightness(0.72) saturate(1.05);
  transform: scale(1.08);
}

.product-card__body {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: start;
  align-items: start;
  gap: 6px 11px;
  padding: 16px 16px 14px;
  background: #fff;
  transition: background-color 280ms ease, color 280ms ease, box-shadow 280ms ease;
}

.product-card:hover .product-card__body,
.product-card:focus-within .product-card__body {
  background: transparent;
  box-shadow: none;
}

.product-card__body .round-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  margin-top: 1px;
}

.product-card__body .round-icon .icon {
  width: 15px;
}

.product-card__copy {
  min-width: 0;
}

.product-card h3 {
  color: var(--navy-950);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  transition: color 280ms ease;
}

.product-card p {
  margin-top: 5px;
  color: var(--body);
  font-size: 0.72rem;
  line-height: 1.4;
  transition: color 280ms ease;
}

.product-card__action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-height: 0;
  margin-top: 0;
  padding: 0 14px;
  overflow: hidden;
  border: 0 solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 280ms ease 40ms,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1) 40ms,
    max-height 280ms ease,
    margin-top 280ms ease,
    padding 280ms ease,
    border-width 280ms ease;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.product-card__action::after {
  content: "→";
  font-size: 0.85em;
  transition: transform 180ms ease;
}

.product-card:hover .product-card__action,
.product-card:focus-within .product-card__action {
  max-height: 36px;
  margin-top: 10px;
  padding: 7px 14px;
  border-width: 1px;
  opacity: 1;
  transform: translateY(0);
}

.product-card:hover .product-card__action::after,
.product-card:focus-within .product-card__action::after {
  transform: translateX(2px);
}

.product-card:hover h3,
.product-card:focus-within h3 {
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
}

.product-card:hover p,
.product-card:focus-within p {
  color: rgba(255, 255, 255, 0.9);
}

/* Posições no grid */
.product-card--health {
  grid-column: 2;
  grid-row: 1;
}

.product-card--life {
  grid-column: 3;
  grid-row: 1;
}

.product-card--auto {
  grid-column: 4;
  grid-row: 1;
}

.product-card--auto .product-card__body {
  background: #1a2430;
}

.product-card--dark h3,
.product-card--dark p {
  color: #fff;
}

.product-card--dark p {
  color: rgba(255, 255, 255, 0.82);
}

.product-card--home {
  grid-column: 1 / span 2;
  grid-row: 2;
}

.product-card--home .product-card__link {
  grid-template-rows: 1fr;
}

.product-card--home .product-card__media {
  grid-row: 1;
  grid-column: 1;
  min-height: 100%;
}

.product-card--home .product-card__body {
  grid-row: 1;
  grid-column: 1;
  align-self: end;
  justify-self: start;
  width: min(56%, 300px);
  margin: 0 0 16px 16px;
  padding: 15px 15px 13px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 22px rgba(3, 40, 79, 0.12);
}

.product-card--home:hover .product-card__body,
.product-card--home:focus-within .product-card__body {
  background: transparent;
  box-shadow: none;
}

.product-card--travel {
  grid-column: 3;
  grid-row: 2;
}

.product-card--professional {
  grid-column: 4;
  grid-row: 2;
}

.product-card--professional .product-card__media img {
  object-position: center 28%;
}

.benefits-grid {
  display: grid;
  margin-top: 36px;
  grid-template-columns: repeat(4, 1fr);
}

.benefit {
  display: flex;
  min-height: 96px;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 24px;
  border-right: 1px solid var(--line);
}

.benefit:last-child {
  border-right: 0;
}

.benefit > .icon-hero {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: block;
}

.benefit h3 {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 760;
  line-height: 1.2;
}

.benefit p {
  margin-top: 7px;
  color: var(--body);
  font-size: 0.72rem;
  line-height: 1.42;
}
/* Empresa */
.business {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 100%, rgba(25, 131, 185, 0.28), transparent 36%),
    linear-gradient(100deg, #05335f 0%, #05335f 43%, #0c4a80 100%);
  color: #fff;
  isolation: isolate;
}

.business::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 47, 88, 1) 0%, rgba(4, 47, 88, 0.96) 31%, rgba(4, 47, 88, 0.42) 67%, rgba(4, 47, 88, 0.5) 100%);
  content: "";
}

.business__rings {
  position: absolute;
  z-index: 1;
  top: 44%;
  left: 28%;
  width: min(620px, 52vw);
  aspect-ratio: 1;
  background-image: url("../img/logo-mark-white.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.22;
  pointer-events: none;
  mix-blend-mode: soft-light;
  transform: translate(-42%, -52%);
}

.business__photo {
  position: absolute;
  z-index: 0;
  inset: 0 0 0 35%;
}

.business__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  filter: saturate(0.8);
}

.business__inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 620px;
  align-items: end;
  padding-block: 88px 56px;
  grid-template-columns: 360px 1fr;
  gap: 84px;
}

.business__intro {
  align-self: center;
  padding-block: 12px 24px;
}

.business__intro .eyebrow {
  margin-bottom: 14px;
}

.business__intro h2 {
  color: #fff;
  font-size: 2.8rem;
  line-height: 1.12;
}

.business__intro p {
  max-width: 335px;
  margin: 26px 0 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
  line-height: 1.55;
}

.business__cards {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, 1fr);
}

.business-card {
  min-height: 252px;
  padding: 32px 24px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.business-card.reveal {
  opacity: 0;
  transform: translateX(-36px);
  transition:
    opacity 650ms cubic-bezier(.2, .7, .2, 1),
    transform 650ms cubic-bezier(.2, .7, .2, 1),
    box-shadow 180ms ease;
}

.business__cards .business-card.reveal:nth-child(1) { transition-delay: 0ms; }
.business__cards .business-card.reveal:nth-child(2) { transition-delay: 110ms; }
.business__cards .business-card.reveal:nth-child(3) { transition-delay: 220ms; }
.business__cards .business-card.reveal:nth-child(4) { transition-delay: 330ms; }

.business-card.reveal.is-visible {
  opacity: 1;
  transform: none;
}

a.business-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(3, 40, 79, 0.22);
}

a.business-card.reveal.is-visible:hover {
  transition-delay: 0ms;
}

.business-card > .icon {
  width: 39px;
  height: 39px;
  margin-bottom: 26px;
  color: var(--blue-600);
  stroke-width: 1.35;
}

.business-card h3 {
  font-size: 1.05rem;
  line-height: 1.15;
}

.business-card p {
  margin-top: 16px;
  color: var(--body);
  font-size: 0.75rem;
  line-height: 1.5;
}

/* Serviços digitais */
.digital {
  padding-block: 80px 64px;
}

.digital__inner {
  display: grid;
  min-height: 340px;
  align-items: center;
  grid-template-columns: minmax(240px, 270px) 230px minmax(0, 1fr);
  gap: 48px;
}

.digital__heading .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
}

.digital__heading h2 {
  max-width: 11.5ch;
  font-size: clamp(2.1rem, 2.4vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.phone-visual {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 320px;
}

.phone-visual img {
  position: absolute;
  top: -45px;
  left: 12px;
  width: 215px;
  height: 330px;
  border-radius: 40px;
  object-fit: cover;
  object-position: center 50%;
  filter: drop-shadow(0 19px 18px rgba(3, 40, 79, 0.18));
  transform: rotate(-10deg);
}

.digital__features {
  display: grid;
  align-items: stretch;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.digital-feature {
  display: flex;
  min-height: 168px;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 8px 22px;
}

.digital-feature:not(:first-child) {
  border-left: 1px solid var(--line);
}

.digital-feature > .icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  color: var(--cyan-500);
  stroke-width: 1.4;
}

.digital-feature > .fa-whatsapp {
  flex: 0 0 auto;
  color: var(--cyan-500);
  font-size: 2rem;
  line-height: 1;
}

.digital-feature > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}

.digital-feature h3 {
  font-size: 1.02rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.digital-feature p {
  margin: 10px 0 18px;
  color: var(--body);
  font-size: 0.84rem;
  line-height: 1.55;
}

.digital-feature a {
  margin-top: auto;
  font-size: 0.8rem;
}

/* OrientaÃ§Ã£o */
.guidance {
  position: relative;
  overflow: hidden;
  background: linear-gradient(102deg, #effbfe 0%, #effbfe 44%, #d9edf5 100%);
}

.guidance__inner {
  position: relative;
  display: grid;
  min-height: 420px;
  align-items: center;
  padding-block: 55px;
  grid-template-columns: 320px 500px 1fr;
  gap: 35px;
}

.guidance__intro {
  position: relative;
  z-index: 2;
}

.guidance__intro h2 {
  font-size: 2.5rem;
}

.guidance__intro > p {
  margin: 18px 0 23px;
  font-size: 0.9rem;
}

.guidance__time {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  color: #38856a;
  font-size: 0.68rem;
}

.steps-card {
  position: relative;
  z-index: 3;
  padding: 27px 30px;
  border: 1px solid #d4e5eb;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 5px 18px rgba(3, 40, 79, 0.05);
}

.steps-card__label {
  display: block;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 750;
}

.steps-card ol {
  display: grid;
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
}

.steps-card li {
  position: relative;
  padding-right: 18px;
}

.steps-card .reveal {
  opacity: 0;
  transform: translateX(-28px);
  transition:
    opacity 650ms cubic-bezier(.2, .7, .2, 1),
    transform 650ms cubic-bezier(.2, .7, .2, 1);
}

.steps-card__label.reveal { transition-delay: 0ms; }
.steps-card li.reveal:nth-child(1) { transition-delay: 90ms; }
.steps-card li.reveal:nth-child(2) { transition-delay: 200ms; }
.steps-card li.reveal:nth-child(3) { transition-delay: 310ms; }

.steps-card .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.steps-card li:not(:last-child)::after {
  position: absolute;
  top: 17px;
  right: 12px;
  left: 43px;
  height: 1px;
  background: #bdd0da;
  content: "";
}

.steps-card li > span {
  display: grid;
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid #aac3cf;
  border-radius: 50%;
  background: #fff;
  color: var(--blue-600);
  font-weight: 750;
}

.steps-card li p {
  max-width: 125px;
  margin-top: 12px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.35;
}

.guidance__visual {
  position: absolute;
  z-index: 1;
  top: 34px;
  right: -65px;
  bottom: -44px;
  width: 500px;
  overflow: hidden;
  border-radius: 22px 0 0 0;
  box-shadow: -12px 20px 38px rgba(3, 40, 79, 0.2);
  transform: rotate(3deg);
}

.guidance__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Institucional */
.founder {
  position: relative;
  padding-block: 72px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 90% at 0% 50%, rgba(19, 177, 217, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 70% at 100% 20%, rgba(8, 126, 184, 0.06), transparent 50%),
    linear-gradient(180deg, var(--surface-soft) 0%, #fff 55%, var(--surface-soft) 100%);
}

.founder__inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 56px 64px;
}

.founder__photo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 440px;
  border-radius: var(--radius-lg);
  background: var(--navy-900);
  box-shadow: var(--shadow);
}

.founder__photo::before {
  content: "";
  position: absolute;
  inset: auto -18px -18px auto;
  z-index: -1;
  width: 58%;
  height: 58%;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--cyan-500), var(--blue-600));
  opacity: 0.35;
}

.founder__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.founder__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 700ms ease;
}

.founder__photo.is-visible img {
  transform: scale(1.02);
}

.founder__body {
  display: flex;
  flex-direction: column;
  gap: 36px;
  min-width: 0;
}

.founder__quote {
  max-width: 38rem;
}

.founder__quote .eyebrow {
  margin-bottom: 14px;
}

.founder__quote h2 {
  font-size: clamp(1.85rem, 2.6vw, 2.55rem);
}

.founder__quote > p {
  position: relative;
  margin-top: 22px;
  padding-left: 18px;
  border-left: 2px solid var(--cyan-500);
  color: var(--body);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 42ch;
}

.founder__sign {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  margin-top: 28px;
}

.signature {
  display: block;
  width: 132px;
  height: auto;
  margin: 0 0 2px -2px;
  transform: rotate(-2deg);
  opacity: 0.9;
}

.founder__identity {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 4px;
  min-width: 132px;
}

.founder__identity::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 24px;
  height: 1px;
  background: var(--navy-900);
  opacity: 0.28;
}

.founder__identity strong {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.founder__identity small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.founder__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 20px;
  margin: 0;
  padding: 28px 0 0;
  list-style: none;
  border-top: 1px solid rgba(8, 50, 91, 0.1);
}

.stat {
  display: flex;
  align-items: center;
  gap: 14px;
}

.founder__stats .stat:nth-child(2) {
  transition-delay: 80ms;
}

.founder__stats .stat:nth-child(3) {
  transition-delay: 160ms;
}

.stat > .icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  color: var(--blue-600);
  stroke-width: 1.35;
}

.stat p {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  color: var(--body);
  font-size: 0.74rem;
  line-height: 1.25;
}

.stat strong {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

/* Parceiras — marquee infinito de logos */
.partners {
  padding-block: 52px 44px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(237, 248, 252, 0.55) 0%, transparent 28%),
    var(--surface-soft);
}

.partners__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-bottom: 28px;
}

.partners__head {
  max-width: 36rem;
  text-align: center;
}

.partners__head h2 {
  color: var(--ink);
  font-size: clamp(1.25rem, 1.9vw, 1.55rem);
  line-height: 1.28;
  font-weight: 700;
}

.partners__marquee {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.partners__viewport {
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}

.partners__track {
  display: flex;
  width: max-content;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  gap: 14px;
  will-change: transform;
}

.partners__track--left {
  animation: partners-marquee 38s linear infinite;
}

.partners__track--right {
  animation: partners-marquee-reverse 44s linear infinite;
}

.partners__marquee:hover .partners__track,
.partners__marquee:focus-within .partners__track {
  animation-play-state: paused;
}

.partners__marquee.is-paused .partners__track {
  animation-play-state: paused;
}

.partners__track li {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 168px;
  min-height: 92px;
  padding: 18px 22px;
  border: 1px solid rgba(8, 50, 91, 0.08);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 6px 18px rgba(8, 50, 91, 0.04);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.partners__track li:hover,
.partners__track li:focus-within {
  border-color: rgba(8, 126, 184, 0.22);
  box-shadow: 0 12px 28px rgba(8, 50, 91, 0.1);
  transform: translateY(-2px);
}

.partners__logos-item--ink {
  background: #0b1f33;
  border-color: rgba(8, 50, 91, 0.35);
}

.partners__logos-item--ink:hover,
.partners__logos-item--ink:focus-within {
  border-color: rgba(40, 192, 229, 0.45);
  box-shadow: 0 12px 28px rgba(2, 25, 48, 0.28);
}

.partners__track img {
  width: auto;
  max-width: 132px;
  height: auto;
  max-height: 48px;
  margin: 0;
  padding: 0;
  border: 0;
  filter: grayscale(0.85) contrast(1.05);
  object-fit: contain;
  opacity: 0.82;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.partners__logos-item--ink img {
  max-height: 52px;
  filter: none;
  opacity: 0.94;
}

.partners__track li:hover img,
.partners__track li:focus-within img {
  filter: none;
  opacity: 1;
}

@keyframes partners-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes partners-marquee-reverse {
  from {
    transform: translate3d(-50%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .partners__marquee {
    gap: 10px;
  }

  .partners__viewport {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
    scrollbar-width: none;
  }

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

  .partners__track {
    animation: none;
    padding-inline: max(16px, calc((100vw - 1120px) / 2));
  }
}

.section-side {
  max-width: 17rem;
  padding: 4px 12px 0 0;
}

.section-side h2 {
  font-size: clamp(1.65rem, 2.1vw, 2.05rem);
  line-height: 1.12;
}

.section-side .text-link {
  margin-top: 22px;
}

/* Artigos / blog */
.contents {
  padding-block: 72px 80px;
  background: var(--surface);
}

.contents__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 40px;
}

.contents__head {
  max-width: 38rem;
  margin-inline: auto;
  text-align: center;
}

.contents__head h2 {
  color: var(--ink);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.18;
  font-weight: 740;
}

.contents__head p {
  max-width: 34rem;
  margin: 14px auto 0;
  color: var(--body);
  font-size: 0.95rem;
  line-height: 1.55;
}

.contents__head .text-link {
  margin-top: 18px;
  justify-content: center;
}

.articles {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(8, 50, 91, 0.05);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.article-card:hover {
  border-color: rgba(8, 126, 184, 0.28);
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

.article-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--surface-soft);
}

.article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.article-card:hover .article-card__media img {
  transform: scale(1.04);
}

.article-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 22px 24px;
}

.article-card__tag {
  color: var(--cyan-500);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.article-card__reading {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 650;
  white-space: nowrap;
}

.article-card__reading .icon {
  width: 0.8rem;
  height: 0.8rem;
  color: var(--cyan-500);
}

.article-card h3 {
  margin: 10px 0 0;
  font-size: 1.05rem;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.article-card h3 a {
  color: var(--ink);
  font-size: inherit;
  font-weight: inherit;
}

.article-card h3 a:hover {
  color: var(--blue-600);
}

.article-card__body > p {
  flex: 1;
  margin: 12px 0 0;
  color: var(--body);
  font-size: 0.82rem;
  line-height: 1.5;
}

.article-card__more {
  margin-top: 18px;
  font-size: 0.78rem;
}

/* FAQ */
.faq {
  padding-block: 80px 88px;
  background: var(--surface-soft);
  border-top: 0;
}

.faq__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.faq__head {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}

.faq__head h2 {
  color: var(--ink);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.18;
  font-weight: 740;
}

.faq__head p {
  max-width: 34rem;
  margin: 14px auto 0;
  color: var(--body);
  font-size: 0.95rem;
  line-height: 1.55;
}

.faq__grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.75fr);
  gap: 28px;
}

.accordion {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(8, 50, 91, 0.06);
}

.accordion__item + .accordion__item {
  border-top: 1px solid var(--line);
}

.accordion__item.is-open {
  background: linear-gradient(180deg, rgba(237, 248, 252, 0.7) 0%, #fff 100%);
}

.accordion h3 {
  font-size: 1rem;
  letter-spacing: -0.015em;
}

.accordion button {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 720;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease;
}

.accordion button:hover {
  background: rgba(245, 249, 252, 0.9);
}

.accordion__item.is-open button {
  color: var(--navy-900);
}

.accordion__icon {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(8, 126, 184, 0.28);
  border-radius: 50%;
  background: #fff;
  color: var(--blue-600);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.accordion__item.is-open .accordion__icon {
  border-color: var(--cyan-500);
  background: var(--cyan-500);
  color: #fff;
}

.accordion__panel {
  overflow: hidden;
  padding: 0 24px 22px;
  opacity: 0;
  transition: max-height 240ms ease, opacity 180ms ease;
}

.accordion__panel p {
  max-width: 46rem;
  color: var(--body);
  font-size: 0.92rem;
  line-height: 1.6;
}

.faq__aside {
  min-width: 0;
}

.faq__support {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(8, 50, 91, 0.06);
}

.faq__support-media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--navy-900);
}

.faq__support-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.faq__support-body {
  padding: 22px 22px 24px;
}

.faq__support-body .eyebrow {
  margin-bottom: 8px;
}

.faq__support-body h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.25;
}

.faq__support-body p {
  margin: 10px 0 18px;
  color: var(--body);
  font-size: 0.86rem;
  line-height: 1.5;
}

.faq__support-body .button {
  width: 100%;
}

/* CTA final */
.final-cta {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background-color: var(--navy-900);
  background-image: url("../img/slideshow/slide07.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
}

.final-cta::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 51, 95, 0.22) 0%, rgba(4, 51, 95, 0.08) 48%, transparent 72%);
  content: "";
  pointer-events: none;
}

.final-cta__rings {
  position: absolute;
  z-index: 2;
  top: 58%;
  left: 18%;
  width: min(420px, 38vw);
  aspect-ratio: 1;
  background-image: url("../img/logo-mark-white.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.22;
  pointer-events: none;
  mix-blend-mode: soft-light;
  transform: translate(-42%, -52%);
}

.final-cta__inner {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 520px;
  align-items: center;
}

.final-cta__copy {
  max-width: 550px;
  margin-left: 210px;
}

.final-cta__copy h2 {
  color: #fff;
  font-size: 2.55rem;
}

.final-cta__copy p {
  max-width: 470px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

.final-cta__copy .button {
  margin-top: 28px;
}

@media (prefers-reduced-motion: reduce) {
  .final-cta {
    background-attachment: scroll;
  }
}

/* Rodapé */
.site-footer {
  padding-top: 68px;
  background:
    radial-gradient(circle at 10% 0%, rgba(15, 104, 159, 0.18), transparent 40%),
    var(--navy-950);
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  padding-bottom: 52px;
  grid-template-columns: 1.4fr 0.85fr 1fr 1fr 1.35fr 0.95fr;
  gap: 34px;
}

.footer-brand > a img {
  width: 155px;
  height: auto;
}

.footer-brand p {
  max-width: 235px;
  margin-top: 23px;
  font-size: 0.74rem;
  line-height: 1.55;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 23px;
}

.socials a {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.78);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.socials a:hover {
  border-color: rgba(40, 192, 229, 0.55);
  background: rgba(40, 192, 229, 0.12);
  color: #fff;
  transform: translateY(-1px);
}

.socials .icon {
  width: 15px;
  height: 15px;
}

.footer-grid h2 {
  margin-bottom: 18px;
  color: var(--cyan-400);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-nav,
.footer-contact {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.footer-nav a,
.footer-contact a,
.footer-contact > span {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.68rem;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-contact a,
.footer-contact > span {
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-contact .icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  color: var(--cyan-400);
}

.footer-contact .fa-whatsapp,
.footer-nav .fa-whatsapp {
  font-size: 14px;
  line-height: 1;
  color: var(--cyan-400);
}

.footer-presence {
  display: flex;
  max-width: 220px;
  align-items: flex-start;
  flex-direction: column;
}

.footer-presence__city {
  margin: 0 0 6px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

.footer-presence__place {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1.4;
}

.footer-presence__address {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.66rem;
  font-style: normal;
  line-height: 1.55;
}

.footer-bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.65rem;
}

.footer-bottom > div {
  display: flex;
  gap: 13px;
}

/* Refinamento final / componentes compostos */
.products-carousel {
  display: contents;
}

.mobile-carousel-meta {
  display: none;
}

.track-nudge {
  display: none;
}

.menu-backdrop { display: none; }

body.menu-open {
  overflow: hidden;
}
.hero__content > * { opacity: 0; transform: translateY(12px); }
.hero__content.is-ready > * { animation: hero-enter 620ms cubic-bezier(.2,.7,.2,1) forwards; }
.hero__content.is-ready > p { animation-delay: 90ms; }
.hero__content.is-ready .hero__actions { animation-delay: 170ms; }
.hero__content.is-ready .experience { animation-delay: 270ms; }
@keyframes hero-enter { to { opacity: 1; transform: none; } }

.horizontal-track { scrollbar-width: none; }
.horizontal-track::-webkit-scrollbar { display: none; }

.phone-mockup {
  position: absolute;
  top: -52px;
  left: 14px;
  width: 210px;
  height: 372px;
  padding: 8px;
  border: 1px solid rgba(4, 31, 57, 0.45);
  border-radius: 34px;
  background: linear-gradient(145deg, #2a4058 0%, #061a2e 48%, #0d3959 100%);
  box-shadow:
    16px 28px 36px rgba(3, 40, 79, 0.22),
    inset 1px 1px 2px rgba(255, 255, 255, 0.35);
  transform: rotate(-8deg) perspective(900px) rotateY(3deg);
}

.phone-mockup::after {
  position: absolute;
  top: 78px;
  right: -3px;
  width: 3px;
  height: 56px;
  border-radius: 2px;
  background: #0b2237;
  content: "";
}

.phone-mockup__bezel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 2px solid #0a2035;
  border-radius: 26px;
  background: linear-gradient(180deg, #f7fcff 0%, #eef7fb 100%);
}

.phone-mockup__speaker {
  position: absolute;
  z-index: 2;
  top: 9px;
  left: 50%;
  width: 58px;
  height: 14px;
  border-radius: 999px;
  background: #071b2c;
  transform: translateX(-50%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone-screen {
  display: flex;
  height: 100%;
  padding: 34px 13px 12px;
  color: var(--ink);
  flex-direction: column;
  gap: 11px;
  font-size: 9px;
}

.phone-screen__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--cyan-500);
  font-size: 9px;
  font-weight: 800;
}

.phone-screen__top .icon { width: 17px; height: 17px; }
.phone-screen > strong { font-size: 15px; line-height: 1.15; letter-spacing: -0.02em; }
.phone-screen__grid { display: grid; gap: 8px; grid-template-columns: repeat(2, 1fr); }
.phone-screen__grid span {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid #d6e9f2;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(3, 40, 79, 0.04);
  color: var(--ink);
  flex-direction: column;
  font-size: 9px;
  font-weight: 700;
}
.phone-screen__grid .icon { width: 20px; height: 20px; color: var(--cyan-500); }
.phone-screen__support {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 11px;
  background: #dff7fd;
  color: var(--ink);
  font-size: 8px;
}
.phone-screen__support .icon { width: 18px; height: 18px; color: #19a8ac; }
.phone-screen__support span { display: flex; flex-direction: column; }
.phone-screen__support b { font-size: 9px; }
.phone-screen__nav { display: flex; justify-content: space-around; margin-top: auto; padding-top: 10px; border-top: 1px solid #dbe8ef; }
.phone-screen__nav i { width: 14px; height: 3px; border-radius: 3px; background: #b5cfdd; }
.phone-screen__nav i:first-child { background: var(--cyan-500); }

.laptop-mockup {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1200px;
}

.laptop-mockup__screen {
  position: absolute;
  top: 2%;
  left: 4%;
  width: 92%;
  height: 75%;
  overflow: hidden;
  padding: 10px;
  border: 10px solid #112a40;
  border-bottom-width: 15px;
  border-radius: 14px 14px 6px 6px;
  background: #f6fbfe;
  box-shadow:
    0 18px 28px rgba(0, 36, 70, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  transform: rotateX(-3deg) rotateY(-2deg);
  transform-origin: center bottom;
}

.laptop-mockup__screen::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(118deg, rgba(255, 255, 255, 0.2) 0 20%, transparent 42%);
  content: "";
  pointer-events: none;
}

.laptop-mockup__screen::after {
  position: absolute;
  top: -8px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8295a5;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.18);
  content: "";
  transform: translateX(-50%);
}

.laptop-mockup__base {
  position: absolute;
  right: -3%;
  bottom: 1%;
  left: -3%;
  height: 20%;
  border: 1px solid rgba(43, 74, 95, 0.45);
  border-radius: 3px 3px 18px 18px;
  background: linear-gradient(180deg, #dce6ec 0%, #9fb2bf 46%, #6a8191 100%);
  box-shadow: 0 19px 24px rgba(0, 36, 70, 0.24);
  clip-path: polygon(4% 0, 96% 0, 100% 76%, 77% 100%, 23% 100%, 0 76%);
  transform: rotateX(58deg);
  transform-origin: center top;
}

.laptop-mockup__base::before {
  position: absolute;
  top: 14%;
  left: 41%;
  width: 18%;
  height: 45%;
  border: 1px solid rgba(53, 80, 98, 0.28);
  border-radius: 0 0 7px 7px;
  background: rgba(227, 236, 241, 0.48);
  content: "";
}

.laptop-mockup__base::after {
  position: absolute;
  right: 23%;
  bottom: 3%;
  left: 23%;
  height: 3px;
  border-radius: 0 0 5px 5px;
  background: rgba(32, 57, 75, 0.45);
  content: "";
}

.quiz-ui {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  padding: 12px 14px 10px;
  background:
    radial-gradient(circle at 88% 15%, rgba(19, 177, 217, 0.11), transparent 28%),
    #f7fbfd;
  color: var(--ink);
  flex-direction: column;
  gap: 6px;
  font-size: 8.5px;
}

.quiz-ui__brand {
  color: var(--blue-600);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.quiz-ui__brand span {
  display: inline-block;
  width: 16px;
  height: 9px;
  margin-right: 4px;
  border: 2px solid var(--cyan-500);
  border-radius: 50%;
  vertical-align: -1px;
}

.quiz-ui small {
  color: var(--body);
  font-size: 8px;
}

.quiz-ui strong {
  font-size: 14px;
  line-height: 1.15;
}

.quiz-ui__options {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(2, 1fr);
}

.quiz-ui__options span {
  display: flex;
  min-height: 28px;
  align-items: center;
  padding: 6px;
  border: 1px solid #cbdde6;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(7, 50, 95, 0.04);
}

.quiz-ui__options i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 4px;
  flex: 0 0 7px;
  border: 1px solid var(--cyan-500);
  border-radius: 50%;
}

.quiz-ui > b {
  align-self: flex-start;
  min-width: 64px;
  margin-top: auto;
  padding: 6px 12px;
  border-radius: 4px;
  background: var(--cyan-500);
  color: #fff;
  font-size: 8px;
  text-align: center;
}

@media (min-width: 1101px) {
  .hero, .hero__inner { min-height: 620px; }
  .hero__inner { padding-bottom: 88px; }
  .hero__content { width: min(590px, 49%); padding-top: 84px; }
  .hero h1 { max-width: 610px; font-size: clamp(3.2rem, 4.35vw, 4rem); line-height: 1.02; }
  .hero__content > p { max-width: 520px; margin-top: 26px; font-size: 1rem; }
  .hero__actions { margin-top: 36px; }
  .hero__dots { bottom: 72px; }
  .hero__rings { width: min(640px, 52vw); left: 44%; }
  .experience { margin-top: 27px; }
  .products { padding-block: 108px 32px; }
  .products-grid { grid-template-rows: repeat(2, minmax(268px, 288px)); gap: 18px; }
  .benefits-grid { margin-top: 34px; }
  .benefit { min-height: 90px; padding-block: 10px; }
  .business { min-height: 500px; }
  .business__rings { width: min(520px, 46vw); left: 26%; }
  .business__inner { min-height: 500px; padding-block: 64px 44px; gap: 56px; }
  .business__intro p { margin: 22px 0 30px; }
  .business__cards { gap: 18px; }
  .business-card { min-height: 210px; padding: 26px 20px; }
  .digital { padding-block: 101px 100px; }
  .digital__inner { min-height: 340px; }
  .guidance__inner { min-height: 460px; padding-block: 63px; }
  .founder { padding-block: 64px; }
  .founder__inner { align-items: center; }
  .partners { padding-block: 56px 48px; }
  .partners__track li { min-height: 96px; width: 176px; }
  .partners__track img { max-height: 50px; }
  .contents { padding-block: 80px 88px; }
  .faq { padding-block: 84px 92px; }
}

@media (max-width: 1100px) {
  .products-carousel { display: grid; }
  .mobile-carousel-meta { display: flex; align-items: center; justify-content: flex-end; gap: 8px; margin-top: 12px; color: var(--muted); font-size: .68rem; }
  .mobile-carousel-meta span { margin-right: auto; }
  .mobile-carousel-meta button { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--blue-600); }
  .mobile-carousel-meta button:last-child .icon { transform: rotate(180deg); }
  .track-nudge { display: grid; position: absolute; right: 10px; bottom: 11px; width: 38px; height: 38px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--blue-600); }
  .track-nudge .icon { transform: rotate(180deg); }
  .menu-backdrop:not([hidden]) {
    display: block;
    position: fixed;
    z-index: 55;
    inset: 0;
    border: 0;
    background: rgba(2, 25, 48, 0.42);
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
    cursor: pointer;
  }
  .site-header { z-index: 50; }
}

@media (max-width: 768px) {
  .products-carousel { display: flex; margin-right: -18px; padding: 4px 18px 14px 0; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; gap: 12px; }
  .products-carousel::-webkit-scrollbar { display: none; }
  .products-grid { display: block; }
  .products-heading { padding: 16px 16px 14px; margin-bottom: 4px; }
  .products-grid .product-card {
    width: min(82vw, 340px);
    min-width: min(82vw, 340px);
    height: 255px;
    scroll-snap-align: start;
  }
  .products-grid .product-card__link {
    display: grid;
    height: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: 1.35fr 0.9fr;
  }
  .products-grid .product-card--home .product-card__link {
    grid-template-rows: 1.35fr 0.9fr;
  }
  .products-grid .product-card--home .product-card__media,
  .products-grid .product-card--home .product-card__body {
    grid-row: auto;
    grid-column: auto;
  }
  .products-grid .product-card--home .product-card__body {
    width: auto;
    margin: 0;
    padding: 14px 14px 12px;
    border-radius: 0;
    box-shadow: none;
    justify-self: stretch;
    align-self: stretch;
  }
  .protect-nav__items { padding-right: 44px; scroll-padding-inline: 4px; }
  .protect-nav__items a { scroll-snap-align: start; }
  .business { min-height: auto; }
  .digital__inner { min-height: 0; }
  .phone-mockup { top: -14px; left: 50%; width: 184px; height: 326px; transform: translateX(-50%) rotate(-8deg); }
  .phone-visual { min-height: 300px; }
  .guidance__visual { transform: none; }
  .partners { padding-block: 40px 32px; }
  .partners__inner { gap: 20px; margin-bottom: 20px; }
  .partners__marquee { gap: 10px; }
  .partners__track { gap: 10px; }
  .partners__track--left { animation-duration: 28s; }
  .partners__track--right { animation-duration: 34s; }
  .partners__track li { width: 140px; min-height: 78px; padding: 14px 12px; }
  .partners__track img { max-height: 40px; max-width: 112px; }
  .partners__viewport {
    mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  }
  .contents { padding-block: 52px 60px; }
  .contents__inner { gap: 28px; }
  .contents__head { text-align: left; max-width: none; margin-inline: 0; }
  .contents__head p { margin-inline: 0; }
  .contents__head .text-link { justify-content: flex-start; }
  .section-side { max-width: none; }
  .faq { padding-block: 56px 64px; }
  .faq__inner { gap: 28px; }
  .faq__head { text-align: left; max-width: none; margin-inline: 0; }
  .faq__head p { margin-inline: 0; }
  .accordion button { min-height: 64px; padding: 16px 18px; font-size: 0.95rem; }
  .accordion__panel { padding: 0 18px 18px; }
}

@media (max-width: 480px) {
  .products-grid .product-card { width: 84vw; min-width: 84vw; }
  .phone-mockup { width: 184px; height: 326px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__content > *, .hero__content.is-ready > * { opacity: 1; transform: none; animation: none; }
  .hero__visual img, .hero__content > * { transition: none; }
}
