/* ==========================================================
   Mrkt — Page Design System
   /public/assets/css/mrkt.css
   ========================================================== */

/* ----------------------------------------------------------
   Page-level section spacing
   ---------------------------------------------------------- */
.mrkt-page section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.mrkt-page section.bg-light {
  padding-top: 56px;
  padding-bottom: 56px;
}

.mrkt-page .mrkt-comp-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

/* ----------------------------------------------------------
   Tokens
   ---------------------------------------------------------- */
:root {
  --mrkt-cyan:       #2BCEFF;
  --mrkt-cyan-dk:    #0b7a9c;
  --mrkt-cyan-dkk:   #0a4f63;
  --mrkt-cyan-lt:    #e0f9ff;
  --mrkt-text-muted: #666;
  --mrkt-border:     rgba(0, 0, 0, 0.1);
}

/* ----------------------------------------------------------
   Hero badge & proof metrics
   ---------------------------------------------------------- */
.mrkt-hero-badge {
  display: inline-block;
  background: var(--mrkt-cyan);
  color: var(--mrkt-cyan-dkk);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.mrkt-proof-bar {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--mrkt-border);
  flex-wrap: nowrap;
  align-items: flex-start;
}

@media (max-width: 576px) {
  .mrkt-proof-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .mrkt-proof-divider { display: none; }
}

.mrkt-proof-metric {
  font-size: 22px;
  font-weight: 700;
  color: var(--mrkt-cyan-dk);
  line-height: 1;
}

.mrkt-proof-label {
  font-size: 12px;
  color: var(--mrkt-text-muted);
  line-height: 1.4;
  margin-top: 4px;
}

.mrkt-proof-divider {
  width: 1px;
  background: var(--mrkt-border);
  align-self: stretch;
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   Section label (cyan pill above headings)
   ---------------------------------------------------------- */
.mrkt-section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--mrkt-cyan-dk);
  background: var(--mrkt-cyan-lt);
  border: 1px solid var(--mrkt-cyan);
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* ----------------------------------------------------------
   About / dark section
   ---------------------------------------------------------- */
.mrkt-bg-img {
  min-height: 420px;
  background: url('/assets/images/products/hero_mrkt.svg') center center no-repeat;
  background-size: cover;
  background-color: var(--mrkt-cyan-lt);
}

.mrkt-about-col {
  background: var(--mrkt-cyan-dkk);
  color: #fff;
  padding: 56px 48px;
}

.mrkt-about-col h2 { color: #fff; }
.mrkt-about-col p  { color: rgba(255,255,255,0.82); font-size: 15px; line-height: 1.7; }
.mrkt-about-col strong { color: #fff; }

@media (max-width: 991px) {
  .mrkt-bg-img    { min-height: 280px; }
  .mrkt-about-col { padding: 40px 28px; }
}

/* ----------------------------------------------------------
   Selling environments grid (6 cards)
   ---------------------------------------------------------- */
.mrkt-env-section {
  background: var(--mrkt-cyan-lt);
}

.mrkt-env-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

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

@media (max-width: 480px) {
  .mrkt-env-grid { grid-template-columns: 1fr; }
}

.mrkt-env-card {
  background: #fff;
  border: 1px solid var(--mrkt-border);
  border-top: 3px solid var(--mrkt-cyan);
  border-radius: 0 0 10px 10px;
  padding: 22px 18px;
}

.mrkt-env-icon {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 10px;
}

.mrkt-env-title {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin: 0 0 6px;
}

.mrkt-env-body {
  font-size: 13px;
  color: var(--mrkt-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ----------------------------------------------------------
   Feature cards (mini grid inside feature sections)
   ---------------------------------------------------------- */
.mrkt-feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0 32px;
}

@media (max-width: 576px) {
  .mrkt-feat-grid { grid-template-columns: 1fr; }
}

.mrkt-feat-card {
  background: #f8f9fa;
  border-left: 3px solid var(--mrkt-cyan);
  border-radius: 0 6px 6px 0;
  padding: 14px 16px;
}

.mrkt-feat-card-title {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  margin: 0 0 5px;
}

.mrkt-feat-card-body {
  font-size: 13px;
  color: var(--mrkt-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ----------------------------------------------------------
   Features list with checkmarks
   ---------------------------------------------------------- */
.mrkt-features-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.mrkt-features-list li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

.mrkt-features-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--mrkt-cyan-dk);
  font-weight: 700;
}

/* ----------------------------------------------------------
   Platform cost highlight
   ---------------------------------------------------------- */
.mrkt-cost-callout {
  background: var(--mrkt-cyan-dkk);
  color: #fff;
  border-radius: 10px;
  padding: 22px 28px;
  margin: 28px 0 0;
}

.mrkt-cost-callout p {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.mrkt-cost-callout strong {
  color: var(--mrkt-cyan);
}

/* ----------------------------------------------------------
   Competitive comparison table
   ---------------------------------------------------------- */
.mrkt-comp-section {
  background: #fff;
}

.mrkt-comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.mrkt-comp-table th,
.mrkt-comp-table td {
  padding: 10px 11px;
  border-bottom: 1px solid #f0f0f0;
  text-align: center;
  vertical-align: middle;
}

.mrkt-comp-table th:first-child,
.mrkt-comp-table td:first-child {
  text-align: left;
  font-weight: 400;
  color: #333;
  width: 34%;
}

.mrkt-comp-table thead th {
  font-size: 12px;
  font-weight: 700;
  background: #f8f9fa;
  border-bottom: 2px solid #e0e0e0;
  color: #333;
}

.mrkt-comp-head {
  background: var(--mrkt-cyan-lt) !important;
  color: var(--mrkt-cyan-dk) !important;
}

.mrkt-comp-group td {
  background: #f5f5f5 !important;
  color: #444 !important;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 11px;
  text-align: left !important;
  border-bottom: 1px solid #e0e0e0;
  border-top: 2px solid #e0e0e0;
}

.mrkt-comp-mrkt { background: var(--mrkt-cyan-lt); }

/* Mrkt column is 2nd — give it more room than competitor columns */
.mrkt-comp-table th:nth-child(2),
.mrkt-comp-table td:nth-child(2) {
  width: 17%;
}

.mrkt-comp-check   { color: #22a06b; font-size: 17px; font-weight: 700; }
.mrkt-comp-cross   { color: #bbb;    font-size: 17px; font-weight: 400; }
.mrkt-comp-partial { color: #d97706; font-size: 17px; font-weight: 700; }

.mrkt-comp-note {
  font-size: 12px;
  color: var(--mrkt-text-muted);
  margin-top: 12px;
}

/* ----------------------------------------------------------
   Pricing — big number font (page-scoped, not global)
   ---------------------------------------------------------- */
.mrkt-page .pricing {
  font-size: 70px;
  font-weight: 600;
  position: relative;
  text-align: center;
  padding: 20px 0;
}

.mrkt-page .pricing sup {
  font-size: 24px;
  position: relative;
  top: -30px;
  color: #bdc3c7;
}

.mrkt-page .pricing .pricing_period {
  font-size: 24px;
  color: #bdc3c7;
  font-weight: normal;
}

#pricing .col-12 { display: flex; }
#pricing .card { height: 100%; width: 100%; }
#pricing .card-description { min-height: 120px; }

#pricing .text-muted.text-uppercase.font-size-sm {
  min-height: 22px;
  display: block;
}

#pricing .plan-price {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mrkt-pricing-note {
  background: var(--mrkt-cyan-lt);
  border: 1px solid var(--mrkt-cyan);
  border-radius: 8px;
  padding: 20px 24px;
  margin-top: 32px;
  text-align: center;
}

.mrkt-pricing-note h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--mrkt-cyan-dk);
  margin: 0 0 6px;
}

.mrkt-pricing-note p {
  font-size: 14px;
  color: #444;
  margin: 0;
}

/* ----------------------------------------------------------
   CTA bottom
   ---------------------------------------------------------- */
.mrkt-cta {
  background: var(--mrkt-cyan-dkk);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}

.mrkt-cta h2 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 16px;
}

.mrkt-cta p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 28px;
}

.mrkt-cta .btn-roundeded {
  background: var(--mrkt-cyan);
  color: var(--mrkt-cyan-dkk);
  border: none;
  font-weight: 700;
  margin-right: 12px;
}

.mrkt-cta .btn-roundeded:hover {
  background: #1ab5df;
  color: #fff;
}

.mrkt-cta .btn-outline-light {
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
}

.mrkt-cta .btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
