/* Order Page Styles — extends main styles.css */

.order-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 56px;
  background: linear-gradient(180deg, #07111f 0%, #0a1628 100%);
}

.order-hero-grid {
  position: relative;
  max-width: 900px;
}

.order-hero-copy {
  text-align: center;
}

.order-hero-copy h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  max-width: 15ch;
  margin: 0 auto 24px;
}

.order-hero-copy .lede {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 32px;
}

.price-display {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 42px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-xl);
  margin-top: 24px;
}

.price-amount {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #f7b341, var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-label {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.order-cta-section {
  padding: 96px 0;
}

.order-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.order-copy h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.order-copy p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.order-benefits {
  padding-left: 20px;
  color: var(--text);
  line-height: 1.9;
}

.order-benefits li {
  margin-bottom: 10px;
}

.order-card-inner {
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.14);
  padding: 34px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.order-card-inner h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin: 16px 0;
  letter-spacing: -0.02em;
}

.order-label {
  color: var(--blue-soft);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.order-note {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-1px);
}

.payment-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.payment-security svg {
  color: var(--blue-soft);
}

@media (max-width: 1040px) {
  .order-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .order-hero {
    padding: 56px 0 42px;
  }
  
  .price-display {
    padding: 20px 28px;
  }
  
  .order-card-inner {
    padding: 24px;
  }
}
