/* ═══════════ Portfolio Service — Sales Page ═══════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #ffffff;
  --bg-alt: #f6f7fb;
  --text: #111827;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;
  --accent: #4f46e5;
  --accent-hover: #4338ca;
  --cta: #059669;
  --cta-hover: #047857;
  --border: #e5e7eb;
  --radius: 16px;
  --max-width: 1100px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { line-height: 1.2; font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 4vw, 2.3rem); text-align: center; margin-bottom: 14px; }
.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }

/* ───────── NAV ───────── */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.brand { font-weight: 900; font-size: 1.25rem; letter-spacing: -0.02em; }
.brand-accent { color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.currency { display: flex; align-items: center; gap: 6px; }
.currency-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; margin-right: 2px; }
.curr-btn {
  background: #fff; border: 1px solid var(--border); border-radius: 8px;
  padding: 6px 10px; font-size: 0.78rem; font-weight: 600; color: var(--text-secondary);
  cursor: pointer; font-family: var(--font); transition: all 0.15s;
}
.curr-btn:hover { border-color: var(--accent); color: var(--accent); }
.curr-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ───────── HERO ───────── */
.hero { text-align: center; padding: 96px 24px 72px; background: radial-gradient(ellipse at 50% 0%, rgba(79,70,229,0.08), transparent 55%), #fff; }
.eyebrow { display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.hero h1 { font-size: clamp(2.2rem, 5.5vw, 3.4rem); max-width: 820px; margin: 0 auto 18px; }
.hl { color: var(--accent); }
.hero-sub { font-size: 1.15rem; color: var(--text-secondary); max-width: 640px; margin: 0 auto 30px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-block; padding: 15px 34px; border-radius: 12px;
  background: var(--cta); color: #fff; font-weight: 700; font-size: 1rem;
  transition: all 0.2s; box-shadow: 0 6px 18px rgba(5,150,105,0.28);
}
.btn-primary:hover { background: var(--cta-hover); transform: translateY(-1px); }
.btn-ghost { display: inline-block; padding: 15px 34px; border-radius: 12px; border: 1px solid var(--border); font-weight: 700; font-size: 1rem; color: var(--text); transition: all 0.2s; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.hero-proof { margin-top: 28px; display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; color: var(--text-muted); font-size: 0.88rem; font-weight: 500; }

/* ───────── PROBLEM ───────── */
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 30px; }
.pain-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.pain-emoji { font-size: 2rem; margin-bottom: 12px; }
.pain-quote { font-weight: 700; font-size: 1.02rem; margin-bottom: 8px; color: var(--text); }
.pain-expand { font-size: 0.92rem; color: var(--text-secondary); }

/* ───────── HOW IT WORKS ───────── */
.steps { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; margin-top: 30px; }
.step { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; flex: 1; min-width: 220px; max-width: 280px; text-align: center; }
.step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: #fff; font-weight: 800; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--text-secondary); }
.step-arrow { font-size: 1.5rem; color: var(--accent); font-weight: 700; }

/* ───────── BENEFITS ───────── */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 30px; }
.benefit { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.benefit h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--accent); }
.benefit p { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 12px; }
.benefit .proof { font-size: 0.85rem; color: var(--cta); font-weight: 600; }

/* ───────── PRICING ───────── */
.pricing-sub { text-align: center; color: var(--text-secondary); margin-bottom: 34px; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; max-width: 960px; margin: 0 auto; }
.price-card { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; }
.price-card.featured { border: 2px solid var(--accent); box-shadow: 0 14px 34px rgba(79,70,229,0.14); }
.badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 4px 14px; border-radius: 20px; }
.price-card h3 { font-size: 1.25rem; margin-bottom: 4px; }
.price-tagline { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }
.price { font-size: 2.8rem; font-weight: 900; letter-spacing: -0.02em; margin-bottom: 20px; color: var(--text); }
.curr-sym { font-size: 1.4rem; vertical-align: super; margin-right: 2px; }
.price-card ul { list-style: none; margin-bottom: 24px; flex: 1; }
.price-card li { font-size: 0.9rem; color: var(--text-secondary); padding: 5px 0; }
.btn-price {
  display: block; text-align: center; padding: 14px; border-radius: 12px;
  border: 1px solid var(--border); font-weight: 700; font-size: 0.95rem;
  color: var(--text); transition: all 0.2s;
}
.btn-price:hover { border-color: var(--accent); color: var(--accent); }
.btn-price-main { background: var(--cta); border-color: var(--cta); color: #fff; }
.btn-price-main:hover { background: var(--cta-hover); border-color: var(--cta-hover); color: #fff; }
.paypal-container { margin-top: 12px; min-height: 42px; }
.pricing-note { text-align: center; color: var(--text-secondary); margin-top: 28px; font-size: 0.95rem; }

/* ───────── SOCIAL PROOF ───────── */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin: 30px 0; }
.testimonials blockquote { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; border-left: 4px solid var(--accent); }
.testimonials p { font-style: italic; color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 10px; }
.testimonials cite { font-style: normal; color: var(--text-muted); font-size: 0.85rem; }
.trust-bar { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; text-align: center; }
.trust-bar span { font-size: 0.9rem; color: var(--text-secondary); }
.trust-bar strong { display: block; font-size: 1.5rem; color: var(--accent); font-weight: 800; }

/* ───────── FAQ ───────── */
.faq { max-width: 720px; margin: 30px auto 0; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 26px; margin-bottom: 14px; }
.faq-item h3 { font-size: 1rem; margin-bottom: 8px; }
.faq-item p { font-size: 0.92rem; color: var(--text-secondary); }

/* ───────── FINAL CTA ───────── */
.cta-section { text-align: center; background: linear-gradient(160deg, #4f46e5, #4338ca); color: #fff; }
.cta-section h2 { color: #fff; }
.cta-section p { color: rgba(255,255,255,0.9); margin-bottom: 28px; font-size: 1.1rem; }
.btn-large { font-size: 1.1rem; padding: 18px 44px; }
.cta-micro { margin-top: 22px; display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; font-size: 0.9rem; color: rgba(255,255,255,0.9); }

/* ───────── FOOTER ───────── */
.footer { text-align: center; padding: 28px 24px; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 0.85rem; }

/* ───────── ORDER FORM ───────── */
.form-sub { text-align: center; color: var(--text-secondary); margin-bottom: 30px; }
.order-form { max-width: 560px; margin: 0 auto; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; box-shadow: 0 8px 24px rgba(0,0,0,0.05); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px;
  font-family: var(--font); font-size: 0.95rem; color: var(--text); background: #fff;
  transition: border-color 0.15s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group textarea { resize: vertical; }
.order-form .btn-large { width: 100%; text-align: center; border: none; cursor: pointer; }
.form-note { text-align: center; margin-top: 14px; font-size: 0.82rem; color: var(--text-muted); }

/* ───────── RESPONSIVE ───────── */
@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .hero { padding: 70px 20px 50px; }
  .currency { flex-wrap: wrap; justify-content: center; }
  .currency-label { width: 100%; text-align: center; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .step { max-width: none; width: 100%; }
  .form-row { grid-template-columns: 1fr; }
}
