/* ============================================
   ORION SCALPER — Minimal Professional Theme
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #ffffff;
  --surface: #f8f8f6;
  --border: #e8e8e4;
  --text: #0a0a0a;
  --muted: #666660;
  --accent: #0a0a0a;
  --accent-light: #f0f0ec;
  --font: 'DM Sans', sans-serif;
  --mono: 'DM Mono', monospace;
  --radius: 10px;
  --max: 1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

/* CONTAINER */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.btn-nav {
  background: var(--text) !important;
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 7px;
  font-size: 13px !important;
  font-weight: 500 !important;
  transition: opacity 0.2s !important;
}

.btn-nav:hover { opacity: 0.8 !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  transition: 0.3s;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  gap: 16px;
  position: fixed;
  top: 60px; left: 0; right: 0;
  z-index: 99;
}

.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 15px; color: var(--muted); }
.mobile-menu .btn-nav { 
  background: var(--text) !important; 
  color: #fff !important; 
  text-align: center;
  padding: 12px !important;
  border-radius: 7px;
}

/* ============ HERO ============ */
.hero {
  padding: 140px 0 96px;
  text-align: center;
}

.hero-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text);
}

.accent {
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--text);
  opacity: 0.15;
}

.hero-sub {
  max-width: 560px;
  margin: 0 auto 36px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-block;
  background: var(--text);
  color: #fff;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.2s, transform 0.15s;
}

.btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--text);
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  border: 1px solid var(--border);
  transition: background 0.2s, border-color 0.2s;
}

.btn-ghost:hover { background: var(--surface); border-color: #ccc; }

.disclaimer-mini {
  font-size: 12px;
  color: #aaa;
  font-family: var(--mono);
}

/* ============ STATS BAR ============ */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 20px 0;
}

.stats-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 48px;
}

.stat-num {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-family: var(--mono);
  margin-top: 2px;
}

.stat-div {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ============ SECTIONS ============ */
.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--surface);
}

.section-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.section h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-sub {
  color: var(--muted);
  font-size: 16px;
  font-weight: 300;
  max-width: 540px;
  margin-bottom: 52px;
  line-height: 1.7;
}

/* ============ FEATURES GRID ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.feature-card {
  background: var(--bg);
  padding: 36px 32px;
  transition: background 0.2s;
}

.feature-card:hover { background: var(--surface); }

.feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border-radius: 8px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}

.feature-card h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

.center-link {
  margin-top: 28px;
  text-align: center;
}

.center-link a {
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.center-link a:hover { color: var(--text); border-color: var(--text); }

/* ============ STEPS ============ */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 32px 36px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.step:last-child { border-bottom: none; }
.step:hover { background: #fcfcfb; }

.step-num {
  font-family: var(--mono);
  font-size: 12px;
  color: #bbb;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  margin-top: 2px;
  width: 28px;
}

.step-content h4 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.step-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ============ CTA ============ */
.cta-section {
  background: var(--text);
  color: #fff;
}

.cta-inner {
  text-align: center;
}

.cta-section h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255,255,255,0.55);
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 32px;
}

.cta-section .btn-primary {
  background: #fff;
  color: var(--text);
}

.cta-section .btn-primary:hover { opacity: 0.88; }

/* ============ DISCLAIMER ============ */
.disclaimer-section {
  background: #fffff8;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.disclaimer-section p {
  font-size: 12px;
  color: #888;
  line-height: 1.7;
  max-width: 900px;
  font-family: var(--mono);
}

/* ============ FOOTER ============ */
.footer {
  background: #0a0a0a;
  color: #555;
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid #1e1e1e;
}

.footer-brand p {
  font-size: 13px;
  color: #444;
  margin-top: 12px;
  line-height: 1.6;
  font-weight: 300;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-heading {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #444;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 13px;
  color: #555;
  transition: color 0.2s;
}

.footer-col a:hover { color: #aaa; }

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom span {
  font-size: 12px;
  color: #333;
  font-family: var(--mono);
}

/* ============ PAGE INNER ============ */
.page-hero {
  padding: 120px 0 60px;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 16px;
  color: var(--muted);
  font-weight: 300;
  max-width: 500px;
}

.page-content {
  padding: 72px 0;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  border-color: #ccc;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}

.pricing-card.featured {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.plan-name {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 12px;
}

.pricing-card.featured .plan-name { color: rgba(255,255,255,0.5); }

.plan-price {
  font-size: 42px;
  font-weight: 300;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}

.plan-price sup { font-size: 18px; font-weight: 400; }
.plan-period { font-size: 12px; color: var(--muted); font-family: var(--mono); margin-bottom: 24px; }
.pricing-card.featured .plan-period { color: rgba(255,255,255,0.5); }

.plan-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.pricing-card.featured .plan-divider { border-color: #333; }

.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.plan-features li { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 8px; font-weight: 300; }
.pricing-card.featured .plan-features li { color: rgba(255,255,255,0.6); }

.plan-features li::before {
  content: '✓';
  font-size: 11px;
  color: var(--text);
  flex-shrink: 0;
}

.pricing-card.featured .plan-features li::before { color: #fff; }

.plan-cta {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 500;
  transition: 0.2s;
  border: 1px solid var(--border);
  color: var(--text);
  background: var(--bg);
  margin-top: auto;
}

.plan-cta:hover { background: var(--surface); border-color: #bbb; }
.pricing-card.featured .plan-cta { background: #fff; color: var(--text); border-color: #fff; }
.pricing-card.featured .plan-cta:hover { opacity: 0.88; }

/* FAQ */
.faq-list { margin-top: 48px; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 28px;
  text-align: left;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
}

.faq-q:hover { background: var(--surface); }

.faq-q svg { flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 0 28px 24px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

.faq-item.open .faq-a { display: block; }

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
}

.contact-form-wrap { display: flex; flex-direction: column; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label { font-size: 12px; font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); }

.form-group input,
.form-group textarea,
.form-group select {
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 7px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: #aaa; }

.form-group textarea { height: 120px; }

.btn-submit {
  padding: 13px 28px;
  background: var(--text);
  color: #fff;
  border: none;
  border-radius: 7px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
  align-self: flex-start;
}

.btn-submit:hover { opacity: 0.8; }

.contact-info { display: flex; flex-direction: column; gap: 24px; padding-top: 8px; }

.contact-item h4 { font-size: 13px; font-weight: 500; margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 14px; color: var(--muted); font-weight: 300; }

/* LEGAL PAGES */
.legal-content {
  max-width: 700px;
  padding: 72px 0 96px;
}

.legal-content h2 { font-size: 20px; font-weight: 500; margin: 36px 0 12px; letter-spacing: -0.01em; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: 15px; color: var(--muted); line-height: 1.75; font-weight: 300; margin-bottom: 14px; }
.legal-content ul { padding-left: 20px; display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.legal-content li { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 300; }
.legal-content a { color: var(--text); border-bottom: 1px solid var(--border); }

/* ALERT */
.alert {
  padding: 14px 18px;
  border-radius: 7px;
  font-size: 13px;
  margin-bottom: 20px;
  font-family: var(--mono);
}
.alert-success { background: #f0faf4; color: #1a7a45; border: 1px solid #c3e8d4; }
.alert-error { background: #fdf4f4; color: #a33; border: 1px solid #eecfcf; }

/* TRUST GRID */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.trust-item {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  transition: background 0.2s;
}

.trust-item:hover { background: var(--surface); }

.trust-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border-radius: 7px;
  border: 1px solid var(--border);
  margin-bottom: 14px;
}

.trust-item h4 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.trust-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

@media (max-width: 900px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* ============ END OF FILE ============ */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-inner { gap: 0; }
  .stat { padding: 10px 24px; }
  .stat-div { display: none; }
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 100px 0 72px; }
  .section { padding: 64px 0; }
  .step { flex-direction: column; gap: 8px; padding: 24px; }
}
