/* ── PITCH PAGE ── */

/* Shared nav/footer re-use same class names from theme.css */

/* Hero — pitch page variant */
.pitch-hero {
  padding: 72px 40px 64px;
  position: relative;
  overflow: hidden;
}

.pitch-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(245, 166, 35, 0.025) 40px,
      rgba(245, 166, 35, 0.025) 41px
    );
  pointer-events: none;
}

.pitch-hero-inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.pitch-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pitch-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.pitch-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 20px;
}

.pitch-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 0;
}

/* ── DELIVERABLES ── */
.deliverables {
  padding: 80px 40px;
  border-top: 1px solid var(--border);
}

.deliverables-inner {
  max-width: 960px;
  margin: 0 auto;
}

.deliverable-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--border);
  margin-top: 48px;
}

.deliverable-item {
  background: var(--bg);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 20px;
  align-items: start;
}

.deliverable-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.deliverable-icon svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.deliverable-body h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.deliverable-body p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* ── PRICING CARD ── */
.pitch-pricing {
  padding: 80px 40px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.pitch-pricing-inner {
  max-width: 640px;
  margin: 0 auto;
}

.pitch-pricing .section-label {
  margin-bottom: 16px;
}

.pitch-pricing .section-heading {
  margin-bottom: 0;
}

.pitch-price-card {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 40px;
  background: var(--bg-card);
}

.pitch-price-main {
  padding: 40px 36px;
}

.pitch-price-tag {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.pitch-price-number {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.pitch-price-dollar {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
}

.pitch-price-cents {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--accent);
  letter-spacing: -0.04em;
}

.pitch-price-period {
  font-size: 1rem;
  color: var(--fg-muted);
}

.pitch-price-note {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 4px;
}

.pitch-price-standard {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.pitch-price-standard s {
  color: var(--fg-muted);
  opacity: 0.6;
}

.pitch-urgency {
  font-size: 0.85rem;
  color: var(--fg);
  text-align: center;
}

.pitch-urgency strong {
  color: var(--accent);
}

.pitch-price-divider {
  height: 1px;
  background: var(--border);
}

.pitch-price-setup {
  padding: 28px 36px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.pitch-price-setup-info h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--fg);
  margin-bottom: 4px;
}

.pitch-price-setup-info p {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.pitch-price-setup-amount {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}

.pitch-price-included {
  padding: 24px 36px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}

.pitch-price-included p {
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-align: center;
}

/* ── TIMELINE ── */
.timeline-section {
  padding: 80px 40px;
  border-top: 1px solid var(--border);
}

.timeline-inner {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline-list::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: var(--border-strong);
}

.timeline-week {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  position: relative;
}

.timeline-week:not(:last-child) {
  margin-bottom: 0;
}

.timeline-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding-top: 4px;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 2px solid var(--accent);
  flex-shrink: 0;
  z-index: 1;
}

.timeline-right {
  padding-bottom: 40px;
}

.timeline-week-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.timeline-right h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--fg);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.timeline-right p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 80px 40px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.testimonials-inner {
  max-width: 960px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--bg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-placeholder-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
}

.testimonial-quote {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.65;
  font-style: italic;
}

.testimonial-meta {
  margin-top: auto;
}

.testimonial-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--fg);
  margin-bottom: 4px;
}

.testimonial-result {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
}

/* ── CTA SECTION ── */
.cta-section {
  padding: 96px 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.cta-inner {
  max-width: 560px;
  margin: 0 auto;
}

.cta-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 40px;
}

/* "Or" separator between primary CTA button and secondary form */
.cta-or-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

/* Form */
.pitch-form {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group:last-of-type {
  margin-bottom: 0;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-input {
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}

.form-input::placeholder {
  color: var(--fg-muted);
  opacity: 0.6;
}

.form-input:focus {
  border-color: var(--accent);
}

.form-input.error {
  border-color: #e05555;
}

.form-error {
  font-size: 0.75rem;
  color: #e05555;
  display: none;
}

.form-input.error + .form-error {
  display: block;
}

.form-submit {
  width: 100%;
  padding: 14px 24px;
  background: var(--accent);
  color: #0D0D0F;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: opacity 0.15s, transform 0.1s;
  margin-top: 20px;
}

.form-submit:hover {
  opacity: 0.9;
}

.form-submit:active {
  transform: scale(0.98);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px 0;
}

.form-success.show {
  display: block;
}

.form-success-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(184, 255, 90, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--accent-2);
  font-size: 1.5rem;
}

.form-success h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.form-fields.hidden {
  display: none;
}

/* ── FOOTER ── */
.pitch-footer {
  padding: 40px 40px;
  border-top: 1px solid var(--border);
}

.pitch-footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pitch-footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--fg);
  text-decoration: none;
}

.pitch-footer-tagline {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .pitch-hero {
    padding: 56px 24px 48px;
  }
  .deliverables, .pitch-pricing, .timeline-section, .testimonials, .cta-section {
    padding: 56px 24px;
  }
  .deliverable-item {
    padding: 20px 20px;
    grid-template-columns: 28px 1fr;
    gap: 14px;
  }
  .pitch-price-main, .pitch-price-setup, .pitch-price-included {
    padding: 24px 20px;
  }
  .pitch-price-setup {
    flex-direction: column;
    align-items: flex-start;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .pitch-form {
    padding: 24px 20px;
  }
  .pitch-footer {
    padding: 32px 24px;
  }
  .pitch-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}