/* ============================================================
   Product pages — shared styles
   ============================================================ */

/* Breadcrumb */
.breadcrumb {
  padding: 90px 0 0;
  background: var(--bg-1);
}
.breadcrumb .container {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: var(--text-3);
  padding-top: 20px;
  padding-bottom: 4px;
}
.breadcrumb a {
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.15s;
}
.breadcrumb a:hover { color: var(--text-1); }
.breadcrumb .sep { color: var(--text-4); }
.breadcrumb .current { color: var(--text-1); font-weight: 600; }

/* Product hero */
.prod-hero {
  position: relative;
  padding: 60px 0 40px;
  overflow: hidden;
}
.prod-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.prod-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-soft);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.prod-hero__eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-dim);
}
.prod-hero h1 {
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-bottom: 26px;
  font-weight: 800;
}
.prod-hero__subtitle {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--text-2);
  max-width: 700px;
  margin: 0 auto 36px;
  line-height: 1.55;
  text-wrap: pretty;
}
.prod-hero__cta {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.prod-hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 740px;
  margin: 0 auto;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.prod-hero__metrics > div { display: flex; flex-direction: column; gap: 4px; align-items: center; text-align: center; }
.prod-hero__metrics strong {
  font-size: 36px; font-weight: 800;
  color: var(--text-1);
  letter-spacing: -0.02em;
  font-family: var(--mono);
}
.prod-hero__metrics span {
  font-size: 13px;
  color: var(--text-3);
  max-width: 200px;
  line-height: 1.4;
}
@media (max-width: 700px) {
  .prod-hero__metrics { grid-template-columns: 1fr; gap: 20px; }
}

/* Product mockup */
.prod-mockup {
  padding: 0 0 100px;
  background: var(--bg-1);
}
.prod-mockup .mac-mockup {
  max-width: 1100px;
  margin: 0 auto;
}

/* Feature blocks */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: center;
  padding: 70px 0;
  border-bottom: 1px solid var(--border);
}
.feature-block:last-child { border-bottom: none; }
.feature-block--reverse .feature-block__text { order: 2; }
.feature-block--reverse .feature-block__visual { order: 1; }

.feature-tag {
  display: inline-flex;
  font-family: var(--mono);
  font-size: 11.5px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-soft);
  padding: 5px 11px;
  border-radius: 6px;
  margin-bottom: 18px;
}
.feature-block h3 {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  font-weight: 700;
}
.feature-block p {
  font-size: 15.5px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 22px;
}
.feature-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 11px;
}
.feature-list li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 14.5px;
  color: var(--text-2);
}
.feature-list .check {
  flex-shrink: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  margin-top: 1px;
}

@media (max-width: 900px) {
  .feature-block {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 50px 0;
  }
  .feature-block--reverse .feature-block__text { order: 1; }
  .feature-block--reverse .feature-block__visual { order: 2; }
}

/* Voice card */
.voice-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-2);
}
.voice-card__head {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--text-3);
  margin-bottom: 22px;
}
.voice-card__pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(52,211,153,0.20);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}
.voice-bars {
  display: flex; align-items: flex-end; gap: 4px;
  height: 100px;
  margin-bottom: 24px;
  padding: 0 4px;
}
.voice-bars i {
  flex: 1;
  background: linear-gradient(180deg, var(--accent), var(--accent-dim));
  border-radius: 3px 3px 0 0;
  min-height: 12px;
  animation: voice-pulse 1.8s ease-in-out infinite;
}
.voice-bars i:nth-child(2n) { animation-delay: 0.2s; }
.voice-bars i:nth-child(3n) { animation-delay: 0.4s; }
.voice-bars i:nth-child(5n) { animation-delay: 0.6s; }
@keyframes voice-pulse {
  0%,100% { transform: scaleY(1); }
  50% { transform: scaleY(0.65); }
}
.voice-card__rows { display: flex; flex-direction: column; gap: 10px; padding-top: 18px; border-top: 1px solid var(--border); }
.voice-card__rows > div {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px;
}
.voice-card__rows span { color: var(--text-3); }
.voice-card__rows strong { color: var(--text-1); font-weight: 600; font-size: 13px; }

/* Mode toggle card */
.mode-toggle-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-2);
}
.mode-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 8px;
  transition: background 0.15s, border-color 0.15s;
}
.mode-row--active {
  background: var(--accent-dim);
  border-color: var(--accent-soft);
}
.mode-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.mode-row--active .mode-icon { background: var(--accent); color: #fff; }
.mode-row strong { display: block; font-size: 14px; font-weight: 700; color: var(--text-1); margin-bottom: 1px; }
.mode-row span:not(.mode-icon):not(.mode-pill) { font-size: 12.5px; color: var(--text-3); }
.mode-pill {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 9px;
  border-radius: 100px;
  background: var(--bg-2);
  color: var(--text-3);
  white-space: nowrap;
}
.mode-pill.green { background: rgba(52,211,153,0.16); color: var(--green); }
.mode-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding-top: 16px;
  margin-top: 12px;
  border-top: 1px solid var(--border);
}
.mode-stats > div { display: flex; flex-direction: column; align-items: center; }
.mode-stats strong { font-size: 22px; font-weight: 800; color: var(--text-1); font-family: var(--mono); letter-spacing: -0.02em; }
.mode-stats span { font-size: 11.5px; color: var(--text-3); }

/* Health card */
.health-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-2);
}
.health-card__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
}
.health-card__head strong { font-size: 16px; font-weight: 700; }
.hot-badge {
  font-family: var(--mono);
  font-size: 11.5px; font-weight: 600;
  background: var(--amber-dim);
  color: var(--amber);
  border: 1px solid rgba(245,158,11,0.32);
  padding: 4px 10px;
  border-radius: 100px;
}
.health-bar {
  position: relative;
  height: 14px;
  background: var(--bg-2);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 22px;
}
.health-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--amber), #ef4444);
  border-radius: 100px;
}
.health-bar__val {
  position: absolute;
  right: 12px; top: 50%; transform: translateY(-50%);
  font-family: var(--mono);
  font-size: 11px; font-weight: 700;
  color: var(--text-1);
  z-index: 2;
  background: rgba(255,255,255,0.18);
  padding: 1px 7px;
  border-radius: 100px;
}
html[data-theme="light"] .health-bar__val { background: rgba(255,255,255,0.55); }
.health-bar__val small { font-weight: 500; opacity: 0.7; }

.health-signals { display: flex; flex-direction: column; gap: 9px; }
.signal {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: var(--text-2);
  padding: 10px 12px;
  background: var(--bg-2);
  border-radius: 8px;
}
.signal__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--text-3);
  flex-shrink: 0;
}
.signal--hot { color: var(--text-1); font-weight: 500; background: rgba(239,68,68,0.08); }
.signal--hot .signal__dot { background: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.18); }

/* Use cases */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.usecase {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.2s;
}
.usecase:hover { border-color: var(--accent-soft); transform: translateY(-2px); }
.usecase__num {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-soft);
  padding: 4px 9px;
  border-radius: 6px;
  margin-bottom: 16px;
}
.usecase h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  color: var(--text-1);
}
.usecase p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
}
@media (max-width: 900px) {
  .usecase-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .usecase-grid { grid-template-columns: 1fr; }
}

/* Conv detail (used on inbox-ia mockup) */
.conv-detail {
  margin-top: 16px;
  padding: 18px;
  background: var(--bg-2);
  border-radius: 12px;
  display: flex; flex-direction: column; gap: 12px;
}
.conv-detail__msg {
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13.5px;
  line-height: 1.5;
  max-width: 80%;
}
.conv-detail__msg--in {
  background: var(--surface);
  color: var(--text-1);
  border: 1px solid var(--border);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.conv-detail__msg--out {
  background: var(--accent);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  position: relative;
  padding-bottom: 14px;
}
.ai-tag {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.18);
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ============================================================
   CAMPAGNES specific
   ============================================================ */
.seq-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-2);
}
.seq-step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: var(--bg-2);
  border-radius: 10px;
  margin-bottom: 8px;
  position: relative;
}
.seq-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 26px; bottom: -8px;
  width: 1px; height: 8px;
  background: var(--border);
}
.seq-step__num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
}
.seq-step__body strong { display: block; font-size: 13.5px; color: var(--text-1); margin-bottom: 1px; font-weight: 600; }
.seq-step__body span { font-size: 12px; color: var(--text-3); }
.seq-step__delay {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
  padding: 3px 8px;
  background: var(--surface);
  border-radius: 100px;
  border: 1px solid var(--border);
}

.target-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-2);
}
.target-card__head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.target-card__head strong {
  font-size: 13px;
  font-family: var(--mono);
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.target-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 13.5px;
}
.target-row:last-child { border-bottom: none; }
.target-row span:first-child { color: var(--text-3); }
.target-row strong { color: var(--text-1); font-weight: 600; }
.target-result {
  margin-top: 14px;
  padding: 14px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-soft);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: space-between;
}
.target-result span { font-size: 13px; color: var(--text-1); }
.target-result strong { font-family: var(--mono); font-size: 22px; font-weight: 800; color: var(--accent); letter-spacing: -0.02em; }

.business-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-2);
}
.business-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 8px;
}
.business-row__icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.business-row strong { display: block; font-size: 13.5px; color: var(--text-1); font-weight: 600; }
.business-row span { font-size: 12px; color: var(--text-3); }
.business-row .mac-pill { font-family: var(--mono); font-size: 10.5px; padding: 3px 8px; }
.business-row .mac-pill.green { background: rgba(52,211,153,0.16); color: var(--green); }

/* ============================================================
   PRICING specific
   ============================================================ */
.pricing-hero {
  padding: 130px 0 60px;
  text-align: center;
  background: var(--bg-1);
}
.pricing-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
  font-weight: 800;
}
.pricing-hero p {
  font-size: 17px;
  color: var(--text-2);
  max-width: 620px;
  margin: 0 auto 30px;
  line-height: 1.55;
}

/* Comparison table */
.pricing-compare {
  margin-top: 90px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.pricing-compare__head {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.pricing-compare__head > div {
  padding: 18px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-1);
  text-align: center;
  border-right: 1px solid var(--border);
}
.pricing-compare__head > div:first-child { text-align: left; color: var(--text-3); font-family: var(--mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.06em; }
.pricing-compare__head > div:last-child { border-right: none; }
.pricing-compare__head .pop {
  background: var(--accent-dim);
  color: var(--accent);
  position: relative;
}
.pricing-compare__row {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}
.pricing-compare__row:last-child { border-bottom: none; }
.pricing-compare__row > div {
  padding: 16px;
  font-size: 13.5px;
  text-align: center;
  border-right: 1px solid var(--border);
  color: var(--text-2);
  display: flex; align-items: center; justify-content: center;
}
.pricing-compare__row > div:first-child { text-align: left; justify-content: flex-start; color: var(--text-1); font-weight: 500; }
.pricing-compare__row > div:last-child { border-right: none; }
.pricing-compare__row > div.pop { background: rgba(91,110,248,0.04); }
.pricing-compare__row .yes { color: var(--accent); font-weight: 700; }
.pricing-compare__row .no { color: var(--text-4); }
.pricing-compare__group {
  background: var(--bg-2);
  padding: 12px 16px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 900px) {
  .pricing-compare { display: none; }
  .pricing-compare-mobile-msg {
    display: block;
    margin-top: 60px;
    padding: 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--text-3);
    font-size: 14px;
  }
}
.pricing-compare-mobile-msg { display: none; }

/* Pricing FAQ */
.pricing-faq {
  margin-top: 80px;
  max-width: 820px;
  margin-left: auto; margin-right: auto;
}

/* Final cta button row */
.final-cta__btns {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}
