html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  color: #07111f;
  background: #f7f9fc;
}

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

* {
  box-sizing: border-box;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.gradient-text {
  background: linear-gradient(90deg, #22c8ff 0%, #59a8ff 30%, #9a5cff 70%, #b66bff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.section-kicker {
  margin: 0 0 16px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #7488a3;
}

.section-kicker--dark {
  color: rgba(237,243,255,.58);
}

.section-title {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #07111f;
}

.section-title span {
  color: inherit;
}

.section-title--light {
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn--primary {
  color: #ffffff;
  background: linear-gradient(90deg, #22c8ff 0%, #59a8ff 30%, #9a5cff 70%, #b66bff 100%);
  box-shadow: 0 14px 30px rgba(89,168,255,.18);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(89,168,255,.22);
}

.btn--ghost {
  color: #213754;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(11,21,38,.08);
}

.btn--ghost:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.96);
}

.btn--plans {
  color: #ffffff;
  background: #25D366;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.25);
  border: none;
}

.btn--plans:hover {
  transform: translateY(-2px);
  background: #1ebe5d;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.35);
}

.btn--whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: #25D366;
  border: none;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.25);
}

.btn--whatsapp:hover {
  transform: translateY(-2px);
  background: #1ebe5d;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.35);
}

.btn--whatsapp i {
  font-size: 1rem;
}

/* section 1 */
.hero {
  padding: 36px 0 88px;
  background:
    radial-gradient(circle at top left, rgba(34,200,255,.10), transparent 24%),
    radial-gradient(circle at top right, rgba(154,92,255,.11), transparent 24%),
    linear-gradient(180deg, #f7f9fc 0%, #eef2f8 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 430px);
  gap: 48px;
  align-items: center;
}

.hero__logo {
  display: block;
  width: 170px;
  max-width: 100%;
  margin-bottom: 80px;
}

.hero__title {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: #07111f;
}

.hero__subtitle {
  margin: 24px 0 0;
  max-width: 650px;
  font-size: 1.12rem;
  line-height: 1.7;
  color: #31445f;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero__microproof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero__microproof span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2f4260;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(11,21,38,.07);
}

.hero__right {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.90) 0%, rgba(255,255,255,.72) 100%);
  border: 1px solid rgba(11,21,38,.08);
  box-shadow: 0 30px 80px rgba(11,21,38,.12);
}

.hero-card--portrait {
  aspect-ratio: 0.9 / 1.05;
}

.hero-card__glow {
  position: absolute;
  inset: auto -14% -14% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154,92,255,.26) 0%, rgba(154,92,255,0) 68%);
  pointer-events: none;
}

.hero-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* mobile section 1 */
@media (max-width: 860px) {
  .hero {
    padding: 28px 0 56px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero__logo {
    width: 150px;
  }

  .hero__right {
    order: 2;
    justify-content: center;
  }

  .hero__left {
    order: 1;
  }

  .hero-card {
    max-width: 300px;
    border-radius: 28px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero__subtitle {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero__microproof span {
    width: 100%;
    justify-content: center;
  }
}

/* section 2 */
.pain-strip {
  padding: 84px 0;
  background:
    radial-gradient(circle at top left, rgba(34,200,255,.10), transparent 22%),
    radial-gradient(circle at bottom right, rgba(154,92,255,.16), transparent 28%),
    linear-gradient(135deg, #050913 0%, #08111f 38%, #10112a 100%);
}

.pain-strip__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 36px;
  align-items: end;
}

.pain-strip__intro {
  max-width: 650px;
}

.pain-strip__intro .section-title span {
  display: block;
  margin-top: 6px;
  color: rgba(237,243,255,.78);
}

.pain-strip__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.pain-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: #eef4ff;
  backdrop-filter: blur(6px);
}

.pain-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.pain-card p {
  margin: 0;
  line-height: 1.65;
  color: rgba(237,243,255,.74);
}

/* mobile section 2 */
@media (max-width: 860px) {
  .pain-strip {
    padding: 64px 0;
  }

  .pain-strip__grid {
    grid-template-columns: 1fr;
  }
}

/* section 3 */
.agent-showcase {
  padding: 96px 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(34,200,255,.08), transparent 24%),
    radial-gradient(circle at 85% 80%, rgba(154,92,255,.08), transparent 28%),
    linear-gradient(180deg, #f7f9fc 0%, #eef2f8 100%);
}

.agent-showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 56px;
  align-items: center;
}

.agent-showcase__copy {
  max-width: 660px;
}

.agent-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 34px;
}

.agent-benefit {
  display: flex;
  gap: 14px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(11,21,38,.07);
  box-shadow: 0 12px 28px rgba(11,21,38,.05);
}

.agent-benefit__icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #22c8ff 0%, #9a5cff 100%);
  box-shadow: 0 12px 22px rgba(89,168,255,.18);
}

.agent-benefit strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.agent-benefit p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #455a77;
}

.agent-showcase__chat {
  display: flex;
  justify-content: flex-end;
}

.flora-chat-shell {
  width: 100%;
  max-width: 420px;
  height: 620px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.04) 100%);
  box-shadow:
    0 30px 80px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.06);
}

.flora-chat-top {
  display: flex;
  justify-content: center;
  padding: 22px 22px 18px;
  background: linear-gradient(180deg, #ffffff 0%, #eef3f8 100%);
  border-bottom: 1px solid rgba(11,21,38,.06);
}

.flora-chat-avatar {
  width: 78px;
  height: 78px;
  padding: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}

.flora-chat-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

.flora-chat-header {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  padding: 0 22px;
  text-align: center;
  background: linear-gradient(90deg, #22c8ff 0%, #59a8ff 30%, #9a5cff 70%, #b66bff 100%);
}

.flora-chat-header p {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

/* mobile section 3 */
@media (max-width: 980px) {
  .agent-showcase {
    padding: 72px 0;
  }

  .agent-showcase__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .agent-showcase__chat {
    justify-content: center;
  }

  .flora-chat-shell {
    max-width: 100%;
    height: 600px;
  }
}

@media (max-width: 768px) {
  .agent-benefits {
    grid-template-columns: 1fr;
  }

  .agent-benefit {
    padding: 18px;
    border-radius: 20px;
  }

  .flora-chat-top {
    padding: 18px 18px 14px;
  }

  .flora-chat-avatar {
    width: 68px;
    height: 68px;
  }

  .flora-chat-header {
    min-height: 66px;
    padding: 0 18px;
  }

  .flora-chat-header p {
    font-size: 0.95rem;
  }
}

/* section 4 */
.flow-section {
  padding: 96px 0;
  background: #ffffff;
}

.flow-header {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.flow-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.flow-step {
  position: relative;
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, #f7f9fc 0%, #eef2f8 100%);
  border: 1px solid rgba(11,21,38,.06);
  min-height: 220px;
}

.flow-step:nth-child(2),
.flow-step:nth-child(4) {
  transform: translateY(28px);
}

.flow-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c8ff 0%, #9a5cff 100%);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
}

.flow-step h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.3;
}

.flow-step p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.65;
  color: #4a5d79;
}

/* mobile section 4 */
@media (max-width: 980px) {
  .flow-track {
    grid-template-columns: 1fr 1fr;
  }

  .flow-step:nth-child(2),
  .flow-step:nth-child(4) {
    transform: none;
  }
}

@media (max-width: 640px) {
  .flow-section {
    padding: 72px 0;
  }

  .flow-track {
    grid-template-columns: 1fr;
  }

  .flow-step {
    min-height: auto;
  }
}

/* section 5 */
.positioning-section {
  padding: 96px 0;
  background:
    radial-gradient(circle at 12% 14%, rgba(34,200,255,.10), transparent 24%),
    radial-gradient(circle at 84% 84%, rgba(154,92,255,.12), transparent 26%),
    linear-gradient(135deg, #050913 0%, #08111f 38%, #10112a 100%);
}

.positioning-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 44px;
  align-items: center;
}

.positioning-stack {
  position: relative;
  min-height: 420px;
}

.positioning-card {
  position: absolute;
  width: 100%;
  padding: 22px;
  border-radius: 24px;
  box-shadow: 0 24px 46px rgba(0,0,0,.22);
}

.positioning-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.03rem;
}

.positioning-card p {
  margin: 0;
  line-height: 1.6;
}

.positioning-card--light {
  top: 0;
  left: 0;
  color: #07111f;
  background: linear-gradient(135deg, #ffffff 0%, #eef3f8 100%);
  transform: rotate(-5deg);
}

.positioning-card--blue {
  top: 102px;
  left: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #22c8ff 0%, #59a8ff 100%);
  transform: rotate(4deg);
}

.positioning-card--purple {
  top: 210px;
  left: -4px;
  color: #ffffff;
  background: linear-gradient(135deg, #9a5cff 0%, #b66bff 100%);
  transform: rotate(-3deg);
}

/* mobile section 5 */
@media (max-width: 980px) {
  .positioning-section {
      padding: 72px 0;
    }

    .positioning-section__grid {
      grid-template-columns: 1fr;
      gap: 28px;
    }

    .positioning-stack {
      max-width: 100%;
      min-height: auto;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .positioning-card {
      position: relative;
      width: 100%;
      padding: 20px;
      border-radius: 20px;
      box-sizing: border-box;
      transform: none !important;
      top: auto !important;
      left: auto !important;
    }

    .positioning-card strong {
      font-size: 1rem;
    }

    .positioning-card p {
      line-height: 1.5;
    }
}

@media (max-width: 640px) {
  .positioning-card {
    padding: 18px;
    border-radius: 18px;
  }
}

/* section 6 */
.plans-section {
  padding: 96px 0;
  background:
    radial-gradient(circle at top left, rgba(34,200,255,.08), transparent 22%),
    radial-gradient(circle at bottom right, rgba(154,92,255,.10), transparent 28%),
    linear-gradient(180deg, #f7f9fc 0%, #eef2f8 100%);
}

.plans-header {
  max-width: 760px;
  margin-bottom: 34px;
}

.setup-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 18px 22px;
  border-radius: 22px;
  background: linear-gradient(90deg, #07111f 0%, #0f1e34 100%);
  color: #ffffff;
}

.setup-banner__label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255,255,255,.12);
}

.setup-banner strong {
  font-size: 1.22rem;
}

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

.plan-card {
  padding: 28px 24px;
  border-radius: 28px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(11,21,38,.07);
  box-shadow: 0 16px 34px rgba(11,21,38,.06);
}

.plan-card--featured {
  background: linear-gradient(135deg, #07111f 0%, #0e2038 100%);
  color: #ffffff;

}

.plan-card--consult {
  background: linear-gradient(135deg, #f1ebff 0%, #ecf7ff 100%);
}

.plan-card__value {
  margin: 0 0 14px;
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.plan-card__value span {
  font-size: 0.95rem;
  font-weight: 600;
  color: inherit;
  opacity: .72;
}

.plan-card__limit {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: inherit;
  opacity: .82;
}

/* mobile section 6 */
@media (max-width: 980px) {
  .plans-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .plans-section {
    padding: 72px 0;
  }

  .setup-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plan-card--featured {
    transform: none;
  }
}

/* section 7 */
.upsell-section {
  padding: 96px;
  background:
    radial-gradient(circle at top left, rgba(34,200,255,.08), transparent 22%),
    radial-gradient(circle at bottom right, rgba(154,92,255,.10), transparent 28%),
    linear-gradient(180deg, #f7f9fc 0%, #eef2f8 100%);
}

.upsell-section__box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 24px;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ffffff 0%, #eef3f8 100%);
  border: 1px solid rgba(11,21,38,.06);
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.upsell-section__text {
  margin: 12px 0 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #425672;
}

.upsell-section__aside {
  display: flex;
  justify-content: flex-end;
}

.upsell-section__aside .btn--whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 24px;
  min-width: 280px;
  color: #ffffff;
  background: #25D366;
  border: none;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.25);
  box-sizing: border-box;
  white-space: nowrap;
}

.upsell-section__aside .btn--whatsapp:hover {
  transform: translateY(-2px);
  background: #1ebe5d;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.35);
}

.upsell-section__aside .btn--whatsapp i {
  font-size: 1rem;
}

/* mobile section 7 */
@media (max-width: 768px) {
  .upsell-section {
    padding: 58px 0;
  }

  .upsell-section__box {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 22px;
    border-radius: 22px;
  }

  .upsell-section__text {
    margin: 10px 0 0;
    line-height: 1.6;
  }

  .upsell-section__aside {
    justify-content: flex-start;
    margin-top: 6px;
  }

  .upsell-section__aside .btn--whatsapp {
    width: 100%;
    max-width: 100%;
    min-height: 52px;
    padding: 0 16px;
    font-size: 0.92rem;
    white-space: nowrap;
  }
}


/* section 8 */
.closing-section {
  padding: 96px 0 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(34,200,255,.10), transparent 28%),
    radial-gradient(circle at 85% 30%, rgba(154,92,255,.12), transparent 30%),
    linear-gradient(180deg, #07111f 0%, #0b1526 100%);
}

.closing-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 360px);
  gap: 40px;
  align-items: center;
  padding-bottom: 72px;
}

.closing-section__text {
  margin: 20px 0 0;
  max-width: 540px;
  font-size: 1.04rem;
  line-height: 1.7;
  color: rgba(237,243,255,.76);
}

.closing-section__left .btn {
  margin-top: 30px;
}

.closing-section__right {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 30px;
}

.closing-note {
  max-width: 320px;
  padding: 26px;
  border-radius: 26px;
  color: #ffffff;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
}

.closing-note strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.02rem;
}

.closing-note p {
  margin: 0;
  line-height: 1.65;
  color: rgba(237,243,255,.76);
}

/* mobile section 8 */
@media (max-width: 860px) {
  .closing-section {
    padding-top: 72px;
  }

  .closing-section__grid {
    grid-template-columns: 1fr;
  }

  .closing-section__right {
    justify-content: flex-start;
  }
}

/* footer */
.fluxy-footer {
  padding: 24px 0 30px;
  background: linear-gradient(180deg, #f7f9fc 0%, #eef2f8 100%);
  border-top: 1px solid rgba(11,21,38,.06);
}

.fluxy-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.fluxy-footer__brand img {
  display: block;
  width: 118px;
  max-width: 100%;
  height: auto;
}

.fluxy-footer__copy {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #5f6f86;
  text-align: right;
}

@media (max-width: 768px) {
  .container {
    width: calc(100% - 28px);
    padding: 0 15px;
  }

  .section-kicker {
    margin-bottom: 14px;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
  }

  .section-title {
    font-size: clamp(2rem, 10vw, 3.2rem);
    line-height: 1;
  }

  .fluxy-footer__inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .fluxy-footer__copy {
    text-align: center;
    font-size: 0.86rem;
  }
}
