/* ==========================================================
   Depot — Page Design System
   /public/assets/css/depot.css
   ========================================================== */

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

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

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

/* ----------------------------------------------------------
   Tokens
   ---------------------------------------------------------- */
:root {
  --depot-orange:     #F86200;
  --depot-orange-dk:  #d45400;
  --depot-orange-bg:  #fff4ec;
  --depot-orange-lt:  #fde9d7;
  --depot-blue:       #323EA7;
  --depot-charcoal:   #404040;
  --depot-text-muted: #666;
  --depot-border:     rgba(0, 0, 0, 0.1);
}

/* ----------------------------------------------------------
   Hero layout — cap image height so it stays above the fold
   ---------------------------------------------------------- */
.hero-image-wrapper {
  display: flex;
  align-items: center;
}

.hero-image-wrapper img {
  max-height: 72vh;
  width: 100%;
  object-fit: contain;
  object-position: center top;
}

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

.depot-proof-bar {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--depot-border);
  flex-wrap: nowrap;
  align-items: flex-start;
}

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

.depot-proof-metric {
  font-size: 21px;
  font-weight: 700;
  color: var(--depot-orange);
  line-height: 1;
}

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

.depot-proof-divider {
  width: 1px;
  background: var(--depot-border);
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   About section (orange column)
   ---------------------------------------------------------- */
.depot-about-col {
  background-color: var(--depot-orange);
  color: #fff;
  padding: 60px 48px;
}

.depot-about-col h2 {
  color: #fff;
}

.depot-about-col p {
  color: rgba(255, 255, 255, 0.88);
}

.depot-about-col .btn-roundeded {
  background: #fff;
  color: var(--depot-orange);
  border-color: #fff;
  font-weight: 600;
}

.depot-about-col .btn-roundeded:hover {
  background: #f0f0f0;
  border-color: #f0f0f0;
}

/* ----------------------------------------------------------
   Section label pill
   ---------------------------------------------------------- */
.depot-section-label {
  display: inline-block;
  background: var(--depot-orange-lt);
  color: #a84200;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* ----------------------------------------------------------
   Five capabilities strip
   ---------------------------------------------------------- */
.depot-capabilities-section {
  background: #f7f7f7;
}

.depot-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.depot-cap-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.depot-cap-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--depot-charcoal);
  margin: 0 0 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--depot-orange);
  display: block;
  line-height: 1.4;
}

.depot-cap-body {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 8px 0 0;
  flex: 1;
}

@media (max-width: 1100px) {
  .depot-capabilities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .depot-capabilities-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ----------------------------------------------------------
   IoT / wide feature grid (3-up)
   ---------------------------------------------------------- */
.depot-iot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.depot-iot-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.depot-iot-icon {
  font-size: 28px;
  color: var(--depot-orange);
  margin-bottom: 14px;
}

.depot-iot-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--depot-charcoal);
  margin: 0 0 8px;
}

.depot-iot-body {
  font-size: 13px;
  color: #666;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

@media (max-width: 992px) {
  .depot-iot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ----------------------------------------------------------
   Org / slotting stat strip
   ---------------------------------------------------------- */
.depot-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
  text-align: center;
}

.depot-stat-item {
  padding: 28px 16px;
  background: var(--depot-orange-bg);
  border-radius: 10px;
  border: 1px solid var(--depot-orange-lt);
}

.depot-stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--depot-orange);
  line-height: 1;
  margin-bottom: 8px;
}

.depot-stat-label {
  font-size: 13px;
  color: var(--depot-charcoal);
  line-height: 1.4;
  font-weight: 500;
}

@media (max-width: 768px) {
  .depot-stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ----------------------------------------------------------
   ML inventory callout section (dark navy background)
   ---------------------------------------------------------- */
.depot-ml-callout {
  background: var(--depot-blue);
  color: #fff;
}

.depot-ml-callout .depot-section-label {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.depot-ml-callout h2,
.depot-ml-callout .depot-section-label {
  color: #fff;
}

.depot-ml-callout .lead {
  color: rgba(255, 255, 255, 0.78);
}

/* Stat strip on dark bg — no boxes, plain inline list */
.depot-ml-callout .depot-stat-strip {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 32px 0;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.depot-ml-callout .depot-stat-item {
  background: none;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  padding: 0 40px;
}

.depot-ml-callout .depot-stat-item:last-child {
  border-right: none;
}

.depot-ml-callout .depot-stat-label {
  color: rgba(255, 255, 255, 0.65);
}

/* Feature items — white cards on navy */
.depot-ml-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.depot-ml-feature-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px 26px;
}

.depot-ml-feature-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--depot-charcoal);
  margin: 0 0 10px;
}

.depot-ml-feature-body {
  font-size: 13.5px;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .depot-ml-callout .depot-stat-strip {
    flex-wrap: wrap;
    gap: 20px;
  }
  .depot-ml-callout .depot-stat-item {
    border-right: none;
    padding: 0 20px;
  }
  .depot-ml-features {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------
   Feature mini-card grids
   ---------------------------------------------------------- */
.depot-feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

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

.depot-feat-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--depot-charcoal);
  margin: 0 0 6px;
}

.depot-feat-card-body {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

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

/* ----------------------------------------------------------
   Deployment modes callout strip
   ---------------------------------------------------------- */
.depot-deploy-strip {
  background: #1a1a2e;
  color: #fff;
  border-radius: 12px;
  padding: 32px 40px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.depot-deploy-strip-icon {
  font-size: 36px;
  color: var(--depot-orange);
  flex-shrink: 0;
}

.depot-deploy-strip-text h4 {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 8px;
}

.depot-deploy-strip-text p {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .depot-deploy-strip {
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    text-align: center;
  }
}

/* ----------------------------------------------------------
   Platform advantage cards
   ---------------------------------------------------------- */
.depot-platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .depot-platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.depot-platform-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}

.depot-platform-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.depot-icon-fa {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--depot-charcoal);
}

.depot-icon-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  margin-bottom: 18px;
}

.depot-icon-img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fafafa;
  padding: 8px;
  object-fit: contain;
}

.depot-icon-plus {
  font-size: 20px;
  color: #ccc;
  line-height: 1;
  align-self: center;
}

.depot-platform-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--depot-charcoal);
  margin: 0 0 8px;
  min-height: 2.8em;
  line-height: 1.4;
}

.depot-platform-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 14px;
  flex: 1;
}

.depot-platform-link {
  margin-top: auto;
  font-size: 13px;
  color: var(--depot-orange);
  text-decoration: none;
  font-weight: 500;
}

.depot-platform-link:hover {
  text-decoration: underline;
  color: var(--depot-orange-dk);
}

/* ----------------------------------------------------------
   Competitive comparison table
   ---------------------------------------------------------- */
.depot-comp-section {
  background: #f8f8f8;
}

.depot-comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.depot-comp-table th {
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
  vertical-align: top;
  line-height: 1.4;
}

.depot-comp-table th:first-child {
  text-align: left;
  width: 30%;
}

.depot-comp-table td {
  padding: 11px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  vertical-align: middle;
  color: #666;
}

.depot-comp-table td:first-child {
  text-align: left;
  color: var(--depot-charcoal);
  font-size: 14px;
}

.depot-comp-table tr:last-child td {
  border-bottom: none;
}

.depot-comp-group td {
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #999 !important;
  background: #f4f4f4;
  padding: 8px 16px !important;
}

.depot-comp-head {
  background: var(--depot-orange) !important;
  color: #fff !important;
  font-weight: 700 !important;
}

.depot-comp-depot {
  background: var(--depot-orange-bg);
}

/* Product column is 2nd — wider than competitor columns */
.depot-comp-table th:nth-child(2),
.depot-comp-table td:nth-child(2) {
  width: 17%;
}

.depot-comp-check {
  color: #3B6D11;
  font-weight: 700;
  font-size: 16px;
}

.depot-comp-cross {
  color: #bbb;
  font-size: 16px;
}

.depot-comp-partial {
  color: #BA7517;
  font-size: 20px;
}

.depot-comp-note {
  font-size: 13px;
  color: #999;
  margin-top: 10px;
  margin-bottom: 0;
}

/* ----------------------------------------------------------
   Pricing cards
   ---------------------------------------------------------- */
.features-list {
  list-style: none;
  padding: 0;
}
.features-list li {
  margin: 10px 0;
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
}
.features-list li:before {
  content: '✔';
  color: #2250fc;
  margin-right: 8px;
  flex-shrink: 0;
}
.features-list-plus {
  list-style: none;
  padding: 0;
  height: auto;
}
.features-list-plus li {
  margin: 10px 0;
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
}
.features-list-plus li:before {
  content: '+';
  color: rgb(4, 168, 69);
  margin-right: 8px;
  flex-shrink: 0;
}
/* Pricing section — min-height covers the tallest description across all three cards */
#pricing .card-description {
  min-height: 130px;
}
#pricing .plan-price {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing {
  font-size: 70px;
  font-weight: 600;
  position: relative;
  text-align: center;
  padding: 20px 0;
}
.pricing .pricing_period {
  font-size: 24px;
  color: #bdc3c7;
  font-weight: normal;
}
.pricing sup {
  font-size: 24px;
  position: relative;
  top: -30px;
  color: #bdc3c7;
}

.depot-pricing-discounts {
  margin-top: 48px;
  background: var(--depot-orange-bg);
  border-left: 4px solid var(--depot-orange);
  border-radius: 6px;
  padding: 24px 32px;
}

.depot-pricing-discounts h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #2a1a00;
}

.depot-pricing-discounts ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 40px;
}

.depot-pricing-discounts ul li {
  font-size: 14px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 8px;
}

.depot-pricing-discounts ul li:before {
  content: '✦';
  color: var(--depot-orange);
  font-size: 10px;
}

/* ----------------------------------------------------------
   CTA section
   ---------------------------------------------------------- */
.depot-cta {
  background: var(--depot-orange);
  color: #fff;
  text-align: center;
}

.depot-cta h2 {
  font-weight: 400;
  color: #fff;
  margin-bottom: 16px;
}

.depot-cta p {
  color: rgba(255, 255, 255, 0.88);
}

.depot-cta .btn-roundeded {
  background: #fff;
  color: var(--depot-orange);
  border-color: #fff;
  font-weight: 600;
  margin: 0 8px 8px;
}

.depot-cta .btn-roundeded:hover {
  background: #f0f0f0;
  border-color: #f0f0f0;
}

.depot-cta .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  border-radius: 30px;
  padding: 10px 28px;
  font-weight: 500;
  margin: 0 8px 8px;
  background: transparent;
}

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

/* ----------------------------------------------------------
   Background image (about section)
   ---------------------------------------------------------- */
.depot-bg-img {
  position: relative;
  min-height: 300px;
  background: url('/assets/images/stock/depot-bg-min.jpg') center center no-repeat;
  background-size: cover;
}

.depot-bg-img::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image: linear-gradient(to bottom right, #000, #333);
  opacity: 0.25;
}

/* ----------------------------------------------------------
   Responsive — general
   ---------------------------------------------------------- */
@media (max-width: 768px) {
  .depot-about-col {
    padding: 40px 24px;
  }

  .depot-platform-card {
    max-width: 100%;
  }

  .depot-proof-bar {
    gap: 16px;
  }

  .depot-proof-metric {
    font-size: 18px;
  }

  .depot-comp-table th,
  .depot-comp-table td {
    padding: 9px 10px;
    font-size: 13px;
  }
}
