/* ==========================================================================
   AGENTCARD PRICING & DROPBOX COMPARISON TABLE
   Pixel-perfect replication of Agentcard Cards & Dropbox Comparison Table
   ========================================================================== */

/* Container & Typography */
.agentcard-pricing-wrap {
  margin-top: 10px;
  font-family: var(--bento-font-sans, "General Sans", "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
}

/* ================== 1. AGENTCARD CARDS GRID ================== */
.agentcard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 24px;
}

/* Base Card Style (Minimal border, clean, sharp) */
.agentcard-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 40px 32px 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.03);
}

.agentcard-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.06);
}

/* Card Header */
.agentcard-top-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 14px;
}

.agentcard-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 22px;
}

.agentcard-price-num {
  font-size: clamp(38px, 3.4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #0f172a;
}

.agentcard-price-cycle {
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
}

/* Lead text with bold beginning */
.agentcard-lead {
  font-size: 14px;
  line-height: 1.5;
  color: #334155;
  margin-bottom: 28px;
  min-height: 44px;
}

.agentcard-lead strong {
  font-weight: 700;
  color: #0f172a;
}

/* Checklist */
.agentcard-features {
  list-style: none;
  padding: 0;
  margin: 0 0 34px 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.agentcard-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #334155;
  line-height: 1.4;
}

.agentcard-check-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: #1138d8;
  stroke-width: 2.5;
  margin-top: 1px;
}

/* Action Button */
.agentcard-btn {
  width: 100%;
  padding: 15px 20px;
  background: var(--brand-navy, #00143f);
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.agentcard-btn:hover {
  background: #075dff;
  transform: translateY(-1px);
}

.agentcard-btn:active {
  transform: translateY(0);
}

/* Footnote below button */
.agentcard-footnote {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  text-align: center;
  margin-top: 14px;
  margin-bottom: 0;
}

/* ================== CARD 2: FEATURED (PYME) ================== */
.agentcard-card--featured {
  background: #00143f;
  color: #ffffff;
  border: 1px solid #00143f;
  box-shadow: 0 12px 32px -4px rgba(0, 20, 63, 0.18);
  transform: translateY(-4px);
}

.agentcard-card--featured:hover {
  border-color: #00143f;
  box-shadow: 0 18px 40px -4px rgba(0, 20, 63, 0.22);
  transform: translateY(-6px);
}

.agentcard-card--featured .agentcard-top-tag {
  color: rgba(255, 255, 255, 0.75);
}

.agentcard-card--featured .agentcard-price-num {
  color: #ffffff;
}

.agentcard-card--featured .agentcard-price-cycle {
  color: rgba(255, 255, 255, 0.75);
}

.agentcard-card--featured .agentcard-lead {
  color: rgba(255, 255, 255, 0.9);
}

.agentcard-card--featured .agentcard-lead strong {
  color: #ffffff;
}

.agentcard-card--featured .agentcard-feature-item {
  color: #ffffff;
}

.agentcard-card--featured .agentcard-check-icon {
  stroke: #ffffff;
}

.agentcard-card--featured .agentcard-btn {
  background: #ffffff;
  color: #00143f;
}

.agentcard-card--featured .agentcard-btn:hover {
  background: #f0f4fa;
  color: #00143f;
}

.agentcard-card--featured .agentcard-footnote {
  color: rgba(255, 255, 255, 0.75);
}

/* Cart Selected State */
.agentcard-card.is-selected {
  outline: 3px solid #1138d8;
  outline-offset: 3px;
}

/* ================== TRUST BANNER STRIP ================== */
.agentcard-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 36px 0 54px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
  text-align: center;
}

.agentcard-trust-separator {
  color: #cbd5e1;
  font-weight: 400;
}

/* ================== 2. DROPBOX COMPARISON TABLE ================== */
.dropbox-compare-section {
  margin-top: 50px;
  padding-top: 48px;
  border-top: 1px solid #e2e8f0;
}

.dropbox-compare-header {
  text-align: center;
  margin-bottom: 36px;
}

.dropbox-compare-title {
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin: 0 0 10px 0;
}

.dropbox-compare-sub {
  font-size: 16px;
  color: #64748b;
  margin: 0;
}

/* Table Wrapper for horizontal scroll on mobile */
.dropbox-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 16px -2px rgba(0, 0, 0, 0.04);
}

.dropbox-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  text-align: left;
}

/* Header Row */
.dropbox-table thead th {
  padding: 32px 24px 28px;
  vertical-align: top;
  border-bottom: 2px solid #e2e8f0;
  background: #fafbfc;
}

.dropbox-col-feature-head {
  width: 37%;
}

.dropbox-feature-head-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0 0 4px 0;
}

.dropbox-feature-head-desc {
  font-size: 13px;
  color: #64748b;
  font-weight: 400;
  margin: 0;
}

.dropbox-col-plan-head {
  width: 21%;
  text-align: center;
  border-left: 1px solid #e2e8f0;
}

.dropbox-col-plan-head.is-featured-col {
  background: #f0f4ff;
  border-left: 1px solid #d0dcfe;
  border-right: 1px solid #d0dcfe;
}

.dropbox-plan-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0 0 6px 0;
}

.dropbox-plan-price-text {
  font-size: 13px;
  color: #475569;
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.35;
}

.dropbox-plan-price-text strong {
  font-size: 16px;
  color: #1138d8;
}

/* Pill CTA button in table header */
.dropbox-plan-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #00143f;
  color: #ffffff;
  padding: 9px 20px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.dropbox-plan-cta:hover {
  background: #075dff;
  transform: translateY(-1px);
}

.dropbox-col-plan-head.is-featured-col .dropbox-plan-cta {
  background: #075dff;
}

/* Table Section Divider Row */
.dropbox-row-category td {
  background: #f8fafc;
  padding: 14px 24px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #475569;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

/* Data Rows */
.dropbox-table tbody tr {
  transition: background 0.15s ease;
}

.dropbox-table tbody tr:hover {
  background: #fbfcfe;
}

.dropbox-table tbody td {
  padding: 18px 24px;
  border-bottom: 1px solid #edf2f7;
  font-size: 14px;
  color: #334155;
  vertical-align: middle;
}

.dropbox-table tbody td:not(:first-child) {
  text-align: center;
  border-left: 1px solid #edf2f7;
}

.dropbox-table tbody td.is-featured-cell {
  background: rgba(240, 244, 255, 0.4);
  border-left: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
}

/* Feature Item in Left Column */
.dropbox-feature-name {
  font-size: 14.5px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 3px;
}

.dropbox-feature-subtext {
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.35;
}

/* Checkmark and Cross in Table Cells */
.dropbox-table-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

.dropbox-table-check svg {
  width: 18px;
  height: 18px;
  stroke: #1138d8;
  stroke-width: 2.5;
}

.dropbox-table-val {
  font-weight: 600;
  color: #0f172a;
}

/* ================== RESPONSIVE BREAKPOINTS ================== */
@media (max-width: 980px) {
  .agentcard-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .agentcard-card--featured:hover {
    transform: translateY(-2px);
  }

  .agentcard-card {
    padding: 30px 24px;
  }
}
