/* Zenith Digital Menus - Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700;900&display=swap');

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

:root {
  --bg: #0a0a0f;
  --bg-light: #12121a;
  --bg-card: #16161f;
  --text: #ffffff;
  --muted: #a1a1aa;
  --accent: #0176D3;
  --accent-dim: rgba(1,118,211,0.15);
  --accent-glow: rgba(1,118,211,0.25);
  --border: rgba(255,255,255,0.08);
}

html { scroll-behavior: smooth; }
body { font-family: 'Roboto', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; font-weight: 400; }
a { color: var(--accent); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .8; }
img { max-width: 100%; }

/* Logo */
.logo { display: inline-flex; flex-direction: column; align-items: center; line-height: 1; }
.logo-top { font-size: 2.2rem; font-weight: 900; letter-spacing: 0.22em; color: var(--text); }
.logo-bottom { font-size: 0.82rem; font-weight: 900; letter-spacing: 0.62em; color: var(--accent); text-transform: uppercase; }

/* Nav */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(10,10,15,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-wrap { max-width: 1200px; margin: 0 auto; padding: 0.8rem 1.5rem; display: flex; align-items: center; justify-content: space-between; }
nav { display: flex; align-items: center; gap: 1.8rem; }
nav a { color: var(--muted); font-size: 0.9rem; font-weight: 400; }
nav a:hover { color: var(--text); opacity: 1; }

/* Dropdowns */
.dropdown { position: relative; }
.dropdown > a::after { content: ' ▾'; font-size: 0.7em; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; min-width: 220px; padding: 0.5rem 0; margin-top: 0.5rem; box-shadow: 0 8px 32px rgba(0,0,0,0.5); }
.dropdown-menu a { display: block; padding: 0.5rem 1rem; color: var(--muted); font-size: 0.85rem; }
.dropdown-menu a:hover { color: var(--text); background: var(--accent-dim); }
.dropdown:hover .dropdown-menu { display: block; }

/* Hamburger */
.hamburger { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; }

/* Hero */
.hero { padding: 10rem 1.5rem 6rem; text-align: center; max-width: 900px; margin: 0 auto; }
.hero h1 { font-size: 3rem; font-weight: 900; margin-bottom: 1.2rem; color: var(--text); }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 1.15rem; color: var(--muted); max-width: 640px; margin: 0 auto 2rem; }

/* Buttons */
.btn { display: inline-block; padding: 0.85rem 2rem; border-radius: 6px; font-weight: 700; font-size: 0.95rem; transition: all .2s; cursor: pointer; border: none; }
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover { opacity: .85; box-shadow: 0 0 20px var(--accent-glow); }
.btn-outline { border: 1px solid var(--accent); color: var(--accent); background: transparent; }
.btn-outline:hover { background: var(--accent-dim); }
.btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Sections */
.section { padding: 5rem 1.5rem; max-width: 1200px; margin: 0 auto; }
.section-title { font-size: 2rem; font-weight: 900; text-align: center; margin-bottom: 0.6rem; }
.section-sub { text-align: center; color: var(--muted); max-width: 600px; margin: 0 auto 3rem; }
.section-divider { border: none; border-top: 1px solid var(--border); max-width: 1200px; margin: 0 auto; }

/* Cards Grid */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; transition: box-shadow .3s; }
.card:hover { box-shadow: 0 0 30px var(--accent-dim); }
.card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.6rem; }
.card p { color: var(--muted); font-size: 0.95rem; }
.card-icon { font-size: 2rem; margin-bottom: 1rem; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.price-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 2.5rem 2rem; text-align: center; position: relative; }
.price-card.featured { border-color: var(--accent); box-shadow: 0 0 40px var(--accent-dim); }
.price-card .badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--bg); font-size: 0.75rem; font-weight: 700; padding: 0.3rem 1rem; border-radius: 20px; }
.price-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.price-card .price { font-size: 3rem; font-weight: 900; margin: 1rem 0 0.3rem; }
.price-card .price span { font-size: 1rem; font-weight: 400; color: var(--muted); }
.price-card ul { list-style: none; margin: 1.5rem 0; text-align: left; }
.price-card ul li { padding: 0.4rem 0; color: var(--muted); font-size: 0.9rem; }
.price-card ul li::before { content: '✓ '; color: var(--accent); font-weight: 700; }

/* Footer */
footer { background: var(--bg-light); border-top: 1px solid var(--border); padding: 3rem 1.5rem; margin-top: 4rem; }
.footer-wrap { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.footer-col h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 1rem; color: var(--text); }
.footer-col a, .footer-col p { display: block; color: var(--muted); font-size: 0.85rem; margin-bottom: 0.4rem; }
.footer-bottom { max-width: 1200px; margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid var(--border); text-align: center; color: var(--muted); font-size: 0.8rem; }

/* Page hero (subpages) */
.page-hero { padding: 9rem 1.5rem 4rem; text-align: center; max-width: 900px; margin: 0 auto; }
.page-hero h1 { font-size: 2.5rem; font-weight: 900; margin-bottom: 1rem; }
.page-hero p { color: var(--muted); font-size: 1.1rem; max-width: 640px; margin: 0 auto; }

/* Content */
.content { max-width: 800px; margin: 0 auto; padding: 2rem 1.5rem 4rem; }
.content h2 { font-size: 1.6rem; font-weight: 700; margin: 2.5rem 0 0.8rem; }
.content h3 { font-size: 1.2rem; font-weight: 700; margin: 2rem 0 0.6rem; }
.content p { color: var(--muted); margin-bottom: 1rem; line-height: 1.7; }
.content ul { margin: 0 0 1.5rem 1.5rem; color: var(--muted); }
.content ul li { margin-bottom: 0.4rem; }
.content .cta-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; text-align: center; margin: 3rem 0; }
.content .cta-box h3 { color: var(--text); margin-top: 0; }
.content .cta-box p { color: var(--muted); }

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .page-hero h1 { font-size: 1.8rem; }
  nav { display: none; }
  .hamburger { display: block; }
  nav.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-card); padding: 1rem; border-bottom: 1px solid var(--border); }
  .dropdown-menu { position: static; box-shadow: none; border: none; padding-left: 1rem; }
  .dropdown:hover .dropdown-menu { display: block; }
  .logo-top { font-size: 1.6rem; }
  .logo-bottom { font-size: 0.6rem; }
}
