/* SHARED STYLES — FireWall Industries Subpages */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #0a0a0a;
  --bg-card: #111111;
  --accent: #B5654A;
  --accent-hover: #C9785D;
  --text: #ffffff;
  --text-dim: #999999;
  --border: #222222;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

/* NAV */
nav { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 3rem; border-bottom: 1px solid var(--border); position: sticky; top: 0; background: rgba(10,10,10,0.95); backdrop-filter: blur(12px); z-index: 100; }
.nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; color: var(--text); }
.nav-logo span { font-weight: 700; font-size: 1.1rem; letter-spacing: -0.02em; }
.nav-right { display: flex; align-items: center; gap: 2rem; }
.nav-right a { color: var(--text-dim); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.03em; transition: color 0.2s; }
.nav-right a:hover { color: var(--text); }
.nav-cta { background: var(--accent); color: #fff !important; padding: 0.55rem 1.4rem; border-radius: 6px; font-size: 0.85rem; font-weight: 600; transition: background 0.2s; }
.nav-cta:hover { background: var(--accent-hover); color: #fff !important; }

/* HERO */
.hero { padding: 6rem 3rem 5rem; max-width: 800px; margin: 0 auto; text-align: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(181,101,74,0.1); border: 1px solid rgba(181,101,74,0.25); padding: 0.4rem 1rem; border-radius: 100px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.5rem; }
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.hero h1 { font-size: 3rem; font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 1.25rem; }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 1.15rem; color: var(--text-dim); line-height: 1.7; max-width: 600px; margin: 0 auto; }

/* SECTIONS */
section { padding: 5rem 3rem; max-width: 900px; margin: 0 auto; }
.section-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; }
.section-title { font-size: 1.8rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 2rem; line-height: 1.2; }

/* PAIN POINTS */
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.pain-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 1.5rem; }
.pain-card .number { font-size: 2rem; font-weight: 800; color: var(--accent); opacity: 0.4; margin-bottom: 0.25rem; }
.pain-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.pain-card p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.6; }

/* SOLUTION */
.solution-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.25rem; }
.solution-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 1.5rem; text-align: center; }
.solution-icon { width: 48px; height: 48px; margin: 0 auto 1rem; color: var(--accent); }
.solution-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.solution-card p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.5; }

/* DIVIDER */
.divider { border: none; border-top: 1px solid var(--border); max-width: 900px; margin: 0 auto; }

/* CTA */
.cta-section { text-align: center; padding: 5rem 3rem; }
.cta-section h2 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; letter-spacing: -0.02em; }
.cta-section p { color: var(--text-dim); margin-bottom: 2rem; font-size: 1rem; }
.btn-primary { display: inline-block; background: var(--accent); color: #fff; padding: 0.85rem 2.5rem; border-radius: 4px; font-weight: 700; font-size: 0.95rem; transition: background 0.2s; }
.btn-primary:hover { background: var(--accent-hover); color: #fff; }

/* HAMBURGER */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; position: relative; z-index: 110;
}
.nav-toggle span {
  display: block; width: 20px; height: 1.5px; background: var(--text);
  margin: 0 auto; transition: all 0.3s ease; position: absolute; left: 6px;
}
.nav-toggle span:nth-child(1) { top: 9px; }
.nav-toggle span:nth-child(2) { top: 15px; }
.nav-toggle span:nth-child(3) { top: 21px; }
.nav-toggle.active span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { top: 15px; transform: rotate(-45deg); }

/* FOOTER */
footer { text-align: center; padding: 2rem 3rem; border-top: 1px solid var(--border); color: var(--text-dim); font-size: 0.75rem; }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-toggle { display: block; }
  .nav-right {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 280px; background: rgba(10,10,10,0.97);
    backdrop-filter: blur(30px);
    flex-direction: column; align-items: flex-start;
    padding: 6rem 2.5rem 3rem;
    gap: 0; border-left: 1px solid var(--border);
    transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  }
  .nav-right.open { transform: translateX(0); }
  .nav-right a {
    font-size: 1rem; padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    width: 100%; display: block;
  }
  .nav-cta {
    margin-top: 1rem; text-align: center; display: block;
    width: 100%; border-bottom: none;
  }
  .hero { padding: 4rem 1.5rem 3rem; }
  .hero h1 { font-size: 2rem; }
  section { padding: 3rem 1.5rem; }
  .pain-grid, .solution-grid { grid-template-columns: 1fr; }
}

/* Accessibility — focus-visible */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 2px;
}
.nav-cta:focus-visible, .btn-primary:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px;
}
