/* BreakerBoxx — Global Styles */
:root {
  --navy: #0f1b2d;
  --blue: #1a3a5c;
  --blue-light: #24527a;
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --amber-light: #fbbf24;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --radius: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--amber-dark); }

img, svg { max-width: 100%; height: auto; }

/* ---- Layout ---- */
.container { max-width: 1120px; margin: 0 auto; padding: 0 1.25rem; }

/* ---- Nav ---- */
.site-nav {
  background: var(--navy);
  padding: .75rem 0;
  position: sticky; top: 0; z-index: 100;
}
.site-nav .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.site-nav .logo { font-size: 1.35rem; font-weight: 700; color: var(--white); letter-spacing: -.5px; }
.site-nav .logo span { color: var(--amber); }
.nav-links { display: flex; gap: 1.5rem; list-style: none; }
.nav-links a { color: var(--gray-300); font-size: .95rem; transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--amber); }

/* ---- Buttons ---- */
.btn {
  display: inline-block; padding: .7rem 1.6rem; border-radius: var(--radius);
  font-weight: 600; font-size: .95rem; text-align: center; transition: background .15s, transform .1s;
  cursor: pointer; border: none;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--amber); color: var(--navy); }
.btn-primary:hover { background: var(--amber-dark); color: var(--navy); }
.btn-secondary { background: var(--blue); color: var(--white); }
.btn-secondary:hover { background: var(--blue-light); color: var(--white); }
.btn-outline { border: 2px solid var(--amber); color: var(--amber); background: transparent; }
.btn-outline:hover { background: var(--amber); color: var(--navy); }
.btn-sm { padding: .5rem 1.1rem; font-size: .85rem; }

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white); padding: 5rem 0 4rem; text-align: center;
}
.hero h1 { font-size: 2.75rem; font-weight: 800; margin-bottom: .75rem; line-height: 1.15; }
.hero h1 span { color: var(--amber); }
.hero .subtitle { font-size: 1.2rem; color: var(--gray-300); max-width: 600px; margin: 0 auto 2rem; }
.hero .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- Sections ---- */
.section { padding: 4.5rem 0; }
.section-alt { background: var(--gray-50); }
.section-dark { background: var(--navy); color: var(--white); }
.section-title { font-size: 2rem; font-weight: 700; text-align: center; margin-bottom: .5rem; }
.section-subtitle { text-align: center; color: var(--gray-500); max-width: 600px; margin: 0 auto 2.5rem; }
.section-dark .section-subtitle { color: var(--gray-300); }

/* ---- Feature Grid ---- */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.feature-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow); border: 1px solid var(--gray-200); transition: box-shadow .2s;
}
.feature-card:hover { box-shadow: var(--shadow-lg); }
.feature-icon { font-size: 2.25rem; margin-bottom: .75rem; }
.feature-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.feature-card p { color: var(--gray-600); font-size: .95rem; }

/* ---- Pricing Cards ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 820px; margin: 0 auto; }
.pricing-card {
  background: var(--white); border-radius: var(--radius); padding: 2.5rem 2rem;
  box-shadow: var(--shadow); border: 2px solid var(--gray-200); text-align: center; position: relative;
}
.pricing-card.featured { border-color: var(--amber); }
.pricing-card .badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: var(--navy); font-weight: 700; font-size: .75rem;
  padding: .3rem 1rem; border-radius: 20px; text-transform: uppercase; letter-spacing: .5px;
}
.pricing-card h3 { font-size: 1.3rem; margin-bottom: .25rem; }
.pricing-card .price { font-size: 2.75rem; font-weight: 800; color: var(--navy); margin: .75rem 0 .25rem; }
.pricing-card .price-note { color: var(--gray-500); font-size: .9rem; margin-bottom: 1.5rem; }
.pricing-card ul { list-style: none; text-align: left; margin-bottom: 2rem; }
.pricing-card ul li { padding: .4rem 0; font-size: .95rem; color: var(--gray-700); }
.pricing-card ul li::before { content: "✓ "; color: var(--amber-dark); font-weight: 700; }

/* ---- Comparison Table ---- */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: .9rem; }
th, td { padding: .75rem 1rem; text-align: left; border-bottom: 1px solid var(--gray-200); }
th { background: var(--navy); color: var(--white); font-weight: 600; }
tr:hover { background: var(--gray-50); }
td:first-child { font-weight: 600; }
.check { color: var(--amber-dark); font-weight: 700; }
.cross { color: var(--gray-300); }

/* ---- FAQ ---- */
.faq { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); padding: 1.25rem 0; }
.faq-item h3 { font-size: 1.05rem; margin-bottom: .4rem; color: var(--navy); }
.faq-item p { color: var(--gray-600); font-size: .95rem; }

/* ---- Download Cards ---- */
.download-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; max-width: 800px; margin: 0 auto; }
.download-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem; text-align: center;
  box-shadow: var(--shadow); border: 1px solid var(--gray-200);
}
.download-card .os-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.download-card h3 { margin-bottom: .5rem; }
.download-card p { color: var(--gray-500); font-size: .85rem; margin-bottom: 1rem; }

/* ---- Placeholder SVG / Mockup ---- */
.mockup-placeholder {
  background: var(--gray-100); border: 2px dashed var(--gray-300); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; color: var(--gray-500);
  min-height: 320px; font-size: .95rem; margin: 2rem auto; max-width: 800px; text-align: center; padding: 2rem;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--gray-900); color: var(--gray-300); padding: 3rem 0 2rem; font-size: .9rem;
}
.footer-grid { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; margin-bottom: 2rem; }
.footer-col h4 { color: var(--white); margin-bottom: .75rem; font-size: .95rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .4rem; }
.footer-col a { color: var(--gray-300); }
.footer-col a:hover { color: var(--amber); }
.footer-bottom { border-top: 1px solid var(--gray-700); padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; }
.footer-bottom .disclaimer { font-size: .8rem; color: var(--gray-500); max-width: 640px; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero .subtitle { font-size: 1.05rem; }
  .section { padding: 3rem 0; }
  .section-title { font-size: 1.6rem; }
  .pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: .85rem; }
}
