/* ── FONTS ── */
@font-face {
  font-family: 'Kaleko';
  src: url('kaleko.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --blue: #3BB8F1;
  --coral: #FF8073;
  --dark: #0D0D12;
  --navy: #1384BD;
  --deep: #111827;
  --white: #FFFFFF;
  /* Hero light palette */
  --hero-bg: #F2FAF9;
  --hero-text: #0D2B1E;
  --fh: 'Kaleko', 'Plus Jakarta Sans', sans-serif;
  --fb: 'Plus Jakarta Sans', sans-serif;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--fb);
  background: var(--dark);
  color: #fff;
  overflow-x: hidden;
  cursor: none
}

/* ── CURSOR ── */
#cur-dot {
  width: 7px;
  height: 7px;
  background: var(--coral);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%)
}

#cur-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(59, 184, 241, .6);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, border-color .3s
}

.cta-hover #cur-ring {
  width: 52px;
  height: 52px;
  border-color: var(--coral)
}

/* ── HEADER — light hero ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0 5%;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(242, 250, 249, 0);
  transition: background .4s, backdrop-filter .4s, box-shadow .4s;
}

header.at-hero {
  background: rgba(242, 250, 249, .92);
  backdrop-filter: blur(18px)
}

header.scrolled {
  /* background: rgba(59, 184, 241, .9); */
  background: #1384BD;
  backdrop-filter: blur(20px)
}

.logo {
  height: 38px;
  max-height: 50px;
  display: block
}

/* nav links — adapt color to section */
nav a {
  font-size: .875rem;
  font-weight: 500;
  color: #444;
  text-decoration: none;
  margin-left: 30px;
  transition: color .2s
}

nav a:hover {
  color: var(--hero-text)
}

header.scrolled nav a {
  color: rgba(255, 255, 255, .9)
}

header.scrolled nav a:hover {
  color: #fff
}

.hdr-right {
  display: flex;
  align-items: center;
  gap: 14px
}

.btn-login {
  font-size: .875rem;
  font-weight: 500;
  color: #444;
  text-decoration: none;
  transition: color .2s
}

.btn-login:hover {
  color: var(--hero-text)
}

header.scrolled .btn-login {
  color: rgba(255, 255, 255, .9)
}

header.scrolled .btn-login:hover {
  color: #fff
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--hero-text);
  color: #fff;
  font-family: var(--fb);
  font-size: .875rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 100px;
  border: none;
  cursor: none;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .3s;
  white-space: nowrap
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(13, 43, 30, .3)
}

header.scrolled .btn-cta {
  background: var(--coral)
}

header.scrolled .btn-cta:hover {
  box-shadow: 0 8px 22px rgba(255, 128, 115, .5)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--hero-text);
  border-radius: 2px;
  display: block;
  transition: all .3s
}

header.scrolled .hamburger span {
  background: #fff
}

/* ── MOBILE MENU ── */
.mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 199;
  background: var(--dark);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.16, 1, .3, 1)
}

.mob-menu.open {
  transform: translateX(0);
  display: flex
}

.mob-menu a {
  font-family: var(--fh);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none
}

/* ════════════════════════════════════
   HERO  —  light mint #F2FAF9
   Layout: Finray style
════════════════════════════════════ */
.hero {
  background: var(--hero-bg);
  min-height: 100vh;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  gap: 32px;
}

/* Mesh gradient blobs */
.hero-blob1 {
  position: absolute;
  top: -120px;
  left: -100px;
  width: 580px;
  height: 580px;
  background: radial-gradient(ellipse, rgba(59, 184, 241, .18) 0%, transparent 65%);
  pointer-events: none;
  border-radius: 50%
}

.hero-blob2 {
  position: absolute;
  bottom: -80px;
  right: 10%;
  width: 460px;
  height: 460px;
  background: radial-gradient(ellipse, rgba(255, 128, 115, .14) 0%, transparent 65%);
  pointer-events: none;
  border-radius: 50%
}

/* subtle grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(59, 184, 241, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 184, 241, .06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none
}

/* LEFT — text */
.hero-text {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 560px;
  padding: 120px 0 80px
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 184, 241, .12);
  border: 1px solid rgba(59, 184, 241, .3);
  color: #555;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  opacity: 0;
  animation: up .7s .1s forwards
}

.hero-eyebrow span {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  display: inline-block
}

.hero h1 {
  font-family: var(--fh);
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.04em;
  color: var(--hero-text);
  margin-bottom: 24px;
  opacity: 0;
  animation: up .8s .2s forwards;
}

/* wavy underline word */
.hero-wavy {
  position: relative;
  display: inline-block;
  color: var(--hero-text)
}

.hero-wavy::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='10' viewBox='0 0 200 10'%3E%3Cpath d='M0 5 Q25 0 50 5 Q75 10 100 5 Q125 0 150 5 Q175 10 200 5' stroke='%233BB8F1' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") repeat-x center/auto 100%;
  opacity: 0;
  animation: waveIn .6s .9s forwards;
}

@keyframes waveIn {
  from {
    opacity: 0;
    transform: scaleX(0)
  }

  to {
    opacity: 1;
    transform: scaleX(1)
  }
}

.hero-sub {
  font-size: 1rem;
  font-weight: 400;
  color: #555;
  line-height: 1.75;
  margin-bottom: 38px;
  max-width: 440px;
  opacity: 0;
  animation: up .8s .35s forwards
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: up .8s .5s forwards
}

/* "Ver demo" button — outline dark */
.btn-demo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--hero-text);
  font-family: var(--fb);
  font-size: .95rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 100px;
  border: 1.5px solid rgba(13, 43, 30, .25);
  text-decoration: none;
  transition: border-color .2s, background .2s;
  cursor: none;
}

.btn-demo:hover {
  border-color: var(--hero-text);
  background: rgba(13, 43, 30, .04)
}

.btn-demo-icon {
  width: 32px;
  height: 32px;
  background: var(--hero-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.btn-demo-icon svg {
  width: 12px;
  height: 12px;
  fill: #fff;
  margin-left: 2px
}

/* "Teste Grátis" button — coral filled + arrow circle */
.btn-free {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--coral);
  color: #fff;
  font-family: var(--fb);
  font-size: .95rem;
  font-weight: 700;
  padding: 13px 14px 13px 26px;
  border-radius: 100px;
  border: none;
  cursor: none;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}

.btn-free:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 128, 115, .45)
}

.btn-free-circle {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, .25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s
}

.btn-free:hover .btn-free-circle {
  background: rgba(255, 255, 255, .4)
}

.btn-free-circle svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round
}

.hero-note {
  font-size: .74rem;
  color: #888;
  margin-top: 14px;
  opacity: 0;
  animation: up .8s .65s forwards
}

/* RIGHT — Lia + floating cards */
.hero-right {
  position: relative;
  z-index: 2;
  flex: 1;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-lia-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  animation: up 1s .45s forwards;
}

.hero-lia-bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(59, 184, 241, .2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-lia-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(59, 184, 241, .15));
}

/* Floating cards */
.fc {
  position: absolute;
  z-index: 3;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

/* AI analytics card — top left of right panel */
.fc-ai {
  top: 22%;
  left: -4%;
  animation: float1 4s ease-in-out infinite;
  opacity: 0;
  animation: fcIn .6s .9s forwards, float1 4s 1.5s ease-in-out infinite
}

/* stats card — bottom right */
.fc-stat {
  bottom: 22%;
  right: -2%;
  animation: float2 5s ease-in-out infinite;
  opacity: 0;
  animation: fcIn .6s 1.1s forwards, float2 5s 1.7s ease-in-out infinite
}

/* small deposit card */
.fc-dep {
  bottom: 38%;
  right: 0%;
  animation: float3 4.5s ease-in-out infinite;
  opacity: 0;
  animation: fcIn .6s 1.3s forwards, float3 4.5s 1.9s ease-in-out infinite
}

@keyframes fcIn {
  from {
    opacity: 0;
    transform: translateY(12px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(7px)
  }
}

@keyframes float3 {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-6px)
  }
}

.fc-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.fc-icon.bg-blue {
  background: rgba(59, 184, 241, .15)
}

.fc-icon.bg-coral {
  background: rgba(255, 128, 115, .15)
}

.fc-icon.bg-green {
  background: rgba(34, 197, 94, .12)
}

.fc-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.fc-icon.bg-blue svg {
  stroke: var(--blue)
}

.fc-icon.bg-coral svg {
  stroke: var(--coral)
}

.fc-icon.bg-green svg {
  stroke: #16a34a
}

.fc-title {
  font-size: .65rem;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .06em
}

.fc-val {
  font-family: var(--fh);
  font-size: 1.05rem;
  font-weight: 800;
  color: #0D2B1E;
  line-height: 1.2
}

.fc-sub {
  font-size: .65rem;
  color: #16a34a;
  font-weight: 600
}

.fc-sub.neg {
  color: var(--coral)
}

/* small AI card styling */
.fc-ai-inner {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.fc-ai-label {
  font-size: .62rem;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .06em
}

.fc-ai-text {
  font-size: .82rem;
  font-weight: 600;
  color: #0D2B1E;
  max-width: 140px;
  line-height: 1.35
}

/* mini chart bars inside fc */
.fc-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 28px
}

.fc-bar {
  width: 6px;
  border-radius: 2px 2px 0 0;
  background: var(--blue);
  opacity: .3
}

.fc-bar.hi {
  opacity: 1
}

.fc-bar.mid {
  opacity: .6
}

/* Wave: hero(light) → trust(blue) */
.w-light-blue {
  background: #3BB8F1;
  line-height: 0
}

.w-light-blue svg {
  display: block;
  width: 100%
}

/* ════════════════════════════════════
   FEATURES BENTO  —  White background
   Layout: Finray "Key Features" style
════════════════════════════════════ */
.features {
  background: #fff;
  padding: 88px 5% 0;
  position: relative;
  overflow: hidden
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto
}

.feat-header {
  text-align: center;
  margin-bottom: 52px
}

.feat-eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px
}

.feat-title {
  font-family: var(--fh);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.1;
  color: #0D2B1E;
  margin-bottom: 16px
}

.feat-sub {
  font-size: .95rem;
  color: #666;
  font-weight: 400;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto
}

/* BENTO GRID — 2 cols × 2 rows with spanning */
.bento {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

/* Card base */
.bento-card {
  background: #F7FFFE;
  border: 1px solid rgba(59, 184, 241, .15);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(59, 184, 241, .12)
}

/* Card 1: tall — spans 2 rows on left */
.bc-tall {
  grid-column: 1;
  grid-row: 1/3;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(145deg, #EDF8FF 0%, #F0FBF8 100%);
}

/* Card 2: Lia — wide, top right */
.bc-wide-lia {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 0;
  background: linear-gradient(135deg, #1384BD 0%, #1a6a9e 100%);
  color: #fff;
  overflow: hidden;
  padding: 32px 0 0 36px;
  min-height: 320px;
}

/* Card 3 & 4: small — bottom right stacked */
.bc-sm {
  grid-column: 2;
  min-height: 180px;
}

.bc-sm:nth-of-type(3) {
  grid-row: 2
}

/* Wait — cards 3 and 4 need to share row 2 col 2 */
/* Override: make right column bottom row a 2-col sub-grid */
.bento {
  grid-template-columns: 1fr 1.55fr;
  grid-template-rows: auto auto;
}

.bc-tall {
  grid-column: 1;
  grid-row: 1/3
}

.bc-wide-lia {
  grid-column: 2;
  grid-row: 1
}

/* Card 3 full-width wrapper */
.bento-bottom-right {
  grid-column: 2;
  grid-row: 2;
}

.bc-sm {
  min-height: 180px
}

/* Card full — ocupa toda largura do slot */
.bc-full {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, #EDF8FF 0%, #E8F8F0 100%);
}

.bc-sm-inner {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.bc-sm-inner>div:first-child {
  flex: 1;
  min-width: 180px
}

.bc-sm-stats {
  flex: 2;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.bc-sm-stats .bc-stat {
  flex: 1;
  min-width: 110px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.bc-sm-stats .bc-stat-val {
  font-size: 1.8rem
}

.bc-sm-stats .bc-stat-lbl {
  font-size: .72rem;
  line-height: 1.3
}

/* Live indicator */
.bc-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .7rem;
  font-weight: 600;
  color: #16a34a;
  letter-spacing: .04em;
}

.bc-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: livepulse 1.8s ease-in-out infinite;
}

@keyframes livepulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, .5)
  }

  50% {
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0)
  }
}

/* Tag pill */
.bc-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #5a9a8a;
  margin-bottom: 10px
}

.bc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  display: inline-block;
  flex-shrink: 0
}

.bc-dot-coral {
  background: var(--coral)
}

.bc-dot-green {
  background: #22c55e
}

.bc-wide-lia .bc-tag {
  color: rgba(255, 255, 255, .5)
}

/* Titles */
.bc-title {
  font-family: var(--fh);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.2;
  color: #0D2B1E;
  margin-bottom: 10px
}

.bc-wide-lia .bc-title {
  color: #fff
}

.bc-title-sm {
  font-family: var(--fh);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.25;
  color: #0D2B1E;
  margin-bottom: 8px
}

/* Desc */
.bc-desc {
  font-size: .875rem;
  color: #666;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 18px;
  max-width: 280px
}

.bc-wide-lia .bc-desc {
  color: rgba(255, 255, 255, .6)
}

.bc-desc-sm {
  font-size: .82rem;
  color: #666;
  line-height: 1.65;
  margin-bottom: 12px
}

/* Link */
.bc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .84rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  transition: gap .2s
}

.bc-link:hover {
  gap: 10px
}

.bc-wide-lia .bc-link {
  color: var(--coral)
}

/* QR visual */
.bc-visual {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: center
}

.bc-visual-qr {
  padding-top: 8px
}

/* Lia image inside wide card */
.bc-lia-text {
  flex: 1;
  padding-bottom: 32px
}

.bc-lia-img {
  flex-shrink: 0;
  width: 220px;
  display: flex;
  align-items: flex-end;
  self-align: flex-end
}

.bc-lia-img img {
  margin-bottom: -40px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 -8px 30px rgba(59, 184, 241, .3));
  transform: translateY(0px)
}

/* Stat inside small card */
.bc-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  background: rgba(59, 184, 241, .08);
  border-radius: 12px;
  padding: 10px 14px
}

.bc-stat-val {
  font-family: var(--fh);
  font-size: 1.5rem;
  font-weight: 800;
  color: #0D2B1E
}

.bc-stat-lbl {
  font-size: .7rem;
  color: #666;
  font-weight: 500;
  flex: 1
}

.bc-stat-delta {
  font-size: .72rem;
  font-weight: 700;
  color: #16a34a;
  background: rgba(34, 197, 94, .1);
  padding: 3px 8px;
  border-radius: 100px
}

/* Placeholder card */
.bc-placeholder {
  background: linear-gradient(135deg, #FFF5F3 0%, #FFF8F0 100%);
  border-color: rgba(255, 128, 115, .15)
}

.bc-coming {
  position: absolute;
  bottom: 16px;
  right: 16px;
  opacity: .4
}

/* Responsive */
@media(max-width:900px) {
  .bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto
  }

  .bc-tall {
    grid-column: 1;
    grid-row: auto
  }

  .bc-wide-lia {
    grid-column: 1;
    grid-row: auto;
    padding: 28px 28px 0;
    flex-direction: column;
    min-height: auto
  }

  .bc-lia-img {
    width: 160px;
    align-self: flex-end
  }

  .bento-bottom-right {
    grid-column: 1
  }

  .bc-sm-inner {
    flex-direction: column;
    gap: 16px
  }

  .bc-sm-stats {
    gap: 10px
  }
}

/* ── transição hero → features (sem wave SVG) ── */
.hero {
  position: relative
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent 0%, #fff 100%);
  pointer-events: none;
  z-index: 2;
}

/* ════════════════════════════
   TRUST  —  blue #3BB8F1
════════════════════════════ */
.trust {
  background: var(--blue);
  padding: 88px 5% 108px;
  position: relative;
  overflow: hidden
}

.trust::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: rgba(255, 255, 255, .08);
  border-radius: 50%;
  pointer-events: none
}

.sec-eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 14px
}

.sec-h {
  font-family: var(--fh);
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 60px
}

.trust-grid {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.t-card {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 20px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .3s, transform .3s
}

.t-card:hover {
  background: rgba(255, 255, 255, .2);
  transform: translateY(-5px)
}

.t-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, .18);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center
}

.t-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.t-card h3 {
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3
}

.t-card p {
  font-size: .875rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.72;
  font-weight: 300
}

/* ── WAVE trust→navy ── */
.w-blue-navy {
  background: var(--blue);
  line-height: 0
}

.w-blue-navy svg {
  display: block;
  width: 100%
}

/* ════════════════════════════
   MODULES  —  navy #1384BD
════════════════════════════ */
.modules {
  background: var(--navy);
  padding: 88px 5% 108px;
  position: relative;
  overflow: hidden
}

.modules-inner {
  max-width: 1060px;
  margin: 0 auto
}

.tabs {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, .06);
  border-radius: 100px;
  padding: 4px;
  width: fit-content;
  margin: 0 0 44px;
  flex-wrap: wrap
}

.tab {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .5);
  padding: 9px 20px;
  border-radius: 100px;
  border: none;
  background: none;
  cursor: none;
  transition: background .25s, color .25s;
  white-space: nowrap;
  font-family: var(--fb)
}

.tab.active {
  background: var(--blue);
  color: #fff
}

.tab:hover:not(.active) {
  background: rgba(255, 255, 255, .08);
  color: #fff
}

.tab-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center
}

.tab-panel.active {
  display: grid
}

.p-tag {
  display: inline-flex;
  background: rgba(59, 184, 241, .2);
  color: rgba(255, 255, 255, .8);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 18px
}

.p-title {
  font-family: var(--fh);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px
}

.p-desc {
  font-size: .9rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 26px
}

.p-visual {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px
}

/* ── WAVE navy→coral ── */
.w-navy-coral {
  background: #FF8073;
  line-height: 0
}

.w-navy-coral svg {
  display: block;
  width: 100%
}

/* ════════════════════════════════════
   HOW IT WORKS  —  Coral (Finray layout)
   Left: image + floating cards
   Right: vertical numbered steps
════════════════════════════════════ */
.how {
  background: #F0F9FF;
  padding: 96px 5% 108px;
  position: relative;
  overflow: hidden
}

.how .sec-eyebrow {
  color: var(--blue) !important
}

.how .sec-h {
  color: #0D2B1E
}

.how-sub {
  font-size: 1.25rem;
  color: #555;
  font-weight: 600;
  margin-bottom: 0;
  max-width: 520px;
  line-height: 1.6
}

.how-sub strong {
  font-weight: 800;
  color: #0D2B1E
}

.how-header {
  max-width: 1060px;
  margin: 0 auto 52px
}

.how-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 184, 241, .12);
  border: 1px solid rgba(59, 184, 241, .3);
  color: #555;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px
}

.how-badge span {
  width: 5px;
  height: 5px;
  background: var(--blue);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite
}

.how-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start
}

/* LEFT image */
.how-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: visible;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  justify-content: center
}

.how-img-bg {
  position: absolute;
  inset: 0;
  background: rgba(59, 184, 241, .08);
  border-radius: 24px;
  overflow: hidden
}

.how-img-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 90%, rgba(59, 184, 241, .12) 0%, transparent 65%)
}

.how-img-wrap img {
  width: 82%;
  max-width: 320px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 -6px 32px rgba(0, 0, 0, .12))
}

.how-float-card {
  position: absolute;
  bottom: 28px;
  left: -24px;
  z-index: 3;
  background: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
  max-width: 240px;
  animation: float1 4s ease-in-out infinite
}

.hfc-quote {
  font-size: .78rem;
  color: #444;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 10px
}

.hfc-author {
  display: flex;
  align-items: center;
  gap: 9px
}

.hfc-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: .65rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0
}

.hfc-name {
  font-size: .72rem;
  font-weight: 700;
  color: #0D2B1E
}

.hfc-role {
  font-size: .64rem;
  color: #888
}

.how-float-stat {
  position: absolute;
  top: 20px;
  right: -18px;
  z-index: 3;
  background: #fff;
  border-radius: 14px;
  padding: 11px 15px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .1);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float2 5s ease-in-out infinite
}

.hfs-icon {
  width: 30px;
  height: 30px;
  background: rgba(59, 184, 241, .12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center
}

.hfs-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round
}

.hfs-val {
  font-family: var(--fh);
  font-size: .95rem;
  font-weight: 800;
  color: #0D2B1E
}

.hfs-lbl {
  font-size: .62rem;
  color: #888;
  font-weight: 500
}

/* RIGHT vertical steps — adaptados para fundo claro */
.vsteps {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  padding-top: 6px
}

.vsteps::before {
  content: '';
  position: absolute;
  left: 26px;
  top: 54px;
  bottom: 80px;
  width: 2px;
  background: rgba(255, 128, 115, .2);
  z-index: 0;
  border-radius: 2px
}

.vstep {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 16px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: background .3s, transform .25s
}

.vstep:hover {
  background: rgba(255, 128, 115, .06);
  transform: translateX(5px)
}

.vstep.active {
  background: rgba(255, 128, 115, .08);
  transform: translateX(5px)
}

.vstep-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(255, 128, 115, .3);
  transition: transform .3s, box-shadow .3s;
  position: relative;
  z-index: 1
}

.vstep.active .vstep-num,
.vstep:hover .vstep-num {
  transform: scale(1.1);
  box-shadow: 0 10px 26px rgba(255, 128, 115, .4)
}

.vstep-body {
  padding-top: 5px;
  flex: 1
}

.vstep-title {
  font-family: var(--fh);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0D2B1E
}

.vstep-desc {
  font-size: .875rem;
  color: #555;
  line-height: 1.72;
  font-weight: 300;
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.16, 1, .3, 1), opacity .35s, margin .3s;
  opacity: 0;
  margin-top: 0
}

.vstep.active .vstep-desc {
  max-height: 120px;
  opacity: 1;
  margin-top: 7px
}

.vstep-bar {
  height: 2px;
  background: rgba(255, 128, 115, .15);
  border-radius: 2px;
  margin-top: 12px;
  overflow: hidden;
  display: none
}

.vstep.active .vstep-bar {
  display: block
}

.vstep-bar-fill {
  height: 100%;
  background: var(--coral);
  border-radius: 2px;
  width: 0%
}

/* Botão Saiba Mais */
.how-cta {
  margin-top: 24px;
  padding-left: 20px
}

.btn-saiba {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #3BB8F1;
  color: #fff;
  font-family: var(--fb);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  opacity: 0;
  animation: up .7s forwards
}

.btn-saiba.visible {
  opacity: 1
}

.btn-saiba:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(59, 184, 241, .45)
}

/* ── WAVE how→lia ── */
.w-coral-deep {
  background: #F0F9FF;
  line-height: 0
}

.w-coral-deep svg {
  display: block;
  width: 100%
}

/* ════════════════════════════
   LIA SECTION  —  deep dark
════════════════════════════ */
.lia-section {
  background: #E55E4B;
  padding: 88px 5% 108px;
  position: relative;
  overflow: hidden
}

.lia-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center
}

.lia-text {}

.lia-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px
}

.lia-badge span {
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(1.4)
  }
}

.lia-title {
  font-family: var(--fh);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px
}

.lia-title .lia-name {
  color: #fff;
  text-decoration: none
}

.lia-desc {
  font-size: .95rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.78;
  font-weight: 300;
  margin-bottom: 30px
}

.lia-feats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px
}

.lia-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .875rem;
  color: rgba(255, 255, 255, .9);
  font-weight: 400
}

.lia-feat-dot {
  width: 8px;
  height: 8px;
  background: #FF8073;
  border-radius: 50%;
  flex-shrink: 0
}

.lia-img {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center
}

.lia-img img {
  width: 100%;
  max-width: 400px;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, .2));
  position: relative;
  z-index: 1
}

.lia-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, .12) 0%, transparent 70%);
  pointer-events: none
}

/* botão LIA — azul */
.lia-section .btn-cta {
  background: #3BB8F1;
  color: #fff
}

.lia-section .btn-cta:hover {
  box-shadow: 0 8px 22px rgba(59, 184, 241, .5)
}

.modules .btn-cta {
  background: #FF8073;
  color: #fff
}

.modules .btn-cta:hover {
  box-shadow: 0 8px 22px rgba(255, 128, 115, .5)
}

/* ── WAVE deep→finalcta ── */
.w-deep-cta {
  background: var(--deep);
  line-height: 0
}

.w-deep-cta svg {
  display: block;
  width: 100%
}

/* ════════════════════════════════════
   DASHBOARD SCROLL SECTION
   Efeito scroll-driven:
   1) Imagem entra centralizada, grande
   2) Scroll → imagem move direita, texto aparece
════════════════════════════════════ */
.dash-section {
  background: #F8FFFE;
  overflow: visible
}

/* wrapper com altura 300vh cria o "espaço" de scroll */
.dash-pin-wrap {
  position: relative;
  height: 300vh;
}

/* sticky panel que fica fixo enquanto scrollamos os 300vh */
.dash-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 0 6%;
  overflow: hidden;
}

/* ── LEFT: texto ── */
.dash-text {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateX(-30px);
  will-change: opacity, transform;
}

.dash-eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.dash-title {
  font-family: var(--fh);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.1;
  color: #0D2B1E;
  margin-bottom: 16px;
}

.dash-title-accent {
  color: var(--blue)
}

.dash-desc {
  font-size: .95rem;
  color: #555;
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 28px;
  max-width: 360px;
}

.dash-feats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px
}

.dash-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px
}

.dash-feat-icon {
  width: 36px;
  height: 36px;
  background: #EDF8FF;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dash-feat-title {
  font-size: .875rem;
  font-weight: 700;
  color: #0D2B1E;
  margin-bottom: 2px
}

.dash-feat-sub {
  font-size: .78rem;
  color: #888
}

.btn-dash {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral);
  color: #fff;
  font-family: var(--fb);
  font-size: .9rem;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}

.btn-dash:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 128, 115, .4)
}

/* ── RIGHT: imagem ── */
.dash-img-wrap {
  position: relative;
  z-index: 1;
  will-change: transform;
  /* começa deslocada para a esquerda (centro da tela) e escalonada */
  transform: translateX(-55%) scale(1.1);
  transform-origin: center center;
}

.dash-browser {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .13), 0 0 0 1px rgba(0, 0, 0, .05);
  overflow: hidden;
}

.dash-browser-bar {
  background: #f0f2f5;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #e5e7eb;
}

.dbb-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0
}

.dbb-url {
  margin-left: 10px;
  flex: 1;
  background: #fff;
  border-radius: 6px;
  padding: 4px 12px;
  font-size: .7rem;
  color: #999;
  font-family: monospace;
}

.dash-screenshot {
  width: 100%;
  display: block
}

.dash-glow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 80px;
  background: radial-gradient(ellipse, rgba(59, 184, 241, .25) 0%, transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}

/* ── RESPONSIVE: mobile mostra tudo estático ── */
@media(max-width:900px) {
  .dash-pin-wrap {
    height: auto
  }

  .dash-sticky {
    position: relative;
    height: auto;
    grid-template-columns: 1fr;
    padding: 60px 5% 80px;
    gap: 40px;
  }

  .dash-text {
    opacity: 1 !important;
    transform: none !important
  }

  .dash-img-wrap {
    transform: none !important
  }
}

/* ════════════════════════════════════
   FINAL CTA  —  Zova style (fundo claro)
   Texto central + screenshot flutuando
════════════════════════════════════ */
.finalcta {
  background: #F0F9FF;
  padding: 96px 5% 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* subtle grid pattern */
.finalcta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 184, 241, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 184, 241, .06) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

/* radial fade over grid */
.finalcta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, #F0F9FF 30%, transparent 100%);
  pointer-events: none;
}

.finalcta-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.finalcta-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(59, 184, 241, .12);
  border: 1px solid rgba(59, 184, 241, .3);
  color: #555;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.finalcta-badge span {
  width: 5px;
  height: 5px;
  background: var(--blue);
  border-radius: 50%;
  display: inline-block
}

/* badge pill reutilizável — mesmo estilo do finalcta-badge */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(59, 184, 241, .12);
  border: 1px solid rgba(59, 184, 241, .3);
  color: #555;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.badge-pill span {
  width: 5px;
  height: 5px;
  background: var(--blue);
  border-radius: 50%;
  display: inline-block
}

.finalcta-title {
  font-family: var(--fh);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.15;
  color: #0D2B1E;
  margin-bottom: 20px;
}

.finalcta-title span {
  color: var(--blue)
}

.finalcta-sub {
  font-size: 1rem;
  color: #555;
  font-weight: 400;
  line-height: 1.72;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.finalcta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* main CTA button — coral */
.btn-cta-coral {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--coral);
  color: #fff;
  font-family: var(--fb);
  font-size: 1rem;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 100px;
  border: none;
  cursor: none;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}

.btn-cta-coral:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 128, 115, .45)
}

/* secondary outline */
.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #0D2B1E;
  font-family: var(--fb);
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1.5px solid rgba(13, 43, 30, .2);
  text-decoration: none;
  transition: border-color .2s, background .2s;
  cursor: none;
}

.btn-cta-outline:hover {
  border-color: #0D2B1E;
  background: rgba(13, 43, 30, .03)
}

/* note */
.finalcta-note {
  font-size: .75rem;
  color: #aaa;
  margin-bottom: 64px
}

/* ── screenshot block ── */
.finalcta-screens {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: -40px;
  padding: 0 2%;
}

/* main screenshot */
.fcta-main {
  position: relative;
  z-index: 2;
  width: 72%;
  max-width: 900px;
  transform: perspective(1200px) rotateX(4deg);
  transform-origin: bottom center;
  filter: drop-shadow(0 32px 64px rgba(10, 43, 30, .18));
  transition: transform .4s;
}

.fcta-main:hover {
  transform: perspective(1200px) rotateX(2deg) translateY(-6px)
}

.fcta-browser {
  background: #fff;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .07)
}

.fcta-bar {
  background: #f0f2f5;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #e8eaed
}

.fcta-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0
}

.fcta-url {
  margin-left: 10px;
  flex: 1;
  background: #fff;
  border-radius: 5px;
  padding: 3px 10px;
  font-size: .65rem;
  color: #aaa;
  font-family: monospace;
  max-width: 260px
}

.fcta-main img {
  width: 100%;
  display: block
}

/* secondary screenshot — tilted right */
.fcta-secondary {
  position: absolute;
  right: 0;
  bottom: 20px;
  width: 36%;
  max-width: 420px;
  z-index: 3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(10, 43, 30, .14), 0 0 0 1px rgba(0, 0, 0, .06);
  transform: perspective(800px) rotateY(-6deg) rotateX(2deg);
  transition: transform .4s;
}

.fcta-secondary:hover {
  transform: perspective(800px) rotateY(-3deg) rotateX(1deg) translateY(-4px)
}

.fcta-secondary img {
  width: 100%;
  display: block
}

.fcta-secondary-left {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 36%;
  max-width: 420px;
  z-index: 3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(10, 43, 30, .14), 0 0 0 1px rgba(0, 0, 0, .06);
  transform: perspective(800px) rotateY(6deg) rotateX(2deg);
  transition: transform .4s;
}

.fcta-secondary-left:hover {
  transform: perspective(800px) rotateY(3deg) rotateX(1deg) translateY(-4px)
}

.fcta-secondary-left img {
  width: 100%;
  display: block
}

/* floating pill badge above screenshot */
.fcta-pill {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  background: #fff;
  border-radius: 100px;
  padding: 7px 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: .78rem;
  font-weight: 600;
  color: #0D2B1E;
}

.fcta-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: livepulse 1.8s ease-in-out infinite
}

.w-cta-foot {
  background: #F0F9FF;
  line-height: 0
}

.w-cta-foot svg {
  display: block;
  width: 100%;
}

/* ════════════════════════════════════
   PRICING
════════════════════════════════════ */
.pricing {
  background: #fff;
  padding: 96px 5% 100px;
  position: relative
}

.pricing-inner {
  max-width: 1060px;
  margin: 0 auto
}

.pricing-header {
  text-align: center;
  margin-bottom: 56px
}

.pricing-eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px
}

.pricing-title {
  font-family: var(--fh);
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.1;
  color: #0D2B1E;
  margin-bottom: 14px
}

.pricing-sub {
  font-size: .95rem;
  color: #666;
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto
}

/* grid — 3 cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* base card */
.plan-card {
  background: #F7FFFE;
  border: 1.5px solid rgba(59, 184, 241, .15);
  border-radius: 24px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform .3s, box-shadow .3s;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(59, 184, 241, .12)
}

/* featured card — Boomerang */
.plan-featured {
  background: #E55E4B;
  border-color: #E55E4B;
  box-shadow: 0 12px 48px rgba(229, 94, 75, .25);
}

.plan-featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(229, 94, 75, .35)
}

.plan-featured .plan-name {
  color: #fff
}

.plan-featured .plan-subtitle {
  color: rgba(255, 255, 255, .55)
}

.plan-featured .plan-price-cur {
  color: rgba(255, 255, 255, .7)
}

.plan-featured .plan-price-val {
  color: #fff
}

.plan-featured .plan-price-per {
  color: rgba(255, 255, 255, .55)
}

.plan-featured .plan-price-note {
  color: rgba(255, 255, 255, .45)
}

.plan-featured .plan-divider {
  background: rgba(255, 255, 255, .2)
}

.plan-featured .plan-feat-group {
  color: rgba(255, 255, 255, .45)
}

.plan-featured .plan-feat {
  color: rgba(255, 255, 255, .85)
}

.plan-featured .plan-feat strong {
  color: #fff
}

.plan-featured .plan-feat svg {
  color: #FF8073
}

.plan-featured .plan-label-popular {
  background: rgba(255, 255, 255, .35);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .5);
  font-weight: 700;
  letter-spacing: .06em
}

.plan-featured .plan-btn-primary {
  background: #fff;
  color: #E55E4B
}

.plan-featured .plan-btn-primary:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, .15)
}

/* label */
.plan-label {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(59, 184, 241, .12);
  color: #555;
  padding: 4px 11px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.plan-label-popular {
  background: rgba(255, 128, 115, .15);
  color: var(--coral)
}

.plan-featured .plan-label-popular {
  background: rgba(255, 128, 115, .25);
  color: #FF9D93
}

.plan-label-best {
  background: rgba(59, 184, 241, .15);
  color: var(--blue)
}

/* name & subtitle */
.plan-name {
  font-family: var(--fh);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: #0D2B1E;
  margin-bottom: 4px
}

.plan-featured .plan-name {
  color: #fff
}

.plan-subtitle {
  font-size: .8rem;
  color: #888;
  font-weight: 400;
  margin-bottom: 20px
}

.plan-featured .plan-subtitle {
  color: rgba(255, 255, 255, .45)
}

/* price */
.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 4px
}

.plan-price-cur {
  font-size: .9rem;
  font-weight: 600;
  color: #555;
  padding-bottom: 6px
}

.plan-featured .plan-price-cur {
  color: rgba(255, 255, 255, .5)
}

.plan-price-val {
  font-family: var(--fh);
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: #0D2B1E;
  line-height: 1
}

.plan-featured .plan-price-val {
  color: #fff
}

.plan-price-per {
  font-size: .75rem;
  color: #888;
  font-weight: 400;
  padding-bottom: 8px
}

.plan-featured .plan-price-per {
  color: rgba(255, 255, 255, .4)
}

.plan-price-note {
  font-size: .72rem;
  color: #aaa;
  margin-bottom: 24px
}

.plan-featured .plan-price-note {
  color: rgba(255, 255, 255, .35)
}

/* buttons */
.plan-btn {
  display: block;
  text-align: center;
  font-family: var(--fb);
  font-size: .9rem;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: 100px;
  text-decoration: none;
  cursor: none;
  transition: transform .2s, box-shadow .2s, background .2s;
  margin-bottom: 28px;
}

.plan-btn-outline {
  background: transparent;
  color: #0D2B1E;
  border: 1.5px solid rgba(13, 43, 30, .2);
}

.plan-btn-outline:hover {
  background: rgba(13, 43, 30, .04);
  border-color: #0D2B1E
}

.plan-btn-primary {
  background: var(--coral);
  color: #fff;
  border: none;
}

.plan-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 128, 115, .45)
}

.plan-btn-dark {
  background: #3BB8F1;
  color: #fff;
  border: none;
}

.plan-btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(59, 184, 241, .4)
}

/* divider */
.plan-divider {
  height: 1px;
  background: rgba(59, 184, 241, .15);
  margin-bottom: 24px
}

.plan-featured .plan-divider {
  background: rgba(255, 255, 255, .1)
}

/* features */
.plan-feat-group {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 12px
}

.plan-featured .plan-feat-group {
  color: rgba(255, 255, 255, .3)
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.plan-feat {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .84rem;
  color: #555;
  line-height: 1.45
}

.plan-feat svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--blue);
  margin-top: 1px
}

.plan-featured .plan-feat {
  color: rgba(255, 255, 255, .65)
}

.plan-featured .plan-feat svg {
  color: #FF8073
}

.plan-feat strong {
  color: #0D2B1E;
  font-weight: 700
}

.plan-featured .plan-feat strong {
  color: #fff
}

@media(max-width:960px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto
  }

  .plan-featured {
    transform: scale(1)
  }

  .plan-featured:hover {
    transform: translateY(-6px)
  }
}

/* ── COMPARE TOGGLE ── */
.compare-toggle-wrap {
  text-align: center;
  margin-top: 40px
}

.compare-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid rgba(59, 184, 241, .3);
  color: #555;
  font-family: var(--fb);
  font-size: .875rem;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 100px;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}

.compare-toggle-btn:hover {
  background: rgba(59, 184, 241, .07);
  border-color: var(--blue);
  color: var(--blue)
}

.compare-toggle-btn.open {
  background: rgba(59, 184, 241, .1);
  border-color: var(--blue);
  color: var(--blue)
}

.compare-toggle-icon {
  display: flex;
  align-items: center;
  transition: transform .35s cubic-bezier(.16, 1, .3, 1)
}

.compare-toggle-btn.open .compare-toggle-icon {
  transform: rotate(180deg)
}

/* ── COMPARE WRAP ── */
.compare-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height .6s cubic-bezier(.16, 1, .3, 1), opacity .4s;
  opacity: 0;
  margin-top: 0;
}

.compare-wrap.open {
  max-height: 1200px;
  opacity: 1;
  margin-top: 32px;
}

.compare-inner {
  background: #F7FFFE;
  border: 1.5px solid rgba(59, 184, 241, .15);
  border-radius: 24px;
  padding: 40px 36px;
  overflow-x: auto;
}

.compare-title {
  font-family: var(--fh);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: #0D2B1E;
  text-align: center;
  margin-bottom: 32px;
}

/* table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem
}

.compare-table th {
  font-family: var(--fh);
  font-size: .8rem;
  font-weight: 700;
  color: #555;
  padding: 12px 20px;
  text-align: center;
  border-bottom: 2px solid rgba(59, 184, 241, .15);
}

.compare-table th.ct-feat {
  text-align: left;
  color: #aaa;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase
}

.compare-table td {
  padding: 13px 20px;
  text-align: center;
  color: #555;
  border-bottom: 1px solid rgba(59, 184, 241, .08);
  vertical-align: middle;
}

.compare-table td:first-child {
  text-align: left;
  color: #0D2B1E;
  font-weight: 500
}

/* highlight column (Boomerang) */
.ct-highlight {
  background: rgba(59, 184, 241, .06);
  font-weight: 600;
  color: #0D2B1E;
}

.compare-table thead .ct-highlight {
  color: var(--blue);
  background: rgba(59, 184, 241, .1);
  border-radius: 12px 12px 0 0;
}

/* section rows */
.ct-section td {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #aaa;
  padding: 18px 20px 8px;
  border-bottom: none;
  background: transparent;
}

.ct-section td:first-child {
  color: #aaa
}

/* check / cross */
.ct-yes {
  color: var(--blue);
  font-size: 1rem;
  font-weight: 700
}

.ct-no {
  color: #ccc;
  font-size: .9rem
}

/* footer buttons */
.compare-table tfoot td {
  padding: 20px 20px 4px;
  border-bottom: none
}

.ct-btn {
  display: inline-block;
  font-family: var(--fb);
  font-size: .8rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s, box-shadow .2s;
}

.ct-btn-outline {
  background: transparent;
  color: #0D2B1E;
  border: 1.5px solid rgba(13, 43, 30, .2)
}

.ct-btn-outline:hover {
  background: rgba(13, 43, 30, .04)
}

.ct-btn-primary {
  background: var(--coral);
  color: #fff;
  border: none
}

.ct-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 128, 115, .4)
}

.ct-btn-dark {
  background: #3BB8F1;
  color: #fff;
  border: none
}

.ct-btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(59, 184, 241, .4)
}

/* ── WAVE cta→footer ── */
.w-blue-foot {
  background: var(--blue);
  line-height: 0
}

.w-blue-foot svg {
  display: block;
  width: 100%
}

/* ════════════════════════════
   FOOTER
════════════════════════════ */
footer {
  background: #1384BD;
  padding: 60px 5% 36px
}

.foot-inner {
  max-width: 1060px;
  margin: 0 auto
}

.foot-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 48px
}

.foot-logo img {
  height: 32px;
  margin-bottom: 14px;
  display: block;
  filter: none
}

.foot-slogan {
  font-size: .84rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.7;
  font-weight: 300;
  max-width: 200px
}

.foot-col h4 {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px
}

.foot-col a {
  display: block;
  font-size: .84rem;
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  margin-bottom: 9px;
  transition: color .2s;
  font-weight: 300
}

.foot-col a:hover {
  color: #fff
}

.foot-bottom {
  border-top: 2px solid #FF8073;
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px
}

.foot-copy {
  font-size: .76rem;
  color: rgba(255, 255, 255, .65);
  font-weight: 300
}

.socials {
  display: flex;
  gap: 10px
}

.socials a {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s
}

.socials a:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .15)
}

.socials svg {
  width: 13px;
  height: 13px;
  stroke: rgba(255, 255, 255, .75);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.socials {
  display: flex;
  gap: 10px
}

.socials a {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s
}

.socials a:hover {
  border-color: rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .06)
}

.socials svg {
  width: 13px;
  height: 13px;
  stroke: rgba(255, 255, 255, .5);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

/* ════════════════════════════
   MODAL
════════════════════════════ */
.modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .75);
  backdrop-filter: blur(10px);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px
}

.modal-bg.open {
  display: flex
}

.modal {
  background: #fff;
  border-radius: 24px;
  padding: 42px;
  width: 100%;
  max-width: 468px;
  position: relative;
  animation: min .4s cubic-bezier(.16, 1, .3, 1) forwards
}

@keyframes min {
  from {
    opacity: 0;
    transform: scale(.94) translateY(12px)
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0)
  }
}

.modal-x {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: none;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  transition: background .2s, color .2s
}

.modal-x:hover {
  background: #f2f2f2;
  color: #000
}

.modal-x svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round
}

.modal-title {
  font-family: var(--fh);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: #0D0D12;
  margin-bottom: 6px
}

.modal-sub {
  font-size: .84rem;
  color: #999;
  line-height: 1.65;
  margin-bottom: 26px;
  font-weight: 300
}

.fg {
  margin-bottom: 14px
}

.fg label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 5px
}

.fg input,
.fg select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #ebebeb;
  border-radius: 10px;
  font-family: var(--fb);
  font-size: .875rem;
  color: #0D0D12;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
  transition: border-color .2s, box-shadow .2s
}

.fg input:focus,
.fg select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59, 184, 241, .12)
}

.fg .err {
  font-size: .7rem;
  color: #e53935;
  margin-top: 4px;
  display: none
}

.fg.bad input,
.fg.bad select {
  border-color: #e53935
}

.fg.bad .err {
  display: block
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px
}

.btn-sub {
  width: 100%;
  padding: 14px;
  background: var(--coral);
  color: #fff;
  font-family: var(--fb);
  font-size: .95rem;
  font-weight: 700;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  margin-top: 6px
}

.btn-sub:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 128, 115, .45)
}

.ok-msg {
  text-align: center;
  padding: 24px 0;
  display: none
}

.ok-msg svg {
  width: 50px;
  height: 50px;
  stroke: #28C840;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  margin: 0 auto 14px;
  display: block
}

.ok-msg h3 {
  font-family: var(--fh);
  font-size: 1.4rem;
  font-weight: 800;
  color: #0D0D12;
  margin-bottom: 8px
}

.ok-msg p {
  font-size: .84rem;
  color: #888;
  line-height: 1.65;
  font-weight: 300
}

/* ── REVEAL ── */
.rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1)
}

.rv.on {
  opacity: 1;
  transform: translateY(0)
}

.d1 {
  transition-delay: .1s
}

.d2 {
  transition-delay: .2s
}

.d3 {
  transition-delay: .3s
}

.d4 {
  transition-delay: .4s
}

/* ── KEYFRAMES ── */
@keyframes up {
  from {
    opacity: 0;
    transform: translateY(26px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ── RESPONSIVE ── */
@media(max-width:960px) {
  nav {
    display: none
  }

  .hamburger {
    display: flex
  }

  .hdr-right .btn-login {
    display: none
  }

  .hero {
    flex-direction: column;
    padding-top: 90px;
    padding-bottom: 40px;
    text-align: center;
    align-items: center;
    min-height: auto
  }

  .hero-text {
    max-width: 100%;
    padding: 40px 0 0
  }

  .hero-sub,
  .hero-note {
    margin-left: auto;
    margin-right: auto
  }

  .hero-btns {
    justify-content: center
  }

  .hero-right {
    width: clamp(300px, 80vw, 600px);
    height: auto;
    margin-top: 16px
  }

  .fc-ai {
    top: 5%;
    left: -5%
  }

  .fc-dep {
    right: -5%;
    bottom: 35%
  }

  .fc-stat {
    left: -5%;
    bottom: 10%
  }

  .how-inner {
    grid-template-columns: 1fr
  }

  .finalcta-screens {
    padding: 0
  }

  .fcta-main {
    width: 100%
  }

  .fcta-secondary {
    display: none
  }

  .fcta-pill {
    font-size: .68rem
  }

  .steps {
    grid-template-columns: 1fr
  }

  .tab-panel.active {
    grid-template-columns: 1fr
  }

  .lia-inner {
    grid-template-columns: 1fr;
    text-align: center
  }

  .lia-feats {
    align-items: center
  }

  .lia-img {
    order: -1
  }

  .steps::before {
    display: none
  }

  .foot-top {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:520px) {
  .hero h1 {
    font-size: 2.3rem
  }

  .frow {
    grid-template-columns: 1fr
  }

  .foot-top {
    grid-template-columns: 1fr
  }

  .tabs {
    overflow-x: auto;
    width: 100%
  }
}