/* ==========================================================
   Ryse — Page Design System
   /public/assets/css/ryse.css
   ========================================================== */

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

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

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

/* ----------------------------------------------------------
   Tokens
   ---------------------------------------------------------- */
:root {
  --ryse-red:        #e8192c;
  --ryse-red-dk:     #c01020;
  --ryse-red-bg:     #fff5f6;
  --ryse-red-lt:     #fde8ea;
  --ryse-charcoal:   #404040;
  --ryse-blue:       #001afe;
  --ryse-text-muted: #666;
  --ryse-border:     rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

/* ----------------------------------------------------------
   "Who Ryse serves" cards (5-up strip)
   ---------------------------------------------------------- */
.ryse-serves-section {
  background: #f7f7f7;
}

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

.ryse-serves-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 20px 18px;
}

.ryse-serves-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ryse-charcoal);
  margin: 0 0 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--ryse-red);
  display: block;
  line-height: 1.4;
  min-height: 2.8em;
}

.ryse-serves-body {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 8px 0 0;
}

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

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

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

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

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

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

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

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

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

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

.ryse-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;
}

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

.ryse-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(--ryse-charcoal);
}

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

.ryse-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;
}

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

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

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

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

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

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

.ryse-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);
}

.ryse-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;
}

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

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

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

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

.ryse-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;
}

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

.ryse-comp-ryse {
  background: var(--ryse-red-bg);
}

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

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

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

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

/* ----------------------------------------------------------
   Simple comparison table (in serves section)
   ---------------------------------------------------------- */
.ryse-simple-table {
  border-radius: 10px;
  overflow: hidden;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  border: 1px solid rgba(0,0,0,0.15) !important;
}

.ryse-simple-highlight {
  background: var(--ryse-red-bg);
  color: var(--ryse-charcoal);
  font-weight: 500;
}

/* ----------------------------------------------------------
   Enrichment-layer callout strip
   ---------------------------------------------------------- */
.ryse-enrich-strip {
  background: #1a1a2e;
  color: #fff;
  border-radius: 12px;
  padding: 32px 40px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.ryse-enrich-strip-icon {
  font-size: 36px;
  color: var(--ryse-red);
  flex-shrink: 0;
}

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

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

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

/* ----------------------------------------------------------
   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 — fix vertical alignment across all three cards */
#pricing .card-description {
  min-height: 120px;
}
#pricing .card .text-muted.text-uppercase.font-size-sm {
  min-height: 22px;
  display: block;
}
#pricing .plan-price {
  min-height: 124px;
  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;
}

/* Discount note */
.ryse-pricing-discounts {
  margin-top: 48px;
  background: #fff5f6;
  border-left: 4px solid var(--ryse-red);
  border-radius: 6px;
  padding: 24px 32px;
}

.ryse-pricing-discounts h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #1a0006;
}

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

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

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

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

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

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

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

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

.ryse-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;
}

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

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

.ryse-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) {
  .ryse-about-col {
    padding: 40px 24px;
  }

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

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

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

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