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

:root {
  /* Paleta Blaze Orange. referência */
  --copper: #FF5B04;
  --copper-l: #FF7A35;
  --copper-d: #D94800;
  --copper-pale: #FFF3EE;
  --black: #16232A;
  --black-2: #1E2F38;
  --fg-dark: #E4EEF0;
  --bg: #FAFCFC;
  --bg-2: #E4EEF0;
  --bg-card: #FFFFFF;
  --text: #16232A;
  --text-2: #2E4A55;
  --text-3: #5A7A85;
  --border: #C8DCE0;
  --border-cu: rgba(255, 91, 4, .22);
  --font-d: 'Playfair Display', Georgia, serif;
  --font-b: 'DM Sans', system-ui, sans-serif;
  --font-a: 'Cormorant Garamond', Garamond, serif;
  --pad: 24px;
  --r: 14px;
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  -webkit-font-smoothing: antialiased
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 248, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 var(--pad);
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.nav-logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0
}

.nav-brand {
  font-family: var(--font-b);
  font-size: 18px;
  font-weight: 700;
  color: var(--copper);
  letter-spacing: -.02em
}

.nav-sub {
  font-family: var(--font-b);
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: -1px
}

.nav-links {
  display: none;
  gap: 28px
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-2);
  text-decoration: none;
  transition: color .2s
}

.nav-links a:hover {
  color: var(--copper)
}

.nav-cta {
  background: var(--copper);
  color: #fff;
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s;
  flex-shrink: 0
}

.nav-cta:hover {
  background: var(--copper-d)
}

/* nav-toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--text-2);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease
}

.nav-toggle.open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.nav-toggle.open .hamburger-line:nth-child(2) {
  opacity: 0
}

.nav-toggle.open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

@media(min-width:768px) {
  .nav-links {
    display: flex
  }
  .nav-toggle {
    display: none
  }
}

@media(max-width:767px) {
  .nav-logo-link div {
    display: none
  }

  .nav-cta {
    margin-left: auto;
    margin-right: 16px;
    padding: 7px 14px;
    font-size: 12px
  }
  
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 62px;
    left: 0;
    width: 100%;
    background: rgba(250, 250, 248, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 24px var(--pad);
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: 99;
    animation: navSlideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards
  }
  
  .nav-links.active a {
    font-size: 15px;
    font-weight: 500;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04)
  }
  
  .nav-links.active a:last-child {
    border-bottom: none
  }
}

@keyframes navSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px)
  }
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ── UTILS ── */
.eyebrow {
  font-family: var(--font-b);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px
}

.eyebrow-line {
  width: 20px;
  height: 1px;
  background: var(--copper);
  opacity: .5;
  flex-shrink: 0
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 100px;
  font-family: var(--font-b);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--copper-pale);
  border: 1px solid var(--border-cu);
  color: var(--copper-d)
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--copper);
  color: #fff;
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(255, 91, 4, .35);
  transition: background .2s, transform .15s, box-shadow .2s;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28), transparent);
  transform: skewX(-18deg);
  animation: btnShimmer 2.8s ease-in-out infinite;
}

.btn-primary:hover {
  background: var(--copper-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 91, 4, .5)
}

.btn-primary:hover::after {
  animation: none
}

@keyframes btnShimmer {
  0% {
    left: -80%
  }

  55%,
  100% {
    left: 130%
  }
}

.btn-primary.lg {
  font-size: 16px;
  padding: 17px 36px
}

/* nav-cta shimmer */
.nav-cta {
  position: relative;
  overflow: hidden
}

.nav-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-18deg);
  animation: btnShimmer 3.4s ease-in-out infinite 1.2s;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .65s cubic-bezier(.22, 1, .36, 1), transform .65s cubic-bezier(.22, 1, .36, 1)
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity .65s cubic-bezier(.22, 1, .36, 1), transform .65s cubic-bezier(.22, 1, .36, 1)
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0)
}

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity .65s cubic-bezier(.22, 1, .36, 1), transform .65s cubic-bezier(.22, 1, .36, 1)
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0)
}

.reveal[data-d="1"] {
  transition-delay: .07s
}

.reveal[data-d="2"] {
  transition-delay: .14s
}

.reveal[data-d="3"] {
  transition-delay: .21s
}

.reveal[data-d="4"] {
  transition-delay: .28s
}

.reveal[data-d="5"] {
  transition-delay: .35s
}

.reveal[data-d="6"] {
  transition-delay: .42s
}

/* ── WHATSAPP HUMANIZADO ── */
.sec-human {
  background: var(--bg);
  padding: 96px var(--pad)
}

.human-inner {
  max-width: 1080px;
  margin: 0 auto
}

.human-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px
}

/* chat mockup */
.chat-mockup {
  background: #ECE5DD;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .1);
  max-width: 360px;
  margin: 0 auto
}

.chat-topbar {
  background: #075E54;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px
}

.chat-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0
}

.chat-info-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2
}

.chat-info-status {
  font-size: 11px;
  color: rgba(255, 255, 255, .7)
}

.chat-body {
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #ECE5DD;
  height: 380px;
  overflow-y: auto
}

.chat-msg {
  max-width: 80%;
  padding: 8px 12px 5px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.5;
  position: relative
}

.chat-msg.them {
  background: #fff;
  color: #111;
  border-radius: 0 8px 8px 8px;
  align-self: flex-start;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .08)
}

.chat-msg.us {
  background: #D9FDD3;
  color: #111;
  border-radius: 8px 0 8px 8px;
  align-self: flex-end;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .08)
}

.chat-time {
  font-size: 10px;
  color: #999;
  display: block;
  text-align: right;
  margin-top: 3px
}

.chat-typing {
  background: #fff;
  border-radius: 0 8px 8px 8px;
  align-self: flex-start;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .08);
  width: 56px
}

.typing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #aaa;
  animation: typingBounce 1.2s ease-in-out infinite
}

.typing-dot:nth-child(2) {
  animation-delay: .15s
}

.typing-dot:nth-child(3) {
  animation-delay: .30s
}

@keyframes typingBounce {

  0%,
  60%,
  100% {
    transform: translateY(0)
  }

  30% {
    transform: translateY(-5px)
  }
}

/* badges */
.human-badges {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 0
}

.human-badge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  transition: border-color .2s, box-shadow .2s, transform .2s
}

.human-badge:hover {
  border-color: var(--border-cu);
  box-shadow: 0 4px 20px rgba(255, 91, 4, .08);
  transform: translateY(-2px)
}

.human-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--copper-pale);
  border: 1px solid var(--border-cu);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--copper)
}

.human-badge-title {
  font-family: var(--font-b);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px
}

.human-badge-body {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-3);
  line-height: 1.6
}

@media(min-width:768px) {
  .human-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px
  }

  .chat-mockup {
    max-width: 100%
  }
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-2);
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 24px;
  border-radius: 10px;
  text-decoration: none;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: border-color .2s, color .2s;
  -webkit-tap-highlight-color: transparent
}

.btn-outline:hover {
  border-color: var(--copper);
  color: var(--copper)
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .05)
}

section {
  padding: 72px var(--pad)
}

.sec-inner {
  max-width: 1080px;
  margin: 0 auto
}

h2.display {
  font-family: var(--font-b);
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.12;
  letter-spacing: -.025em;
  margin-bottom: 16px
}

h2.display em {
  color: var(--copper);
  font-style: italic;
  font-family: var(--font-d);
  font-weight: 400
}

.lead-p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-3);
  line-height: 1.8;
  max-width: 540px
}

/* ── HERO ── */
.hero {
  background: var(--bg);
  padding: 20px var(--pad) 0;
  overflow: hidden
}

.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, .08);
  border: 1px solid rgba(37, 211, 102, .25);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 500;
  color: #1a8a3e;
  margin-bottom: 20px
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25d366;
  animation: pulse 1.8s ease-in-out infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .4;
    transform: scale(1.35)
  }
}

.hero h1 {
  font-family: var(--font-b);
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 20px
}

.hero h1 em {
  color: var(--copper);
  font-style: italic;
  font-family: var(--font-d);
  font-weight: 400
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 500px
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 40px
}

/* Hero image side */
.hero-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  margin-top: 0;
}

.hero-img-wrap img {
  width: 100%;
  height: auto;
  display: block
}

/* ── INTEGRATIONS STRIP ── */
.integrations-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px var(--pad)
}

.int-inner {
  max-width: 1080px;
  margin: 0 auto
}

.int-label {
  font-family: var(--font-b);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-3);
  text-align: center;
  margin-bottom: 20px
}

.int-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px
}

.int-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  min-width: 90px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  cursor: default
}

.int-item:hover {
  border-color: var(--border-cu);
  box-shadow: 0 4px 16px rgba(255, 91, 4, .1);
  transform: translateY(-2px)
}

.int-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.int-item span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  white-space: nowrap
}

/* ── PROBLEMA ── */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 36px
}

.prob-card {
  padding: 22px 20px;
  border-radius: var(--r)
}

.prob-card .prob-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 91, 4, .08);
  border: 1px solid var(--border-cu);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
  margin-bottom: 14px
}

.prob-card h4 {
  font-family: var(--font-b);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px
}

.prob-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-3);
  line-height: 1.6
}

/* ── FEATURES TABS ── */
.tabs-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 6px;
  overflow-x: auto
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 10px 10px 0 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-3);
  border-bottom: 3px solid transparent;
  transition: all .2s;
  text-align: left;
  -webkit-tap-highlight-color: transparent
}

.tab-btn:hover {
  background: var(--bg-2);
  color: var(--text-2)
}

.tab-btn.active {
  background: var(--copper-pale);
  color: var(--copper);
  border-bottom-color: var(--copper);
  box-shadow: 0 4px 16px rgba(255, 91, 4, .1)
}

.tab-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0
}

.tab-panel {
  display: none
}

.tab-panel.active {
  display: block
}

.tab-content-wrap {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 0 12px 12px 12px;
  padding: 32px 28px
}

.tab-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center
}

.tab-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px
}

.tab-head-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--copper-pale);
  border: 1px solid var(--border-cu);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--copper)
}

.tab-head h3 {
  font-family: var(--font-b);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px
}

.tab-head p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-3);
  line-height: 1.6
}

.tab-checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 16px
}

.tab-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-2);
  font-weight: 400;
  line-height: 1.45
}

.tab-check-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--copper-pale);
  border: 1px solid var(--border-cu);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--copper)
}

.tab-img-wrap {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
  background: var(--bg-card)
}

.tab-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

/* ── AGENTE IA. DARK FEATURE ── */
.sec-agent {
  background: var(--black-2);
  position: relative;
  overflow: hidden
}

.sec-agent::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 91, 4, .18) 0%, transparent 65%);
  pointer-events: none
}

.sec-agent .eyebrow {
  color: var(--copper-l)
}

.sec-agent .eyebrow-line {
  background: var(--copper-l)
}

.sec-agent h2.display {
  color: var(--fg-dark)
}

.sec-agent .lead-p {
  color: #7A9BA5;
  max-width: 520px
}

.agent-inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative
}

.agent-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px
}

.agent-img {
  border-radius: 20px;
  overflow: hidden;
  background: transparent
}

.agent-img img {
  width: 100%;
  display: block
}

/* comparativo chatbot vs Mozart */
.compare-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 32px
}

.cmp-card {
  border-radius: var(--r);
  padding: 24px 20px
}

.cmp-card.bad {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08)
}

.cmp-card.good {
  background: rgba(255, 91, 4, .1);
  border: 1px solid rgba(255, 91, 4, .4);
  box-shadow: 0 0 30px rgba(255, 91, 4, .15)
}

.cmp-card-title {
  font-family: var(--font-b);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px
}

.cmp-card.bad .cmp-card-title {
  color: rgba(255, 255, 255, .4)
}

.cmp-card.good .cmp-card-title {
  color: var(--copper-l)
}

.cmp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.cmp-list li {
  font-size: 13px;
  font-weight: 300;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5
}

.cmp-card.bad .cmp-list li {
  color: rgba(255, 255, 255, .5)
}

.cmp-card.good .cmp-list li {
  color: var(--fg-dark)
}

.cmp-icon-bad {
  color: rgba(255, 100, 100, .5);
  flex-shrink: 0;
  margin-top: 1px
}

.cmp-icon-good {
  color: var(--copper-l);
  flex-shrink: 0;
  margin-top: 1px
}

/* capacidades cards */
.cap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 32px
}

.cap-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px
}

.cap-num {
  font-family: var(--font-b);
  font-size: 28px;
  font-weight: 900;
  color: var(--copper);
  opacity: .4;
  line-height: 1;
  flex-shrink: 0;
  width: 32px
}

.cap-title {
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 700;
  color: var(--fg-dark);
  margin-bottom: 4px
}

.cap-body {
  font-size: 12px;
  font-weight: 300;
  color: #7A9BA5;
  line-height: 1.55
}

/* ── AGENTE WHATS DEMO ── */
.sec-agent-demo {
  background: var(--bg);
  padding: 72px var(--pad)
}

.agent-demo-inner {
  max-width: 1080px;
  margin: 0 auto
}

.agent-demo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 36px
}

.agent-demo-img img {
  width: 100%;
  max-width: 380px;
  display: block;
  margin: 0 auto;
  border-radius: 24px
}

/* .agent-demo-text{} */
.agent-demo-text h3 {
  font-family: var(--font-b);
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 16px
}

.agent-demo-text h3 em {
  color: var(--copper);
  font-style: italic;
  font-family: var(--font-d);
  font-weight: 400
}

.agent-demo-text p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-3);
  line-height: 1.75;
  margin-bottom: 20px
}

.agent-cap-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.agent-cap-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5
}

.agent-cap-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--copper-pale);
  border: 1px solid var(--border-cu);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 9px;
  color: var(--copper);
  font-weight: 700
}

/* ── DEMO VIDEO ── */
.sec-demo {
  background: var(--black-2);
  padding: 72px var(--pad);
  text-align: center
}

.demo-inner {
  max-width: 900px;
  margin: 0 auto
}

.sec-demo h2 {
  font-family: var(--font-b);
  font-size: 34px;
  font-weight: 700;
  color: var(--fg-dark);
  line-height: 1.12;
  letter-spacing: -.025em;
  margin-bottom: 12px
}

.sec-demo h2 em {
  color: var(--copper);
  font-style: italic;
  font-family: var(--font-d);
  font-weight: 400
}

.sec-demo p {
  font-size: 15px;
  font-weight: 300;
  color: #7A9BA5;
  margin: 0 auto 36px;
  max-width: 480px;
  line-height: 1.75
}

.video-frame-chrome {
  background: #1E2F38;
  border-radius: 12px 12px 0 0;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px
}

.vfc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%
}

.vfc-bar {
  flex: 1;
  background: #253C47;
  border-radius: 6px;
  height: 22px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 11px;
  color: #666
}

.video-frame {
  background: #16232A;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .5);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center
}

.video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

/* ── STATS DARK ── */
.sec-dark {
  background: linear-gradient(160deg, #0D1A20 0%, #16232A 55%, #0D1A20 100%);
  position: relative;
  overflow: hidden
}

.sec-dark::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(255, 91, 4, .2) 0%, transparent 65%);
  pointer-events: none
}

.sec-dark .eyebrow {
  color: var(--copper-l)
}

.sec-dark .eyebrow-line {
  background: var(--copper-l)
}

.sec-dark h2.display {
  color: var(--fg-dark)
}

.sec-dark .lead-p {
  color: #7A9BA5
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 48px
}

.stat-cell {
  padding: 28px 20px;
  background: #16232A;
  text-align: center
}

.stat-num {
  font-family: var(--font-b);
  font-size: 52px;
  font-weight: 900;
  color: var(--copper);
  line-height: 1;
  text-shadow: 0 0 40px rgba(255, 91, 4, .4)
}

.stat-lbl {
  font-size: 13px;
  font-weight: 300;
  color: #7A9BA5;
  margin-top: 6px;
  line-height: 1.5
}

/* stat infographic image */
.stat-img-wrap {
  margin-top: 40px;
  border-radius: 16px;
  overflow: hidden;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto
}

.stat-img-wrap img {
  width: 100%;
  display: block
}

/* ── COMO FUNCIONA ── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 40px
}

.step-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border)
}

.step-item:last-child {
  border-bottom: none
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--copper-pale);
  border: 1px solid var(--border-cu);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 700;
  color: var(--copper);
  flex-shrink: 0;
  margin-top: 2px
}

.step-title {
  font-family: var(--font-b);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px
}

.step-body {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-3);
  line-height: 1.65
}

/* ── QUOTE ── */
.sec-quote {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px var(--pad);
  text-align: center
}

.qmark {
  font-family: var(--font-b);
  font-size: 72px;
  color: var(--copper);
  opacity: .2;
  line-height: 1;
  margin-bottom: -24px
}

.quote-text {
  font-family: var(--font-b);
  font-size: 26px;
  font-style: italic;
  color: var(--text);
  line-height: 1.4;
  max-width: 700px;
  margin: 20px auto 16px;
  font-weight: 400
}

.quote-author {
  font-family: var(--font-b);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--copper-d)
}

/* ── PLANS ── */
.plans-grid-v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 40px;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .08)
}

.plan-v2 {
  padding: 32px 28px;
  border-bottom: 1px solid var(--border);
  position: relative
}

.plan-v2:last-child {
  border-bottom: none
}

.plan-v2.pro-plan {
  background: linear-gradient(135deg, var(--copper) 0%, #D94800 100%)
}

.plan-v2-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px
}

.plan-v2-badge {
  display: inline-block;
  font-family: var(--font-b);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 8px
}

.plan-v2-badge.dark {
  background: var(--copper-pale);
  color: var(--copper-d);
  border: 1px solid var(--border-cu)
}

.plan-v2-badge.popular {
  background: #fff;
  color: var(--copper);
  border: 1px solid rgba(255, 255, 255, .4)
}

.plan-v2-name {
  font-family: var(--font-b);
  font-size: 28px;
  font-weight: 700;
  line-height: 1
}

.plan-v2-name.dark {
  color: var(--text)
}

.plan-v2-name.light {
  color: #fff
}

.plan-v2-desc {
  font-size: 13px;
  font-weight: 300;
  margin-top: 6px;
  line-height: 1.5;
  max-width: 280px
}

.plan-v2-desc.dark {
  color: var(--text-3)
}

.plan-v2-desc.light {
  color: rgba(255, 255, 255, .75)
}

.plan-v2-price {
  text-align: right
}

.plan-v2-price-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
  justify-content: flex-end
}

.pv2-cur {
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 600
}

.pv2-cur.dark {
  color: var(--copper)
}

.pv2-cur.light {
  color: rgba(255, 255, 255, .8)
}

.pv2-val {
  font-family: var(--font-b);
  font-size: 44px;
  font-weight: 900;
  line-height: 1
}

.pv2-val.dark {
  color: var(--copper)
}

.pv2-val.light {
  color: #fff
}

.pv2-cents {
  font-family: var(--font-b);
  font-size: 20px;
  font-weight: 700;
  align-self: flex-end;
  margin-bottom: 3px
}

.pv2-cents.dark {
  color: var(--copper)
}

.pv2-cents.light {
  color: rgba(255, 255, 255, .8)
}

.plan-v2-period {
  font-size: 11px;
  font-weight: 300;
  text-align: right;
  margin-top: 2px
}

.plan-v2-period.dark {
  color: var(--text-3)
}

.plan-v2-period.light {
  color: rgba(255, 255, 255, .6)
}

.plan-v2-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 16px;
  margin: 16px 0 20px;
  border-top: 1px solid;
  padding-top: 16px
}

.plan-v2-features.dark {
  border-color: var(--border)
}

.plan-v2-features.light {
  border-color: rgba(255, 255, 255, .2)
}

.pv2-feat {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 400
}

.pv2-feat.dark {
  color: var(--text-2)
}

.pv2-feat.light {
  color: rgba(255, 255, 255, .9)
}

.pv2-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.pv2-check.dark {
  background: var(--copper-pale);
  border: 1px solid var(--border-cu);
  color: var(--copper)
}

.pv2-check.light {
  background: rgba(255, 255, 255, .2);
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff
}

.plan-v2-cta-outline {
  display: block;
  text-align: center;
  background: transparent;
  color: var(--text);
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 600;
  padding: 13px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  text-decoration: none;
  transition: border-color .2s, color .2s
}

.plan-v2-cta-outline:hover {
  border-color: var(--copper);
  color: var(--copper)
}

.plan-v2-cta-white {
  display: block;
  text-align: center;
  background: #fff;
  color: var(--copper);
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
  transition: opacity .2s
}

.plan-v2-cta-white:hover {
  opacity: .92
}

/* compare table */
.compare-wrap {
  overflow-x: auto;
  margin-top: 40px
}

.cmp {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse
}

.cmp th {
  font-family: var(--font-b);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--copper);
  padding: 14px 16px;
  text-align: center;
  border-bottom: 2px solid var(--border-cu)
}

.cmp th:first-child {
  text-align: left;
  color: var(--text-3)
}

.cmp td {
  font-size: 13px;
  color: var(--text-2);
  font-weight: 300;
  padding: 11px 16px;
  text-align: center;
  border-bottom: 1px solid var(--border)
}

.cmp td:first-child {
  text-align: left;
  color: var(--text-3)
}

.cmp tr:last-child td {
  border-bottom: none
}

@media(max-width:767px) {
  .cmp th:first-child,
  .cmp td:first-child {
    position: sticky;
    left: 0;
    background: var(--bg);
    z-index: 10;
    box-shadow: 2px 0 5px rgba(0, 0, 0, .05)
  }
}

.chk {
  color: var(--copper);
  font-weight: 700
}

.dsh {
  color: var(--border)
}

.pb {
  background: var(--copper-pale)
}

.cmp thead .pb {
  background: rgba(255, 91, 4, .1)
}

/* ── FAQ ── */
.faq-list {
  margin-top: 32px
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  cursor: pointer
}

.faq-item:first-child {
  border-top: 1px solid var(--border)
}

.faq-q {
  font-family: var(--font-b);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px
}

.faq-icon {
  color: var(--copper);
  font-size: 20px;
  flex-shrink: 0;
  transition: transform .2s;
  line-height: 1
}

.faq-a {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-3);
  line-height: 1.75;
  padding-top: 10px;
  display: none
}

.faq-item.open .faq-a {
  display: block
}

.faq-item.open .faq-icon {
  transform: rotate(45deg)
}

/* ── CTA FINAL ESCURO ── */
.sec-cta-dark {
  background: var(--black-2);
  padding: 80px var(--pad);
  text-align: center;
  position: relative;
  overflow: hidden
}

.sec-cta-dark::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 91, 4, .2) 0%, transparent 65%);
  pointer-events: none
}

.sec-cta-dark h2 {
  font-family: var(--font-b);
  font-size: 36px;
  font-weight: 700;
  font-style: italic;
  color: var(--fg-dark);
  line-height: 1.1;
  margin-bottom: 16px;
  position: relative
}

.sec-cta-dark h2 em {
  color: var(--copper);
  font-style: normal
}

.sec-cta-dark p {
  font-size: 15px;
  font-weight: 300;
  color: #7A9BA5;
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.75;
  position: relative
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  position: relative
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 420px;
  padding: 16px 22px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .05);
  transition: background .2s, border-color .2s
}

.cta-btn:hover {
  background: rgba(255, 91, 4, .15);
  border-color: rgba(255, 91, 4, .4)
}

.cta-btn.feat {
  background: var(--copper);
  border-color: var(--copper);
  box-shadow: 0 4px 24px rgba(255, 91, 4, .35)
}

.cta-btn.feat:hover {
  background: var(--copper-d)
}

.cta-btn-lbl {
  font-family: var(--font-b);
  font-size: 16px;
  font-weight: 700;
  color: #fff
}

.cta-btn-price {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, .65)
}

.cta-arrow {
  color: rgba(255, 255, 255, .5);
  font-size: 18px
}

.cta-logo {
  margin-bottom: 24px;
  position: relative
}

.cta-logo img {
  width: 100%;
  max-width: 650px;
  height: auto;
  display: inline-block
}

/* ── FOOTER ── */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 32px var(--pad)
}

.footer-inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px
}

.footer-brand {
  font-family: var(--font-b);
  font-size: 18px;
  font-weight: 700;
  color: var(--copper);
  letter-spacing: -.02em
}

.footer-sub {
  font-family: var(--font-b);
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: -1px
}

.footer-copy {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-3)
}

/* ── COMPARATIVO REDESENHADO ── */
.cmp-section {
  margin-top: 48px
}

.cmp-duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start
}

.cmp-duo-card {
  border-radius: 16px;
  overflow: hidden
}

.cmp-duo-card.bad-card {
  background: #FFF5F5;
  border: 1.5px solid #FFCDD2
}

.cmp-duo-card.good-card {
  background: #F0FBF4;
  border: 1.5px solid #A5D6B0
}

.cmp-duo-header {
  padding: 18px 20px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid
}

.bad-card .cmp-duo-header {
  border-color: #FFCDD2
}

.good-card .cmp-duo-header {
  border-color: #A5D6B0
}

.cmp-duo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-b);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px
}

.bad-badge {
  background: #FFEBEE;
  color: #C62828;
  border: 1px solid #FFCDD2
}

.good-badge {
  background: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #A5D6B0
}

.cmp-duo-badge svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0
}

.cmp-duo-list {
  list-style: none;
  padding: 14px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.cmp-duo-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45
}

.bad-card .cmp-duo-list li {
  color: #5D4037
}

.good-card .cmp-duo-list li {
  color: #1B5E20
}

.cmp-li-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 10px;
  font-weight: 700
}

.bad-icon {
  background: #FFCDD2;
  color: #C62828
}

.good-icon {
  background: #C8E6C9;
  color: #2E7D32
}

/* capacidades v2 */
.cap-section {
  margin-top: 40px
}

.cap-section-label {
  font-family: var(--font-b);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 16px;
  text-align: center
}

.cap-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px
}

.cap-v2 {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 20px;
  transition: border-color .2s, background .2s
}

.cap-v2:hover {
  background: rgba(255, 91, 4, .08);
  border-color: rgba(255, 91, 4, .3)
}

.cap-v2-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(255, 91, 4, .15);
  border: 1px solid rgba(255, 91, 4, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper-l);
  margin-bottom: 12px
}

.cap-v2-title {
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 700;
  color: var(--fg-dark);
  margin-bottom: 6px
}

.cap-v2-body {
  font-size: 12px;
  font-weight: 300;
  color: #7A9BA5;
  line-height: 1.55
}

@media(min-width:768px) {
  .cap-grid-v2 {
    grid-template-columns: repeat(4, 1fr)
  }
}

/* ── WHATSAPP FEATURES GRID ── */
.wf-card-big {
  display: flex;
  flex-direction: column-reverse;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .06)
}

.wf-card-big-text {
  padding: 36px 32px
}

.wf-tag {
  display: inline-block;
  background: var(--copper-pale);
  color: var(--copper);
  border: 1px solid var(--border-cu);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px
}

.wf-h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 12px
}

.wf-p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-3);
  line-height: 1.7;
  margin-bottom: 0
}

.wf-card-big-img {
  background: var(--bg-2);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4/3
}

.wf-card-big-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.wf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 0
}

.wf-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
  transition: transform .2s, box-shadow .2s
}

.wf-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .1)
}

.wf-card-img {
  background: var(--bg-2);
  height: 140px;
  overflow: hidden
}

.wf-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.wf-card-body {
  padding: 18px
}

.wf-h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -.01em;
  margin-bottom: 6px
}

.wf-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--copper);
  text-decoration: none;
  margin-top: 10px
}

.wf-link:hover {
  text-decoration: underline
}

@media(min-width:768px) {
  .wf-card-big {
    display: grid;
    grid-template-columns: 1fr 1fr
  }

  .wf-card-big-img {
    min-height: 300px;
    height: auto;
    aspect-ratio: auto
  }

  .wf-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .wf-h3 {
    font-size: 28px
  }

  .wf-card-img {
    height: 180px
  }
}

@media(min-width:768px) {
  :root {
    --pad: 80px
  }

  .tab-checklist {
    grid-template-columns: 1fr 1fr
  }

  .plan-v2-features {
    grid-template-columns: 1fr 1fr
  }

  .cmp-duo {
    grid-template-columns: 1fr 1fr
  }

  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px
  }

  .hero h1 {
    font-size: 52px
  }

  h2.display {
    font-size: 40px
  }

  .hero-img-wrap {
    margin-top: -80px
  }

  .problem-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .tabs-nav {
    flex-direction: row
  }

  .tab-btn {
    flex: 1;
    justify-content: center;
    text-align: center;
    padding: 18px 16px
  }

  .tab-inner {
    grid-template-columns: 1fr 1fr
  }

  .tab-content-wrap {
    border-radius: 0 12px 12px 12px
  }

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

  .compare-cards {
    grid-template-columns: 1fr 1fr
  }

  .cap-grid {
    grid-template-columns: 1fr 1fr
  }

  .agent-demo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px
  }

  .agent-demo-text h3 {
    font-size: 32px
  }

  .stat-row {
    grid-template-columns: repeat(3, 1fr)
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .step-item {
    border-right: 1px solid var(--border)
  }

  .step-item:nth-child(2),
  .step-item:nth-child(4) {
    border-right: none
  }

  .step-item:nth-child(3),
  .step-item:nth-child(4) {
    border-top: 1px solid var(--border)
  }

  .plans-grid-v2 {
    grid-template-columns: repeat(3, 1fr)
  }

  .plan-v2 {
    border-bottom: none;
    border-right: 1px solid var(--border)
  }

  .plan-v2:last-child {
    border-right: none
  }

  .plan-v2.pro-plan .plan-v2-features {
    grid-template-columns: 1fr
  }

  .quote-text {
    font-size: 30px
  }

  .sec-cta-dark h2 {
    font-size: 48px
  }

  .cta-row {
    flex-direction: row;
    justify-content: center
  }

  .cta-btn {
    width: auto;
    min-width: 180px;
    flex: 0 0 auto
  }

  .sec-demo h2 {
    font-size: 42px
  }
}

@media(min-width:1024px) {
  section {
    padding: 96px var(--pad)
  }
}