/* ============================================================
   INTERACTIVE PRICING CARDS — rc-section styles
   Replaces the old dark rate-card-wrapper component.
   Designed to match the Trendtactics dark navy + gold brand.
   ============================================================ */

/* Section container */
.rc-section {
  padding: 32px 0 0;
}

/* ----------------------------------------------------------
   Currency Toggle
---------------------------------------------------------- */
.rc-currency-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.rc-currency-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.04em;
  transition: color 0.25s;
}

.rc-currency-label.active,
.rc-currency-label:first-child {
  color: #0A1E3F;
}

/* Toggle switch */
.rc-toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  cursor: pointer;
}

.rc-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.rc-toggle-slider {
  position: absolute;
  inset: 0;
  background: #0A1E3F;
  border-radius: 28px;
  transition: background 0.3s;
}

.rc-toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 4px;
  top: 4px;
  background: #D4A017;
  border-radius: 50%;
  transition: transform 0.3s;
}

.rc-toggle-switch input:checked + .rc-toggle-slider::before {
  transform: translateX(24px);
}

/* ----------------------------------------------------------
   Section Headers
---------------------------------------------------------- */
.rc-section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 36px 0 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid #D4A017;
}

.rc-section-num {
  font-family: 'Bebas Neue', 'Montserrat', sans-serif;
  font-size: 3.5rem;
  color: rgba(212, 160, 23, 0.18);
  line-height: 1;
  min-width: 56px;
  font-weight: 900;
}

.rc-section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D4A017;
  margin-bottom: 4px;
  font-weight: 600;
}

.rc-section-title {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 800;
  color: #0A1E3F;
  letter-spacing: 0.03em;
}

.rc-section-line {
  flex: 1;
  height: 1px;
  background: rgba(212, 160, 23, 0.2);
  margin-left: 8px;
}

/* ----------------------------------------------------------
   Pricing Cards Grid
---------------------------------------------------------- */
.rc-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
  margin-bottom: 12px;
}

.rc-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.rc-card:hover {
  border-color: #0A1E3F;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10, 30, 63, 0.12);
}

.rc-card-featured {
  border-color: #D4A017;
  border-width: 2px;
  border-top-width: 4px;
  box-shadow: 0 8px 32px rgba(212, 160, 23, 0.18);
}

.rc-card-featured:hover {
  border-color: #D4A017;
  box-shadow: 0 20px 48px rgba(212, 160, 23, 0.25);
}

/* Badge */
.rc-card-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: #D4A017;
  color: #0A1E3F;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 0 0 8px 8px;
}

.rc-card-tier {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D4A017;
  font-weight: 700;
  margin-bottom: 8px;
}

.rc-card-name {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #0A1E3F;
  margin-bottom: 6px;
}

.rc-card-desc {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Price Block */
.rc-price-block {
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 16px 0;
  margin-bottom: 20px;
}

.rc-price-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 6px;
}

.rc-price-amount {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #0A1E3F;
  line-height: 1;
  margin-bottom: 8px;
}

.rc-price-hosting {
  font-size: 0.82rem;
  color: #6b7280;
}

.rc-price-hosting strong {
  color: #0A1E3F;
  font-weight: 700;
}

/* Feature list */
.rc-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.rc-feature-list li {
  font-size: 0.88rem;
  color: #374151;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.rc-feature-list li::before {
  content: '✓';
  color: #D4A017;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.9rem;
}

.rc-feature-list li:first-child::before {
  content: '';
  width: 0;
}

.rc-feature-list li:first-child {
  font-weight: 700;
  color: #0A1E3F;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* CTA Button */
.rc-card-btn {
  display: block;
  background: #0A1E3F;
  color: #ffffff !important;
  text-align: center;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s;
  margin-top: auto;
}

.rc-card-btn:hover {
  background: #D4A017;
  color: #0A1E3F !important;
  transform: translateY(-2px);
}

.rc-card-featured .rc-card-btn {
  background: #D4A017;
  color: #0A1E3F !important;
}

.rc-card-featured .rc-card-btn:hover {
  background: #0A1E3F;
  color: #ffffff !important;
}

/* ----------------------------------------------------------
   Package List (Other Web Packages)
---------------------------------------------------------- */
.rc-package-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
}

.rc-pkg-row {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-radius: 8px;
  transition: border-color 0.25s, background 0.25s;
}

.rc-pkg-row:hover {
  border-color: #D4A017;
  background: #fffdf5;
}

.rc-pkg-name {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0A1E3F;
  margin-bottom: 4px;
}

.rc-pkg-note {
  font-size: 0.82rem;
  color: #6b7280;
  font-style: italic;
}

.rc-pkg-price-wrap {
  text-align: right;
  flex-shrink: 0;
}

.rc-pkg-price {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: #0A1E3F;
}

.rc-pkg-hosting {
  font-size: 0.78rem;
  color: #9ca3af;
  margin-top: 3px;
}

/* ----------------------------------------------------------
   Hosting Box
---------------------------------------------------------- */
.rc-hosting-box {
  background: #0A1E3F;
  border: 2px solid #D4A017;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}

.rc-hosting-title {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.rc-hosting-sub {
  font-size: 0.75rem;
  color: #D4A017;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.rc-hosting-feats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.rc-hosting-feats span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 7px;
}

.rc-hosting-feats span::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #D4A017;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.rc-hosting-price-wrap {
  text-align: right;
}

.rc-hosting-price {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #D4A017;
  line-height: 1;
}

.rc-hosting-price-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* ----------------------------------------------------------
   Note Box
---------------------------------------------------------- */
.rc-note-box {
  background: rgba(212, 160, 23, 0.06);
  border-left: 4px solid #D4A017;
  border-radius: 0 8px 8px 0;
  padding: 24px 28px;
  margin-top: 40px;
  margin-bottom: 48px;
}

.rc-note-box p {
  font-size: 0.88rem;
  color: #6b7280;
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.rc-note-box p:last-child {
  margin-bottom: 0;
}

.rc-note-box p::before {
  content: '▸';
  color: #D4A017;
  position: absolute;
  left: 0;
  font-size: 0.8rem;
  top: 3px;
}

.rc-note-box p strong {
  color: #0A1E3F;
  font-weight: 700;
}

/* ----------------------------------------------------------
   Responsive
---------------------------------------------------------- */
@media (max-width: 768px) {
  .rc-card-grid {
    grid-template-columns: 1fr;
  }

  .rc-pkg-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .rc-pkg-price-wrap {
    text-align: left;
  }

  .rc-hosting-box {
    flex-direction: column;
  }

  .rc-hosting-price-wrap {
    text-align: left;
  }

  .rc-section-header {
    flex-wrap: wrap;
    gap: 12px;
  }

  .rc-section-line {
    display: none;
  }
}

@media (max-width: 480px) {
  .rc-currency-toggle-wrap {
    gap: 12px;
  }

  .rc-card {
    padding: 24px 20px;
  }

  .rc-pkg-row {
    padding: 20px;
  }
}
