/* Base reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FAFAFA;
  --bg-dark: #0F0F1A;
  --fg: #1A1A2E;
  --fg-muted: #6B6B80;
  --accent: #F5A623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --surface: #FFFFFF;
  --border: rgba(26, 26, 46, 0.1);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 250, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
  padding-left: 12px;
  border-left: 1px solid var(--border);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 40px 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--fg);
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 0;
}
.hero-stat {
  font-size: 14px;
  color: var(--fg);
  font-weight: 600;
  padding: 8px 16px;
  background: var(--accent-dim);
  border-radius: 4px;
  border-left: 3px solid var(--accent);
}
.hero-stat strong {
  color: var(--accent);
}

/* Resume Card */
.hero-card-wrap {
  display: flex;
  justify-content: center;
}
.resume-card {
  background: var(--surface);
  border-radius: 12px;
  padding: 28px 28px 20px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 60px rgba(26,26,46,0.12), 0 4px 12px rgba(26,26,46,0.06);
  border: 1px solid var(--border);
  position: relative;
}
.resume-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #F7D12E);
  border-radius: 0 0 4px 4px;
}
.resume-card-top {
  margin-bottom: 20px;
}
.resume-name-block {
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
}
.resume-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.resume-title {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 2px;
  font-weight: 500;
}
.resume-location {
  font-size: 11px;
  color: var(--fg-muted);
  margin-top: 2px;
}
.resume-section {
  margin-bottom: 16px;
}
.resume-section-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.resume-job { margin-bottom: 10px; }
.resume-job-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.resume-ats-score {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
}
.ats-pass { background: #E8F7E8; color: #2A7A2A; }
.resume-job-company {
  font-size: 11px;
  color: var(--fg-muted);
  margin: 2px 0 6px;
}
.bullet {
  font-size: 11.5px;
  color: var(--fg);
  line-height: 1.5;
  padding-left: 10px;
  position: relative;
  margin-bottom: 4px;
}
.bullet::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--fg-muted);
}
.keyword-active { color: #1A5A8A; font-weight: 500; }
.keyword-active::before { background: var(--accent); }
.ats-bar-wrap { margin-top: 14px; }
.ats-bar-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--fg-muted);
  margin-bottom: 5px;
}
.ats-bar {
  height: 5px;
  background: #E8E8EE;
  border-radius: 3px;
  overflow: hidden;
}
.ats-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #F7D12E);
  border-radius: 3px;
}

/* Proof / Stats */
.proof {
  background: var(--fg);
  color: #fff;
  padding: 64px 40px;
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
}
.proof-stat {
  padding: 0 48px;
  text-align: center;
}
.proof-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 10px;
}
.proof-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.proof-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.12);
}

/* Process */
.process { padding: 100px 40px; background: var(--bg); }
.process-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 64px;
  max-width: 560px;
}
.process-steps {
  display: grid;
  grid-template-columns: auto 60px auto 60px auto;
  align-items: start;
  gap: 0;
}
.step { max-width: 280px; }
.step-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--fg-muted);
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.step-icon { margin-bottom: 16px; }
.step-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
  line-height: 1.3;
}
.step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.step-connector {
  display: flex;
  align-items: center;
  padding-top: 40px;
}

/* Pricing Tiers */
.tiers { padding: 100px 40px; background: var(--bg-dark); color: #fff; }
.tiers-inner { max-width: 1200px; margin: 0 auto; }
.tiers .section-label { color: var(--accent); }
.tiers .section-heading { color: #fff; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.pricing-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 32px 28px;
  transition: transform 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card-featured {
  background: rgba(245,166,35,0.1);
  border-color: rgba(245,166,35,0.3);
}
.pricing-tier-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-badge {
  font-size: 10px;
  font-weight: 600;
  background: var(--accent);
  color: var(--fg);
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1;
}
.pricing-tag {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.pricing-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 20px 0;
}
.pricing-features { list-style: none; }
.pricing-feat {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}
.pricing-feat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='6' cy='6' r='6' fill='%23F5A623' fill-opacity='0.3'/%3E%3Cpath d='M3.5 6l2 2 3-3' stroke='%23F5A623' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
}
.pricing-feat-muted { color: rgba(255,255,255,0.35); }
.pricing-feat-muted::before {
  background: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='6' cy='6' r='6' fill='rgba(255,255,255,0.1)'/%3E%3Cpath d='M4 6l1.5 1.5L8 4' stroke='rgba(255,255,255,0.25)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
}
.pricing-note {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 16px;
  line-height: 1.5;
}
.pricing-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  padding: 16px;
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 8px;
  background: rgba(245,166,35,0.05);
}

/* Manifesto */
.manifesto {
  padding: 100px 40px;
  background: var(--bg);
  position: relative;
}
.manifesto::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-quote-mark {
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--accent);
  opacity: 0.3;
  line-height: 0.5;
  margin-bottom: 32px;
}
.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  font-style: italic;
  color: var(--fg);
  line-height: 1.4;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
}
.manifesto-sub {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  padding: 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-legal {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* Checkout Modal */
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.checkout-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 26, 0.7);
  backdrop-filter: blur(4px);
}
.checkout-modal-box {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--surface);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 24px 80px rgba(15, 15, 26, 0.25);
  border: 1px solid var(--border);
}
.checkout-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.checkout-modal-close:hover {
  background: var(--accent-dim);
  color: var(--accent);
}
.checkout-modal-header {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.checkout-modal-tier-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.checkout-modal-price {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -2px;
  line-height: 1;
}
.checkout-modal-subtitle {
  font-size: 14px;
  color: var(--fg-muted);
  margin-top: 8px;
}
.form-hint-inline {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 400;
}

/* Mobile */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding-top: 120px; }
  .proof-inner { grid-template-columns: 1fr; gap: 40px; }
  .proof-divider { display: none; }
  .proof-stat { padding: 0; }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .step-connector { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .nav-inner { padding: 14px 20px; }
  .hero { padding-left: 20px; padding-right: 20px; }
  .process, .tiers, .manifesto { padding-left: 20px; padding-right: 20px; }
  .proof { padding: 48px 20px; }
  .footer { padding: 32px 20px; }
}

/* Form Styles */
.form-section {
  min-height: 100vh;
  padding: 120px 40px 80px;
  background: var(--bg);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.form-container {
  width: 100%;
  max-width: 600px;
  background: var(--surface);
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(26,26,46,0.08), 0 4px 12px rgba(26,26,46,0.04);
  border: 1px solid var(--border);
}
.form-container-sm {
  max-width: 480px;
  text-align: center;
}
.form-header {
  margin-bottom: 32px;
}
.form-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.form-subtitle {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.form-error {
  background: rgba(196, 68, 68, 0.1);
  border: 1px solid rgba(196, 68, 68, 0.2);
  border-radius: 8px;
  padding: 14px 18px;
  color: #C44;
  font-size: 14px;
  margin-bottom: 24px;
}
.form-success {
  background: rgba(42, 122, 42, 0.1);
  border: 1px solid rgba(42, 122, 42, 0.2);
  border-radius: 8px;
  padding: 14px 18px;
  color: #2A7A2A;
  font-size: 14px;
  margin-bottom: 24px;
}
.order-form { }
.form-group {
  margin-bottom: 24px;
}
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--fg-muted);
  opacity: 0.7;
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-hint {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 6px;
  line-height: 1.5;
}
.file-input-wrapper {
  position: relative;
}
.form-file-input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.file-input-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 32px 24px;
  background: var(--bg);
  border: 2px dashed var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-align: center;
}
.file-input-label:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.file-input-icon {
  color: var(--fg-muted);
}
.file-input-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
}
.file-input-formats {
  font-size: 12px;
  color: var(--fg-muted);
}
.form-actions {
  margin-top: 32px;
}
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--accent);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.3);
}
.form-submit:active {
  transform: translateY(0);
}
.form-footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.form-footer p {
  font-size: 13px;
  color: var(--fg-muted);
}

/* Thanks page */
.thanks-icon {
  margin-bottom: 24px;
}
.thanks-details {
  margin: 32px 0;
  text-align: left;
}
.thanks-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.thanks-detail-item:last-child {
  border-bottom: none;
}
.thanks-detail-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 8px;
  color: var(--accent);
  flex-shrink: 0;
}
.thanks-detail-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.thanks-detail-text strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}
.thanks-detail-text span {
  font-size: 13px;
  color: var(--fg-muted);
}
.thanks-cta {
  margin-top: 32px;
}
.thanks-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  display: inline-block;
  transition: background 0.2s;
}
.thanks-link:hover {
  background: var(--accent-dim);
}

/* Revision form */
.revision-summary {
  background: var(--bg);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
}
.revision-order-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.revision-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}
.revision-status {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ats-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}
.ats-pass { background: #E8F7E8; color: #2A7A2A; }
.ats-review { background: rgba(245,166,35,0.15); color: #B3860A; }
.status-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: capitalize;
}
.status-pending { background: rgba(107,107,128,0.1); color: var(--fg-muted); }
.status-rewriting { background: rgba(245,166,35,0.15); color: #B3860A; }
.status-delivered { background: #E8F7E8; color: #2A7A2A; }
.status-revision_pending { background: rgba(26,90,138,0.1); color: #1A5A8A; }
.status-completed { background: rgba(42,122,42,0.1); color: #2A7A2A; }

@media (max-width: 600px) {
  .form-section { padding: 100px 20px 60px; }
  .form-container { padding: 32px 24px; }
  .form-title { font-size: 26px; }
  .revision-order-info { flex-direction: column; align-items: flex-start; }
}