/* mybizopz promo site — shared styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand: #1a2f4a;
  --brand-accent: #3d5f8f;
  --brand-light: #f0f4f8;
  --dark: #0f1d35;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --bg-subtle: #f8fafc;
  --white: #ffffff;
  --green: #059669;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.02);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --max-w: 1200px;
}

html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px; line-height: 1.6; color: var(--text); background: var(--white);
}
a { color: var(--brand-accent); text-decoration: none; }
a:hover { color: var(--brand); }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4 { line-height: 1.2; color: var(--brand); }

/* Layout */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--subtle { background: var(--bg-subtle); }
.section--dark { background: var(--dark); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: #94a3b8; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav__logo { height: 28px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.nav__links a:hover { color: var(--brand); }
.nav__links a.active { color: var(--brand); font-weight: 600; }
.nav__cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--brand); color: var(--white) !important; padding: 8px 20px;
  border-radius: var(--radius-sm); font-size: 14px; font-weight: 600;
  transition: all 0.15s;
}
.nav__cta:hover { background: var(--dark); color: var(--white) !important; }

/* Dark hero wrapper (homepage) */
.hero-dark { background: var(--dark); }
.hero-dark .hero h1 { color: var(--white); }
.hero-dark .hero p { color: #94a3b8; }
.hero-dark .hero__screenshot { border-color: rgba(255,255,255,0.1); }

/* Dark nav variant */
.nav--dark { background: transparent; border-bottom: 1px solid rgba(255,255,255,0.1); backdrop-filter: none; }
.nav--dark .nav__links a { color: rgba(255,255,255,0.7); }
.nav--dark .nav__links a:hover { color: var(--white); }
.nav__cta--light { background: var(--white) !important; color: var(--dark) !important; }
.nav__cta--light:hover { background: var(--brand-light) !important; color: var(--dark) !important; }

/* Hero */
.hero { padding: 80px 0 60px; text-align: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--brand-light); color: var(--brand); padding: 6px 16px;
  border-radius: 999px; font-size: 13px; font-weight: 600; margin-bottom: 24px;
}
.hero__badge--dark { background: rgba(255,255,255,0.1); color: var(--white); }
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 16px; max-width: 720px; margin-inline: auto; }
.hero p { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto 32px; }
.hero__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero__screenshot {
  margin-top: 48px; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px;
  border-radius: var(--radius-sm); font-size: 15px; font-weight: 600;
  transition: all 0.15s; border: none; cursor: pointer; text-decoration: none;
}
.btn--primary { background: var(--brand); color: var(--white); }
.btn--primary:hover { background: var(--dark); color: var(--white); }
.btn--outline { background: var(--white); color: var(--brand); border: 2px solid var(--brand); }
.btn--outline:hover { background: var(--brand); color: var(--white); }
.btn--white { background: var(--white); color: var(--brand); }
.btn--white:hover { background: var(--brand-light); color: var(--brand); }
.btn--ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); color: var(--white); }
.btn--sm { padding: 8px 20px; font-size: 13px; }

/* Feature grid */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.feature-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; transition: box-shadow 0.2s;
}
.feature-card:hover { box-shadow: var(--shadow-md); }
.feature-card__icon {
  width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  background: var(--brand-light); color: var(--brand); margin-bottom: 16px; font-size: 18px;
}
.feature-card h3 { font-size: 16px; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* Feature section (alternating image + text) */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feature-row--reverse { direction: rtl; }
.feature-row--reverse > * { direction: ltr; }
.feature-row__img {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.feature-row__text .badge {
  display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--brand-accent); background: var(--brand-light);
  padding: 4px 12px; border-radius: 999px; margin-bottom: 12px;
}
.feature-row__text h2 { font-size: 28px; margin-bottom: 12px; }
.feature-row__text p { color: var(--text-muted); margin-bottom: 20px; }
.feature-row__text ul { list-style: none; margin-bottom: 24px; }
.feature-row__text li {
  padding: 6px 0; font-size: 14px; color: var(--text-muted);
  display: flex; align-items: center; gap: 10px;
}
.feature-row__text li::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 14px; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.pricing-card {
  background: var(--white); border: 2px solid var(--border); border-radius: var(--radius);
  padding: 32px; position: relative; transition: box-shadow 0.2s;
}
.pricing-card:hover { box-shadow: var(--shadow-md); }
.pricing-card--popular { border-color: var(--brand); z-index: 1; }
.pricing-card--popular::before {
  content: 'Most popular'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: var(--white); padding: 4px 16px; border-radius: 999px;
  font-size: 12px; font-weight: 700; z-index: 2; white-space: nowrap;
}
.pricing-card h3 { font-size: 22px; margin-bottom: 4px; }
.pricing-card .price { font-size: 40px; font-weight: 800; color: var(--brand); margin: 12px 0 4px; }
.pricing-card .price .unit { font-size: 16px; font-weight: 400; color: var(--text-muted); }
.pricing-card .price-note { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.pricing-card ul { list-style: none; margin-bottom: 24px; flex: 1; }
.pricing-card li { padding: 6px 0; font-size: 14px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.pricing-card li::before { content: '✓'; color: var(--green); font-weight: 700; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-item summary {
  font-size: 16px; font-weight: 600; color: var(--brand); cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::after { content: '+'; font-size: 20px; color: var(--text-muted); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin-top: 12px; font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* CTA section */
.cta-section { text-align: center; padding: 80px 0; }
.cta-section h2 { font-size: 32px; margin-bottom: 12px; }
.cta-section p { color: #94a3b8; margin-bottom: 28px; font-size: 16px; }
.cta-section .reassurance { margin-top: 16px; font-size: 13px; color: #64748b; }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 40px 0; font-size: 13px; color: var(--text-muted); }
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer__links { display: flex; gap: 24px; }
.footer__links a { color: var(--text-muted); }
.footer__links a:hover { color: var(--brand); }

/* Blog / Article */
.article-hero { padding: 80px 0 40px; text-align: center; }
.article-hero .hero__badge { margin-bottom: 16px; }
.article-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 16px; max-width: 800px; margin-inline: auto; }
.article-hero .article-meta { font-size: 14px; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.article-hero .article-meta time { font-weight: 500; }
.article-hero .article-lead { font-size: 18px; color: var(--text-muted); max-width: 680px; margin: 24px auto 0; line-height: 1.7; }

.article-body { max-width: 720px; margin: 0 auto; padding: 0 24px 80px; }
.article-body h2 { font-size: 24px; margin: 48px 0 16px; }
.article-body h3 { font-size: 18px; margin: 32px 0 12px; color: var(--brand); }
.article-body p { color: var(--text); line-height: 1.7; margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 0 0 24px 24px; color: var(--text); line-height: 1.7; }
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--brand); }
.article-body a { color: var(--brand-accent); text-decoration: underline; text-underline-offset: 2px; }
.article-body a:hover { color: var(--brand); }
.article-body blockquote {
  border-left: 3px solid var(--brand-accent); margin: 28px 0; padding: 16px 24px;
  background: var(--bg-subtle); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.article-body blockquote p { color: var(--text-muted); margin-bottom: 0; font-style: italic; }

/* Pull quote — visually prominent inline quote */
.pull-quote {
  border: none; background: none; border-top: 2px solid var(--brand); border-bottom: 2px solid var(--brand);
  margin: 40px 0; padding: 28px 0; text-align: center;
}
.pull-quote p {
  font-size: 22px; font-weight: 600; line-height: 1.5; color: var(--brand);
  font-style: normal; margin-bottom: 0; max-width: 600px; margin-inline: auto;
}

/* Related articles */
.related-articles { padding: 60px 0 0; max-width: 720px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.related-articles h2 { font-size: 24px; margin-bottom: 24px; color: var(--brand); }
.related-articles .blog-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }

/* Article table */
.article-table { width: 100%; border-collapse: collapse; margin: 24px 0 32px; font-size: 14px; }
.article-table thead { background: var(--brand); color: var(--white); }
.article-table th { padding: 12px 16px; text-align: left; font-weight: 600; }
.article-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
.article-table tbody tr:last-child { font-weight: 700; background: var(--bg-subtle); }
.article-table tbody tr:hover { background: var(--brand-light); }
.article-table .text-right { text-align: right; }

/* Numbered benefit cards */
.benefit-list { list-style: none; margin: 24px 0 32px; padding: 0; counter-reset: benefit; }
.benefit-list li {
  counter-increment: benefit; padding: 20px 20px 20px 64px; margin-bottom: 12px;
  background: var(--bg-subtle); border-radius: var(--radius); position: relative;
  border: 1px solid var(--border); line-height: 1.7;
}
.benefit-list li::before {
  content: counter(benefit); position: absolute; left: 16px; top: 18px;
  width: 32px; height: 32px; border-radius: 50%; background: var(--brand); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px;
}
.benefit-list li strong { display: block; color: var(--brand); margin-bottom: 4px; font-size: 16px; }

/* Blog listing */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }
.blog-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: box-shadow 0.2s; text-decoration: none; display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-md); }
.blog-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card__badge {
  display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--brand-accent); background: var(--brand-light);
  padding: 3px 10px; border-radius: 999px; margin-bottom: 12px; width: fit-content;
}
.blog-card h3 { font-size: 18px; margin-bottom: 8px; color: var(--brand); }
.blog-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; flex: 1; }
.blog-card__meta { font-size: 12px; color: var(--text-muted); margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--border); }

/* Key takeaway box */
.key-takeaway {
  background: var(--brand-light); border: 1px solid var(--brand-accent); border-radius: var(--radius);
  padding: 24px; margin: 32px 0;
}
.key-takeaway strong { display: block; color: var(--brand); margin-bottom: 8px; font-size: 15px; }
.key-takeaway p { margin-bottom: 0; color: var(--text); }

/* Internal link hub */
.link-hub { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; margin: 24px 0 32px; }
.link-hub a {
  display: flex; align-items: center; gap: 10px; padding: 12px 16px;
  background: var(--bg-subtle); border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; color: var(--brand); text-decoration: none; transition: all 0.15s;
}
.link-hub a:hover { background: var(--brand-light); border-color: var(--brand-accent); }

/* Partner registration form */
.partner-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.partner-form__field { margin-bottom: 20px; }
.partner-form__field label { display: block; font-size: 14px; font-weight: 600; color: var(--brand); margin-bottom: 6px; }
.partner-form__field input,
.partner-form__field select,
.partner-form__field textarea {
  width: 100%; padding: 10px 14px; font-size: 15px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); background: var(--white); color: var(--text);
  font-family: inherit; transition: border-color 0.15s;
}
.partner-form__field input:focus,
.partner-form__field select:focus,
.partner-form__field textarea:focus { outline: none; border-color: var(--brand-accent); box-shadow: 0 0 0 3px rgba(61,95,143,0.1); }
.partner-form__field textarea { resize: vertical; min-height: 80px; }
.partner-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Responsive */
@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row--reverse { direction: ltr; }
  .nav__links { gap: 16px; }
  .hero h1 { font-size: 1.8rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
  .article-hero { padding: 48px 0 24px; }
  .article-body { padding: 0 20px 48px; }
  .article-body h2 { font-size: 20px; margin-top: 36px; }
  .article-table { font-size: 13px; }
  .article-table th, .article-table td { padding: 8px 10px; }
  .benefit-list li { padding: 16px 16px 16px 56px; }
  .blog-grid { grid-template-columns: 1fr; }
  .link-hub { grid-template-columns: 1fr; }
  .pull-quote { margin: 28px 0; padding: 20px 0; }
  .pull-quote p { font-size: 18px; }
  .related-articles { padding: 40px 20px 0; }
  .related-articles .blog-grid { grid-template-columns: 1fr; }
  .partner-form { padding: 24px; }
  .partner-form__row { grid-template-columns: 1fr; }
}
