/* ============================================
   REVENUE RESCUE SYSTEMS — Global Styles
   Color Scheme: Black / Lime Green / White
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #000000;
  --gray-dark: #0d0d0d;
  --gray-mid: #111111;
  --gray-card: #1a1a1a;
  --gray-border: rgba(255,255,255,0.08);
  --green: #7ED321;
  --green-dark: #5BA800;
  --green-glow: rgba(126,211,33,0.12);
  --green-border: rgba(126,211,33,0.3);
  --white: #FFFFFF;
  --gray-100: #f5f5f5;
  --gray-200: rgba(255,255,255,0.12);
  --gray-400: rgba(255,255,255,0.4);
  --gray-600: rgba(255,255,255,0.65);
  --gray-800: rgba(255,255,255,0.85);
  --red: #ef4444;
  --amber: #f59e0b;
  --blue: #7ED321;
  --blue-dark: #5BA800;
  --radius-lg: 12px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: 72px;
}

a { color: inherit; text-decoration: none; }

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--green-border);
  height: 72px;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-400);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--green); }

.nav-links .nav-cta {
  background: var(--green);
  color: var(--black) !important;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 6px;
  font-size: 13px;
  transition: background 0.2s, transform 0.1s;
}

.nav-links .nav-cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.nav-mobile-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-mobile-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  background: var(--black);
  border-bottom: 1px solid var(--green-border);
  padding: 16px 24px 24px;
  gap: 4px;
  z-index: 99;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 16px;
  color: var(--gray-600);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-border);
}

.mobile-menu a:last-child { border-bottom: none; }

.mobile-menu .nav-cta {
  background: var(--green);
  color: var(--black) !important;
  font-weight: 700;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  margin-top: 8px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: var(--black);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 20px rgba(126,211,33,0.25);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(126,211,33,0.4);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green);
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--gray-mid);
  border-bottom: 1px solid var(--gray-border);
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-400);
}

.breadcrumb-inner a { color: var(--gray-400); }
.breadcrumb-inner a:hover { color: var(--green); }
.breadcrumb-inner .sep { color: var(--gray-border); }
.breadcrumb-inner .current { color: var(--green); }

/* ===== INDUSTRY HERO ===== */
.industry-hero {
  background: var(--gray-mid);
  border-bottom: 1px solid var(--green-border);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.industry-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 70% 80% at 0% 50%, rgba(126,211,33,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.industry-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.industry-hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-glow);
  border: 1px solid var(--green-border);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.industry-hero-content h1 {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}

.industry-hero-content p {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}

/* ===== INDUSTRY STATS ===== */
.industry-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.istat {
  background: var(--gray-card);
  border: 1px solid var(--green-border);
  border-radius: 10px;
  padding: 20px;
}

.istat .n {
  font-size: 28px;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.istat .l {
  font-size: 12px;
  color: var(--gray-400);
  line-height: 1.4;
}

/* ===== DEMO WIDGET ===== */
.demo-widget {
  background: var(--gray-card);
  border: 1px solid var(--green-border);
  border-radius: 12px;
  padding: 20px;
}

.demo-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-border);
}

.demo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
}

.demo-title {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 600;
}

.demo-msg {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  border: 1px solid var(--gray-border);
}

.demo-msg-ico { font-size: 18px; flex-shrink: 0; margin-top: 1px; }

.demo-msg-text {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.5;
}

.demo-msg-text strong {
  display: block;
  color: var(--white);
  font-size: 12px;
  margin-bottom: 3px;
}

.demo-reply {
  font-size: 12px;
  color: var(--green);
  margin-top: 4px;
  font-style: italic;
}

.demo-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.demo-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}

.demo-tag.green {
  background: rgba(126,211,33,0.15);
  color: var(--green);
  border: 1px solid var(--green-border);
}

.demo-tag.blue {
  background: rgba(126,211,33,0.08);
  color: var(--green);
  border: 1px solid rgba(126,211,33,0.2);
}

/* ===== SECTIONS ===== */
.pain-section { background: var(--gray-mid); }
.problem-bg { background: var(--gray-mid); }
.roi-bg { background: var(--gray-dark); }

.pain-quote {
  background: var(--gray-card);
  border-left: 4px solid var(--green);
  border-radius: 0 10px 10px 0;
  padding: 24px 28px;
  margin: 28px 0;
}

.pain-quote p {
  font-size: 18px;
  font-style: italic;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 10px;
}

.pain-quote .attr {
  font-size: 13px;
  color: var(--gray-400);
}

/* ===== STAT CARDS ===== */
.stat-card {
  background: var(--gray-card);
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.stat-card .num {
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.stat-card .lbl {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.4;
}

/* ===== PROBLEM CARDS ===== */
.problem-card {
  background: var(--gray-card);
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.problem-card:hover {
  border-color: var(--green-border);
  transform: translateY(-3px);
}

.problem-card .ico { font-size: 28px; margin-bottom: 12px; display: block; }

.problem-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.problem-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* ===== OBJECTION ===== */
.objection-card {
  background: var(--gray-card);
  border: 1px solid var(--green-border);
  border-radius: 12px;
  padding: 28px;
}

.objection-card .q {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.objection-card .q::before {
  content: '"';
  color: var(--green);
  font-size: 22px;
  margin-right: 2px;
}

.objection-card .a {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  padding-top: 12px;
  border-top: 1px solid var(--gray-border);
}

/* ===== ROI CALC ===== */
.roi-calc {
  background: var(--gray-card);
  border: 1px solid var(--green-border);
  border-radius: 14px;
  padding: 36px;
  max-width: 620px;
  margin: 48px auto 0;
}

.roi-slider-row {
  margin-bottom: 24px;
}

.roi-slider-row label {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 10px;
}

.roi-slider-row label span {
  color: var(--green);
  font-weight: 800;
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--green);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(126,211,33,0.4);
}

.roi-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-border);
  gap: 16px;
}

.roi-row:last-child { border-bottom: none; }
.roi-row .lbl { font-size: 14px; color: var(--gray-600); }
.roi-row .val { font-size: 16px; font-weight: 700; color: var(--green); white-space: nowrap; }
.roi-row.highlight { background: var(--green-glow); padding: 12px 16px; border-radius: 8px; margin-top: 8px; border-bottom: none; }
.roi-row.highlight .lbl { color: var(--white); }
.roi-row.highlight .val { font-size: 20px; }

/* ===== FAQ ===== */
.faq-list { margin-top: 40px; }

.faq-item {
  border-bottom: 1px solid var(--gray-border);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  transition: color 0.2s;
}

.faq-q:hover { color: var(--green); }

.faq-icon {
  color: var(--green);
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  display: none;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  padding-bottom: 20px;
}

.faq-item.open .faq-a { display: block; }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  max-width: 760px;
}

.pricing-card {
  background: var(--gray-card);
  border: 1px solid var(--gray-border);
  border-radius: 14px;
  padding: 32px;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--green);
  box-shadow: 0 0 32px rgba(126,211,33,0.12);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.pricing-price {
  font-size: 42px;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-price .period {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-400);
}

.pricing-desc {
  font-size: 14px;
  color: var(--gray-600);
  margin: 12px 0 20px;
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-600);
  padding: 7px 0;
  border-bottom: 1px solid var(--gray-border);
  line-height: 1.5;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--black);
  border-top: 1px solid var(--green-border);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 300px;
  background: radial-gradient(ellipse 80% 100% at 50% 100%, rgba(126,211,33,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin: 0 auto 16px;
  line-height: 1.1;
}

.cta-section p {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */
footer {
  background: var(--gray-dark);
  border-top: 1px solid var(--gray-border);
}

.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 48px;
  padding: 56px 0 40px;
}

.footer-brand .logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand .logo span { color: var(--green); }

.footer-brand p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.7;
  max-width: 240px;
}

.footer-links-group h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.footer-links-group a {
  display: block;
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 10px;
  transition: color 0.15s;
}

.footer-links-group a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid var(--gray-border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--gray-400);
}

.footer-bottom a { color: var(--gray-400); }
.footer-bottom a:hover { color: var(--green); }

/* ===== LEGAL PAGES ===== */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 24px;
  background: var(--black);
}

.legal-content h1 {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.legal-content .date {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 40px;
  display: block;
}

.legal-content > a {
  font-size: 14px;
  color: var(--green);
  display: inline-block;
  margin-bottom: 32px;
}

.legal-content > a:hover { color: var(--green-dark); }

.legal-content h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--green-border);
}

.legal-content p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content strong { color: var(--white); }

.legal-content a { color: var(--green); }
.legal-content a:hover { color: var(--green-dark); }

/* ===== CONTACT / AUDIT FORMS ===== */
.form-card {
  background: var(--gray-card);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.form-card h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.form-card p {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 28px;
}

.form-row { margin-bottom: 18px; }

.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  font-size: 15px;
  color: var(--white);
  font-family: inherit;
  transition: border-color 0.15s;
  outline: none;
}

.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--gray-400); }

.form-row select { color: var(--gray-800); }
.form-row select option { background: var(--gray-card); color: var(--white); }

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--green); }

.form-row textarea { resize: vertical; min-height: 80px; }

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--green);
  color: var(--black);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  font-family: inherit;
}

.form-submit:hover { background: var(--green-dark); transform: translateY(-1px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-btn { display: flex; }
  .industry-hero-inner { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .roi-calc { padding: 24px; }
  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .industry-stats { grid-template-columns: 1fr 1fr; }
}
