/* ══════════════════════════════════════════════
   BDR For Hire — Global Stylesheet (v3 Pivot)
   ══════════════════════════════════════════════ */

:root {
  --bg: #0f1115;
  --bg-card: #161922;
  --bg-card-hover: #1c2030;
  --border: #22263a;
  --border-accent: #2e3557;
  --text: #c8cad3;
  --text-muted: #7a7e8f;
  --text-dim: #555868;
  --accent: #5b6ef7;
  --accent-purple: #7c5bf5;
  --accent-bright: #8b9aff;
  --accent-glow: rgba(91, 110, 247, 0.08);
  --gradient: linear-gradient(135deg, #5b6ef7 0%, #7c5bf5 100%);
  --white: #e8e9ef;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', 'Fira Code', monospace;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--accent-bright); text-decoration: none; transition: color 0.2s; }
a:hover { color: #fff; }

/* ── Grain Overlay ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ── Container ── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ══════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(15, 17, 21, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* CSS Logo */
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 32px; height: 32px;
  background: var(--gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo-text {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo-text span { color: var(--accent); }

/* Nav Links */
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-links a:hover { color: var(--white); }

/* Mobile Menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px;
}

/* ══════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(91, 110, 247, 0.3);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-bright);
}
.btn-lg {
  font-size: 1rem;
  padding: 14px 32px;
}
.btn-stripe {
  background: var(--gradient);
  color: #fff;
  width: 100%;
  justify-content: center;
}
.btn-stripe:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(91, 110, 247, 0.3);
  color: #fff;
}
.btn-linkedin {
  background: #0A66C2;
  color: #fff;
}
.btn-linkedin:hover {
  background: #004182;
  transform: translateY(-1px);
  color: #fff;
}

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero {
  padding: 160px 0 100px;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(91, 110, 247, 0.05) 0%, rgba(124, 91, 245, 0.03) 40%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-bright);
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--white);
  max-width: 740px;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-proof {
  margin-top: 56px;
  display: flex;
  gap: 48px;
}
.proof-stat .num {
  font-family: var(--mono);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.02em;
}
.proof-stat .label {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 4px;
}

/* ══════════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════════ */
section { padding: 80px 0; }
.section-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-bright);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 600px;
  line-height: 1.15;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-top: 16px;
  line-height: 1.65;
}

/* Page Headers (inner pages) */
.page-header {
  padding: 160px 0 60px;
  position: relative;
}
.page-header h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 640px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.65;
}

/* ══════════════════════════════════════════════
   STEPS / CARDS
   ══════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 24px;
  transition: all 0.25s;
}
.step-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-accent);
}
.step-num {
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-bright);
  margin-bottom: 16px;
}
.step-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   FEATURES GRID
   ══════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.feature-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s;
}
.feature-item:hover { border-color: var(--border-accent); }
.feature-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.feature-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ══════════════════════════════════════════════
   ABOUT GRID
   ══════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 24px;
}
.about-card .role {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-bright);
  margin-bottom: 10px;
}
.about-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.about-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 28px;
  position: relative;
  transition: all 0.25s;
}
.price-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-accent);
}
.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(91, 110, 247, 0.1);
}
.price-card.featured::before {
  content: 'Recommended';
  position: absolute;
  top: -12px; left: 28px;
  padding: 4px 12px;
  background: var(--gradient);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
}
.price-tier {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.price-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.price-amount { margin: 20px 0; }
.price-amount .dollar {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
}
.price-amount .period {
  font-size: 0.9rem;
  color: var(--text-dim);
}
.price-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}
.price-features { list-style: none; margin-bottom: 28px; }
.price-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.price-features li::before {
  content: '✓';
  color: var(--accent-bright);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.price-card .btn { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════
   FOUNDER SECTION
   ══════════════════════════════════════════════ */
.founder-section {
  padding: 80px 0;
}
.founder-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 40px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.founder-photo {
  width: 140px;
  height: 140px;
  border-radius: 14px;
  background: var(--gradient);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
}
.founder-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.founder-info .founder-role {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--accent-bright);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.founder-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 560px;
}
.founder-info .founder-ctas {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

/* ══════════════════════════════════════════════
   MEDDPICC / FRAMEWORK SECTION
   ══════════════════════════════════════════════ */
.framework-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.framework-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  transition: border-color 0.2s;
}
.framework-item:hover { border-color: var(--border-accent); }
.framework-letter {
  font-family: var(--mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-bright);
  margin-bottom: 6px;
}
.framework-item h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.framework-item p {
  font-size: 0.72rem;
  color: var(--text-dim);
  line-height: 1.4;
}

/* ══════════════════════════════════════════════
   SERVICES LIST
   ══════════════════════════════════════════════ */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 24px;
  transition: all 0.25s;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-accent);
}
.service-card .service-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   FILTER / REQUIREMENT BADGE
   ══════════════════════════════════════════════ */
.filter-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(91, 110, 247, 0.06);
  border: 1px solid var(--border-accent);
  border-radius: 10px;
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-bright);
  margin-top: 24px;
}

/* Stack Tags */
.stack-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.stack-tag {
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  font-family: var(--mono);
}

/* ══════════════════════════════════════════════
   SOCIAL PROOF / TESTIMONIALS
   ══════════════════════════════════════════════ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
}
.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-card .attribution {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════ */
.faq-list { max-width: 680px; margin-top: 48px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q::after {
  content: '+';
  font-family: var(--mono);
  font-size: 1.2rem;
  color: var(--text-dim);
  transition: transform 0.2s;
}
.faq-q.active::after {
  transform: rotate(45deg);
  color: var(--accent-bright);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-a.open {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-a p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════ */
.cta-section {
  text-align: center;
  padding: 80px 0 120px;
}
.cta-section .section-title { margin: 0 auto 16px; }
.cta-section .section-desc { margin: 0 auto 36px; }

/* ══════════════════════════════════════════════
   SUCCESS PAGE
   ══════════════════════════════════════════════ */
.success-wrap {
  text-align: center;
  padding: 160px 0 100px;
}
.success-icon {
  width: 72px;
  height: 72px;
  background: var(--accent-glow);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 24px;
}
.success-wrap h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.success-wrap p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer p {
  font-size: 0.8rem;
  color: var(--text-dim);
}
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .steps-grid,
  .pricing-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .framework-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-proof { flex-wrap: wrap; gap: 24px 40px; }
  .hero { padding: 120px 0 60px; }
  .page-header { padding: 120px 0 40px; }
  section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(15, 17, 21, 0.96);
    backdrop-filter: blur(20px);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }
  .mobile-toggle { display: block; }
  footer .container { flex-direction: column; gap: 12px; text-align: center; }
  .founder-card { flex-direction: column; padding: 32px 24px; }
  .founder-photo { width: 100px; height: 100px; font-size: 2rem; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .framework-grid { grid-template-columns: 1fr; }
}
