/* ── Service Landing Page Extras ── */

.service-price-badge {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.06em;
}

/* Deliverables List */
.deliverables-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.deliverables-list li {
  padding-left: 1.6rem;
  position: relative;
  font-family: 'Lora', Georgia, serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--body, var(--cream));
}

.deliverables-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.65rem;
  top: 0.35em;
}

html.light-mode .deliverables-list li {
  color: var(--body);
}

/* Sample Container */
.sample-container {
  margin: 2.5rem 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.sample-preview {
  position: relative;
  background: var(--paper, #0c0c0c);
  padding: 1.5rem;
  max-height: 220px;
  overflow: hidden;
}

html.light-mode .sample-preview {
  background: var(--paper);
}

.sample-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.sample-text {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--cream);
  white-space: pre-wrap;
  word-break: break-word;
  margin: 0;
}

html.light-mode .sample-text {
  color: var(--body);
}

.sample-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--paper, #0c0c0c));
  pointer-events: none;
}

html.light-mode .sample-fade {
  background: linear-gradient(to bottom, transparent, var(--paper));
}

/* Email Gate */
.sample-gate {
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--card, #111111);
}

html.light-mode .sample-gate {
  background: var(--card);
}

.gate-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  color: var(--text);
  margin: 0 0 0.5rem;
}

html.light-mode .gate-heading {
  color: var(--white);
}

.gate-subtext {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

.gate-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.gate-fields {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.gate-input {
  flex: 1;
  min-width: 200px;
  padding: 0.7rem 1rem;
  background: var(--paper, #0c0c0c);
  border: 1px solid var(--border);
  color: var(--cream);
  font-family: 'Lora', Georgia, serif;
  font-size: 0.9rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}

.gate-input:focus {
  border-color: var(--gold);
}

html.light-mode .gate-input {
  background: var(--paper);
  color: var(--body);
}

.gate-btn {
  padding: 0.7rem 1.4rem;
  background: var(--red);
  color: #fff;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.gate-btn:hover {
  opacity: 0.85;
}

.gate-disclaimer {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
}

.gate-success {
  padding: 1rem 0;
}

.success-msg {
  font-family: 'Lora', Georgia, serif;
  font-size: 1rem;
  color: var(--gold);
  margin: 0;
}

/* Order CTA */
.order-cta {
  margin: 2rem 0;
  padding: 2rem;
  border: 1px solid var(--border);
  text-align: center;
  background: var(--paper, #0c0c0c);
}

html.light-mode .order-cta {
  background: var(--paper);
}

.order-btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: var(--red);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s;
  margin-bottom: 1rem;
}

.order-btn:hover {
  opacity: 0.85;
}

.order-note {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.75rem 0 0;
}

.order-note a {
  color: var(--gold);
  text-decoration: underline;
}

@media (max-width: 600px) {
  .gate-fields {
    flex-direction: column;
  }

  .gate-input,
  .gate-btn {
    width: 100%;
  }

  .order-btn {
    display: block;
    text-align: center;
  }
}
