/* ============================================================
   LUMI LANDING — Checkout Page Styles
   Supplements main css/styles.css
   ============================================================ */

/* ── Hero ───────────────────────────────────────────────────── */
.co-hero {
  position: relative;
  padding: calc(var(--header-height, 80px) + 80px) 0 60px;
  text-align: center;
  overflow: hidden;
}
.co-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(212,175,55,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.co-hero-inner { position: relative; max-width: 640px; margin: 0 auto; }

.co-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  color: var(--color-gold, #D4AF37);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.co-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--color-white, #fff);
  line-height: 1.2;
  margin-bottom: 16px;
}

.co-subtitle {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--color-gray, #888);
  line-height: 1.65;
}

/* ── Pricing Cards ──────────────────────────────────────────── */
.co-pricing { padding: 16px 0 80px; }

.co-cards-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 880px;
  margin: 0 auto 60px;
}

.co-card {
  position: relative;
  background: rgba(212,175,55,0.04);
  border: 1.5px solid rgba(212,175,55,0.2);
  border-radius: 20px;
  padding: 44px 36px 36px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.co-card:hover {
  border-color: rgba(212,175,55,0.38);
}
.co-card--featured {
  border-color: var(--color-gold, #D4AF37);
  background: rgba(212,175,55,0.07);
  box-shadow: 0 0 56px rgba(212,175,55,0.16);
}

.co-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #F5D77A, #D4AF37);
  color: #050505;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 22px;
  border-radius: 100px;
  white-space: nowrap;
}

.co-card-plan {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold, #D4AF37);
  margin-bottom: 20px;
}

.co-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
}
.co-card-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--color-white, #fff);
  line-height: 1;
}
.co-card-period {
  font-size: 15px;
  color: var(--color-gray, #888);
  font-weight: 500;
}

.co-card-desc {
  font-size: 14px;
  color: var(--color-gray, #888);
  line-height: 1.6;
  margin-bottom: 28px;
  flex-shrink: 0;
}

.co-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}
.co-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.45;
}
.co-features li::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  background: var(--color-gold, #D4AF37);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23050505' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.co-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  border: 1.5px solid rgba(212,175,55,0.45);
  color: var(--color-gold, #D4AF37);
  background: transparent;
  margin-bottom: 16px;
  cursor: pointer;
}
.co-card-btn:hover {
  transform: translateY(-2px);
  border-color: var(--color-gold, #D4AF37);
  box-shadow: 0 8px 24px rgba(212,175,55,0.14);
}
.co-card-btn--featured {
  background: linear-gradient(135deg, #F5D77A 0%, #D4AF37 50%, #9A6B18 100%);
  color: #050505;
  border-color: transparent;
  box-shadow: 0 6px 28px rgba(212,175,55,0.28);
}
.co-card-btn--featured:hover {
  box-shadow: 0 12px 40px rgba(212,175,55,0.45);
}

.co-card-guarantee {
  font-size: 11px;
  color: rgba(136,136,136,0.6);
  text-align: center;
  line-height: 1.5;
  margin: 0;
}

/* ── Trust Row ──────────────────────────────────────────────── */
.co-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  padding: 28px 0 0;
  border-top: 1px solid rgba(212,175,55,0.08);
  max-width: 880px;
  margin: 0 auto;
}
.co-trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: rgba(136,136,136,0.75);
  font-weight: 500;
}
.co-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-gold, #D4AF37);
  flex-shrink: 0;
}

/* ── FAQ Strip ──────────────────────────────────────────────── */
.co-faq {
  padding: 64px 0 80px;
  border-top: 1px solid rgba(212,175,55,0.07);
}
.co-faq-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  color: var(--color-white, #fff);
  text-align: center;
  margin-bottom: 44px;
}
.co-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
}
.co-faq-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: 14px;
  padding: 24px 26px;
}
.co-faq-q {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white, #fff);
  margin-bottom: 10px;
  line-height: 1.4;
}
.co-faq-a {
  font-size: 14px;
  color: var(--color-gray, #888);
  line-height: 1.7;
  margin: 0;
}

/* ── Footer ─────────────────────────────────────────────────── */
.co-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(212,175,55,0.07);
}
.co-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.co-footer-logo img { height: 36px; width: auto; }
.co-footer-copy {
  font-size: 12px;
  color: rgba(136,136,136,0.5);
}
.co-footer-links {
  display: flex;
  gap: 20px;
}
.co-footer-links a {
  font-size: 12px;
  color: rgba(136,136,136,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.co-footer-links a:hover { color: var(--color-gold, #D4AF37); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .co-cards-wrap { grid-template-columns: 1fr; max-width: 480px; }
  .co-faq-grid   { grid-template-columns: 1fr; }
  .co-card       { padding: 40px 24px 28px; }
  .co-trust      { gap: 20px; }
  .co-footer-inner { flex-direction: column; text-align: center; }
  .co-footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .co-trust { flex-direction: column; align-items: flex-start; padding-left: 8px; }
}
