/* ===== BUZZWORTHY DIGITAL — MASTER STYLESHEET v3 ===== */
:root {
  --gold: #F5B800;
  --gold-dark: #D9A200;
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #1A1A1A;
  --gray: #888888;
  --light-gray: #F4F4F4;
  --white: #FFFFFF;
  --font: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--white); color: var(--black); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ===== NAV ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(10,10,10,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(245,184,0,0.12); height: 68px; }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.logo-text { font-size: 22px; font-weight: 900; color: var(--white); letter-spacing: -0.5px; text-decoration: none; }
.logo-gold { color: var(--gold); margin-left: 3px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta { background: var(--gold) !important; color: var(--black) !important; padding: 9px 18px; border-radius: 8px; font-weight: 700 !important; font-size: 13px !important; }
.nav-cta:hover { background: var(--gold-dark) !important; color: var(--black) !important; }

/* ===== HERO ===== */
.hero { background: var(--black); padding: 140px 0 100px; text-align: center; position: relative; overflow: hidden; }
.hero-bg-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(245,184,0,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(245,184,0,0.03) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }
.hero-badge { display: inline-block; background: rgba(245,184,0,0.1); border: 1px solid rgba(245,184,0,0.3); color: var(--gold); font-size: 12px; font-weight: 700; padding: 6px 16px; border-radius: 100px; margin-bottom: 28px; letter-spacing: 0.08em; text-transform: uppercase; }
.hero-headline { font-size: clamp(38px, 5.5vw, 68px); font-weight: 900; line-height: 1.05; color: var(--white); max-width: 820px; margin: 0 auto 24px; letter-spacing: -0.03em; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto 44px; line-height: 1.75; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }
.hero-proof { display: inline-flex; align-items: center; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 20px 36px; gap: 0; }
.proof-stat { text-align: center; padding: 0 28px; }
.stat-num { display: block; font-size: 26px; font-weight: 900; color: var(--gold); }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.45); font-weight: 500; margin-top: 2px; }
.proof-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.1); }

/* ===== TICKER ===== */
.ticker-wrap { background: var(--gold); overflow: hidden; padding: 12px 0; white-space: nowrap; }
.ticker { display: inline-block; animation: ticker 30s linear infinite; font-size: 13px; font-weight: 800; color: var(--black); text-transform: uppercase; letter-spacing: 0.06em; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== BUTTONS ===== */
.btn-primary { background: var(--gold); color: var(--black); font-weight: 800; font-size: 15px; padding: 16px 32px; border-radius: 10px; text-decoration: none; display: inline-block; transition: all 0.2s; }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(245,184,0,0.35); }
.btn-secondary { background: transparent; color: rgba(255,255,255,0.8); font-weight: 600; font-size: 15px; padding: 16px 28px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.18); text-decoration: none; display: inline-block; transition: all 0.2s; }
.btn-secondary:hover { border-color: rgba(255,255,255,0.45); color: var(--white); }
.btn-outline { background: transparent; color: var(--gold); font-weight: 700; font-size: 15px; padding: 14px 28px; border-radius: 10px; border: 2px solid var(--gold); text-decoration: none; display: inline-block; text-align: center; transition: all 0.2s; }
.btn-outline:hover { background: var(--gold); color: var(--black); }
.btn-outline-small { background: transparent; color: var(--gold); font-weight: 700; font-size: 14px; padding: 10px 22px; border-radius: 8px; border: 1.5px solid var(--gold); text-decoration: none; display: inline-block; white-space: nowrap; transition: all 0.2s; }
.btn-outline-small:hover { background: var(--gold); color: var(--black); }
.btn-large { font-size: 17px; padding: 20px 44px; }

/* ===== PAIN ===== */
.pain { padding: 100px 0; background: var(--light-gray); }
.section-title { font-size: clamp(26px, 3.5vw, 42px); font-weight: 900; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px; text-align: center; }
.section-sub { font-size: 17px; color: var(--gray); max-width: 620px; margin: 0 auto 56px; text-align: center; line-height: 1.75; }
.pain-intro { margin-bottom: 56px; }
.pain-intro .section-title { margin-bottom: 16px; }
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.pain-card { background: var(--white); border-radius: 16px; padding: 32px 24px; border: 1px solid rgba(0,0,0,0.06); }
.pain-icon { font-size: 32px; margin-bottom: 14px; }
.pain-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 10px; }
.pain-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ===== INDUSTRIES ===== */
.industries { padding: 100px 0; background: var(--dark); }
.industry-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; margin-top: 16px; }
.industry-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(245,184,0,0.15); border-radius: 12px; padding: 22px 16px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.75); text-align: center; line-height: 1.5; transition: all 0.2s; }
.industry-card:hover { border-color: var(--gold); background: rgba(245,184,0,0.07); color: var(--white); transform: translateY(-2px); }

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: var(--black); }
.services .section-title { color: var(--white); }
.services .section-sub { color: rgba(255,255,255,0.5); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; align-items: start; margin-bottom: 32px; }
.service-card { background: var(--dark2); border-radius: 18px; padding: 36px 28px; border: 1px solid rgba(255,255,255,0.07); position: relative; }
.service-card.featured { border-color: var(--gold); background: #161610; transform: scale(1.02); }
.service-tag { background: var(--gold); color: var(--black); font-size: 11px; font-weight: 800; padding: 4px 12px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.07em; display: inline-block; margin-bottom: 14px; }
.service-tier { font-size: 11px; color: var(--gray); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.service-price { font-size: 44px; font-weight: 900; color: var(--white); margin-bottom: 4px; letter-spacing: -2px; }
.service-tagline { font-size: 14px; color: rgba(255,255,255,0.4); margin-bottom: 24px; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; }
.service-list li { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.5; }
.enterprise-bar { background: rgba(245,184,0,0.06); border: 1px solid rgba(245,184,0,0.2); border-radius: 14px; padding: 24px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.enterprise-text { display: flex; flex-direction: column; gap: 4px; }
.enterprise-text strong { font-size: 16px; color: var(--white); font-weight: 800; }
.enterprise-text span { font-size: 14px; color: rgba(255,255,255,0.5); }

/* ===== RESULTS ===== */
.results { padding: 100px 0; background: var(--white); }
.cases-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.case-card { background: var(--white); border-radius: 16px; border: 1px solid rgba(0,0,0,0.08); overflow: hidden; transition: box-shadow 0.2s; }
.case-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.case-before-after { display: flex; align-items: center; padding: 24px; background: var(--light-gray); gap: 12px; }
.case-side { flex: 1; }
.case-label { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gray); margin-bottom: 8px; }
.case-arrow { font-size: 22px; color: var(--gold); font-weight: 900; }
.case-mock { border-radius: 8px; padding: 12px; height: 90px; display: flex; flex-direction: column; gap: 5px; }
.before-mock { background: #e4e4e4; }
.after-mock { background: var(--black); }
.mock-bar { height: 6px; border-radius: 3px; width: 100%; }
.red { background: #cc3333; }
.gold { background: var(--gold); }
.mock-line { height: 4px; border-radius: 2px; background: rgba(0,0,0,0.12); }
.mock-line.short { width: 40%; }
.mock-line.medium { width: 65%; }
.mock-line.long { width: 85%; }
.gold-line { background: rgba(245,184,0,0.35); }
.mock-img { flex: 1; border-radius: 4px; background: rgba(0,0,0,0.08); margin-top: 4px; }
.mock-img.bright { background: rgba(245,184,0,0.12); }
.case-details { padding: 24px; }
.case-details h3 { font-size: 15px; font-weight: 800; margin-bottom: 10px; }
.case-details p { font-size: 14px; color: var(--gray); line-height: 1.65; margin-bottom: 14px; }
.case-result { background: rgba(245,184,0,0.08); border-left: 3px solid var(--gold); padding: 10px 14px; font-size: 13px; font-weight: 700; color: var(--black); border-radius: 0 6px 6px 0; }

/* ===== PROCESS ===== */
.process { padding: 100px 0; background: var(--light-gray); }
.process-steps { display: flex; align-items: flex-start; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
.step { flex: 1; min-width: 200px; max-width: 260px; }
.step-num { font-size: 52px; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 14px; opacity: 0.9; }
.step h3 { font-size: 17px; font-weight: 800; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--gray); line-height: 1.7; }
.step-arrow { font-size: 24px; color: var(--gold); padding-top: 52px; opacity: 0.5; }

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: var(--black); }
.about-inner { display: flex; align-items: center; gap: 64px; flex-wrap: wrap; }
.about-text { flex: 1; min-width: 280px; }
.about-badge { display: inline-block; background: rgba(245,184,0,0.1); border: 1px solid rgba(245,184,0,0.25); color: var(--gold); font-size: 11px; font-weight: 700; padding: 5px 14px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.about-text h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 900; color: var(--white); line-height: 1.2; margin-bottom: 20px; letter-spacing: -0.02em; }
.about-text p { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 16px; }
.about-stats { display: flex; gap: 32px; margin-top: 28px; flex-wrap: wrap; }
.about-stat { display: flex; flex-direction: column; }
.astat-num { font-size: 32px; font-weight: 900; color: var(--gold); line-height: 1; }
.astat-label { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 4px; font-weight: 500; }
.about-img-wrap { flex: 0 0 300px; }
.about-logo-display { background: var(--dark2); border-radius: 20px; padding: 48px 40px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(245,184,0,0.15); }

/* ===== GUARANTEE ===== */
.guarantee { padding: 60px 0; background: var(--dark); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.guarantee-inner { display: flex; align-items: center; gap: 28px; max-width: 760px; margin: 0 auto; flex-wrap: wrap; justify-content: center; text-align: center; }
.guarantee-icon { font-size: 48px; flex-shrink: 0; }
.guarantee-text h3 { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.guarantee-text p { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.75; }

/* ===== FINAL CTA ===== */
.final-cta { padding: 110px 0; background: var(--gold); text-align: center; }
.final-cta h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 900; color: var(--black); margin-bottom: 16px; letter-spacing: -0.02em; max-width: 700px; margin-left: auto; margin-right: auto; }
.final-cta p { font-size: 17px; color: rgba(0,0,0,0.6); max-width: 540px; margin: 0 auto 36px; line-height: 1.75; }
.final-cta .btn-primary { background: var(--black); color: var(--white); }
.final-cta .btn-primary:hover { background: #1a1a1a; box-shadow: 0 8px 28px rgba(0,0,0,0.3); }
.cta-sub { font-size: 13px; color: rgba(0,0,0,0.45); margin-top: 18px; }

/* ===== FOOTER ===== */
.footer { background: var(--black); padding: 56px 0 24px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.35); margin-top: 10px; max-width: 260px; line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.2); text-align: center; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { padding: 110px 0 80px; }
  .hero-proof { flex-direction: column; gap: 16px; padding: 20px; }
  .proof-divider { width: 60px; height: 1px; }
  .process-steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); padding-top: 0; }
  .service-card.featured { transform: scale(1); }
  .about-inner { flex-direction: column; }
  .about-img-wrap { flex: none; width: 100%; }
  .enterprise-bar { flex-direction: column; align-items: flex-start; }
}

/* ===== AUDIT / LEAD CAPTURE FORM ===== */
.audit-section {
  padding: 100px 0;
  background: var(--black);
}
.audit-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.audit-badge {
  display: inline-block;
  background: rgba(245,184,0,0.1);
  border: 1px solid rgba(245,184,0,0.25);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.audit-text h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.audit-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 24px;
}
.audit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.audit-list li {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}
.audit-note {
  font-size: 13px !important;
  color: rgba(255,255,255,0.35) !important;
  font-style: italic;
}
.audit-form-wrap {
  background: var(--dark2);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(245,184,0,0.15);
}
.audit-form .form-group {
  margin-bottom: 18px;
}
.audit-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.audit-form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 7px;
}
.audit-form input,
.audit-form select,
.audit-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--white);
  font-family: var(--font);
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.audit-form input::placeholder,
.audit-form textarea::placeholder { color: rgba(255,255,255,0.25); }
.audit-form input:focus,
.audit-form select:focus,
.audit-form textarea:focus { border-color: var(--gold); }
.audit-form select option { background: #1a1a1a; color: var(--white); }
.audit-form textarea { resize: vertical; min-height: 90px; }
.btn-submit {
  width: 100%;
  text-align: center;
  font-size: 16px;
  padding: 18px;
  margin-top: 8px;
  border: none;
  cursor: pointer;
}
.form-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  text-align: center;
  margin-top: 12px;
}
.form-success {
  text-align: center;
  padding: 20px 0;
}
.success-icon { font-size: 52px; margin-bottom: 16px; }
.form-success h3 { font-size: 22px; font-weight: 900; color: var(--white); margin-bottom: 12px; }
.form-success p { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.7; }

@media (max-width: 768px) {
  .audit-inner { grid-template-columns: 1fr; gap: 40px; }
  .audit-form .form-row { grid-template-columns: 1fr; }
  .audit-form-wrap { padding: 28px 20px; }
}

/* ===== FREE PRODUCT SECTION ===== */
.free-product {
  padding: 80px 0;
  background: linear-gradient(135deg, #0e0e00 0%, #0a0a0a 100%);
  border-top: 1px solid rgba(245,184,0,0.08);
  border-bottom: 1px solid rgba(245,184,0,0.08);
}
.fp-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.fp-badge-wrap { flex-shrink: 0; }
.fp-badge {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
  box-shadow: 0 0 40px rgba(245,184,0,0.3);
}
.fp-content { flex: 1; min-width: 280px; }
.fp-content h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.fp-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 20px;
}
.fp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.fp-list li {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
  padding: 100px 0;
  background: var(--light-gray);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s;
}
.review-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.review-card-cta {
  background: var(--black);
  border-color: rgba(245,184,0,0.2);
  align-items: flex-start;
}
.review-card-cta .review-text { color: rgba(255,255,255,0.5); }
.review-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--gray); line-height: 1.75; font-style: italic; flex: 1; }
.review-author { display: flex; flex-direction: column; gap: 2px; }
.review-author strong { font-size: 14px; font-weight: 800; color: var(--black); }
.review-author span { font-size: 12px; color: var(--gray); }
.review-result {
  font-size: 12px;
  font-weight: 700;
  color: #16a34a;
  background: rgba(22,163,74,0.08);
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-block;
}
