/* ═══════════════════════════════════════════════════════════
   Security & Audit Manager – Professional Marketing Website
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg: #060a14;
  --bg-alt: #0b1120;
  --bg-card: #0f1729;
  --bg-card-2: #131d33;
  --border: #1a2744;
  --border-light: #223155;
  --text: #edf2f7;
  --text-dim: #8b9cc0;
  --text-muted: #5e6e8f;
  --primary: #3b82f6;
  --primary-dark: #2563eb;
  --primary-glow: rgba(59, 130, 246, 0.25);
  --accent: #8b5cf6;
  --accent-glow: rgba(139, 92, 246, 0.2);
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  --gradient-hero: linear-gradient(135deg, #3b82f6 0%, #06b6d4 50%, #8b5cf6 100%);
  --gradient-glow: radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font); background: var(--bg); color: var(--text);
  line-height: 1.6; -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ─── Navigation ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.1rem 0; transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav.scrolled {
  background: rgba(6, 10, 20, 0.92); backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(26, 39, 68, 0.6); padding: 0.65rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-size: 1.1rem; font-weight: 800; color: var(--text);
  display: flex; align-items: center; gap: 0.6rem; letter-spacing: -0.02em;
}
.nav-logo .logo-icon {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--gradient-primary); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; box-shadow: 0 2px 12px var(--primary-glow);
}
.nav-links { display: flex; gap: 2.2rem; }
.nav-links a {
  color: var(--text-dim); font-size: 0.87rem; font-weight: 500;
  transition: color 0.2s; position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--gradient-primary); border-radius: 2px; transition: width 0.2s;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.nav-trial-badge {
  font-size: 0.72rem; font-weight: 700; color: var(--success);
  background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 0.25rem 0.65rem; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.04em;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.72rem 1.6rem; border-radius: 10px; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: all 0.25s; border: none; font-family: var(--font);
}
.btn-primary {
  background: var(--gradient-primary); color: #fff;
  box-shadow: 0 4px 20px var(--primary-glow), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-primary:hover {
  transform: translateY(-2px); box-shadow: 0 8px 32px var(--primary-glow);
}
.btn-outline {
  background: transparent; border: 1.5px solid var(--border-light); color: var(--text);
}
.btn-outline:hover { border-color: var(--primary); background: rgba(59, 130, 246, 0.06); }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.82rem; }
.btn-lg { padding: 0.9rem 2.2rem; font-size: 1rem; }
.btn-block { display: flex; width: 100%; text-align: center; justify-content: center; }
.btn-success { background: linear-gradient(135deg, #10b981, #059669); color: #fff; box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3); }
.btn-success:hover { transform: translateY(-2px); }

/* ─── Hero ─── */
.hero {
  padding: 11rem 0 7rem; text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 120%; height: 100%; background: var(--gradient-glow); pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='g' width='60' height='60' patternUnits='userSpaceOnUse'%3E%3Cpath d='M60 0H0v60' fill='none' stroke='%231a2744' stroke-width='0.5' opacity='0.3'/%3E%3C/pattern%3E%3C/defs%3E%3Crect fill='url(%23g)' width='100%25' height='100%25'/%3E%3C/svg%3E");
  opacity: 0.4; pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero-badges { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 1rem; background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15); border-radius: 100px;
  font-size: 0.82rem; font-weight: 600; color: var(--primary);
}
.hero-badge.green { color: var(--success); background: rgba(16, 185, 129, 0.08); border-color: rgba(16, 185, 129, 0.15); }
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 850; line-height: 1.1;
  margin-bottom: 1.5rem; letter-spacing: -0.03em;
}
.gradient-text {
  background: var(--gradient-hero); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
  font-size: 1.15rem; color: var(--text-dim); max-width: 620px;
  margin: 0 auto 2.5rem; line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-trial-note { font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: 0.4rem; }
.hero-trust {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  font-size: 0.82rem; color: var(--text-dim); margin-top: 3rem;
}
.hero-trust span {
  padding: 0.35rem 0.9rem; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; font-weight: 600;
}

/* ─── Sections ─── */
.section { padding: 6.5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-badge {
  display: inline-flex; padding: 0.3rem 0.9rem;
  background: rgba(59, 130, 246, 0.08); border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: 100px; font-size: 0.78rem; font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1rem;
}
.section-header h2 { font-size: 2.3rem; font-weight: 800; margin-bottom: 0.75rem; letter-spacing: -0.02em; }
.section-header p { color: var(--text-dim); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* ─── Features ─── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem; transition: all 0.3s; position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient-primary); opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover { border-color: rgba(59, 130, 246, 0.25); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.35); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem; margin-bottom: 1rem;
  background: rgba(59, 130, 246, 0.08); border: 1px solid rgba(59, 130, 246, 0.12);
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; font-weight: 700; }
.feature-card p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.65; }

/* ─── Comparison Table ─── */
.comparison-table { max-width: 820px; margin: 0 auto; overflow-x: auto; }
.comparison-table table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.comparison-table th {
  padding: 1rem 1.25rem; text-align: left; background: rgba(0,0,0,0.35);
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-dim); font-weight: 700;
}
.comparison-table td { padding: 0.9rem 1.25rem; border-top: 1px solid var(--border); font-size: 0.88rem; }
.comparison-table td:first-child { font-weight: 600; }

/* ─── Security ─── */
.security-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.security-item {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; transition: border-color 0.2s;
}
.security-item:hover { border-color: rgba(59, 130, 246, 0.3); }
.security-item strong { display: block; margin-bottom: 0.5rem; color: var(--primary); font-size: 0.92rem; }
.security-item p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.65; }

/* ─── Pricing ─── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1020px; margin: 0 auto; }
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2.25rem; display: flex; flex-direction: column; position: relative; transition: all 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.pricing-card.popular { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary), 0 0 60px rgba(59,130,246,0.12); }
.popular-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-primary); color: #fff; padding: 0.3rem 1.4rem;
  border-radius: 100px; font-size: 0.78rem; font-weight: 700; box-shadow: 0 4px 16px var(--primary-glow);
}
.pricing-header { margin-bottom: 1.25rem; }
.pricing-header h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.3rem; }
.pricing-desc { font-size: 0.85rem; color: var(--text-dim); }
.pricing-price { margin-bottom: 1.5rem; display: flex; align-items: baseline; gap: 0.25rem; }
.pricing-price .price { font-size: 2.8rem; font-weight: 850; letter-spacing: -0.03em; }
.pricing-price .interval { font-size: 0.95rem; color: var(--text-dim); }
.pricing-trial {
  font-size: 0.78rem; color: var(--success); font-weight: 600;
  background: rgba(16, 185, 129, 0.08); border: 1px solid rgba(16, 185, 129, 0.15);
  padding: 0.35rem 0.9rem; border-radius: 8px; margin-bottom: 1.25rem;
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.pricing-features { list-style: none; margin-bottom: 2rem; flex: 1; }
.pricing-features li { padding: 0.4rem 0; font-size: 0.88rem; color: var(--text-dim); }

/* ─── Download ─── */
.download-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 800px; margin: 0 auto; }
.download-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; text-align: center; transition: all 0.25s;
}
.download-card:hover:not(.disabled) { border-color: var(--primary); transform: translateY(-4px); }
.download-card.disabled { opacity: 0.45; cursor: default; }
.download-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.download-card h3 { margin-bottom: 0.3rem; }
.download-card p { font-size: 0.82rem; color: var(--text-dim); margin-bottom: 1.25rem; }

/* ─── FAQ ─── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 0.75rem;
  overflow: hidden; background: var(--bg-card);
}
.faq-item summary {
  padding: 1.15rem 1.5rem; cursor: pointer; font-weight: 650; font-size: 0.93rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: rgba(255,255,255,0.02); }
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--text-muted); transition: transform 0.25s; }
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--primary); }
.faq-item p { padding: 0 1.5rem 1.3rem; font-size: 0.9rem; color: var(--text-dim); line-height: 1.75; }

/* ─── CTA ─── */
.cta-section {
  padding: 5.5rem 0; text-align: center;
  background: radial-gradient(ellipse at 50% 100%, rgba(59,130,246,0.1) 0%, transparent 65%);
}
.cta-section h2 { font-size: 2.1rem; font-weight: 800; margin-bottom: 0.75rem; }
.cta-section p { color: var(--text-dim); margin-bottom: 2rem; font-size: 1.05rem; }

/* ─── Trial Banner ─── */
.trial-banner {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 3rem; text-align: center; position: relative; overflow: hidden;
}
.trial-banner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-primary);
}
.trial-banner h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 0.75rem; }
.trial-banner p { color: var(--text-dim); margin-bottom: 2rem; font-size: 1rem; }
.trial-features { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; font-size: 0.88rem; color: var(--text-dim); }
.trial-features span { display: flex; align-items: center; gap: 0.4rem; }

/* ─── Footer ─── */
.footer { padding: 4.5rem 0 2rem; border-top: 1px solid var(--border); }
.footer-inner { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 3rem; margin-bottom: 3.5rem; }
.footer-logo { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.footer-brand p { font-size: 0.85rem; color: var(--text-dim); max-width: 280px; line-height: 1.65; }
.footer-col h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 1rem; font-weight: 700; }
.footer-col a { display: block; color: var(--text-dim); font-size: 0.88rem; padding: 0.3rem 0; transition: color 0.15s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { padding-top: 2rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.78rem; color: var(--text-muted); transition: color 0.15s; }
.footer-bottom-links a:hover { color: var(--text-dim); }

/* ─── Cookie Banner ─── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(11, 17, 32, 0.97); backdrop-filter: blur(20px);
  border-top: 1px solid var(--border); padding: 1.25rem 2rem;
  display: none; animation: slideUp 0.4s ease;
}
.cookie-banner.show { display: block; }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.cookie-text { font-size: 0.85rem; color: var(--text-dim); max-width: 680px; line-height: 1.6; }
.cookie-text a { color: var(--primary); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.75rem; }

/* ─── Legal Pages ─── */
.legal-page { padding: 8rem 0 4rem; min-height: 100vh; }
.legal-page h1 { font-size: 2rem; font-weight: 800; margin-bottom: 2rem; }
.legal-page h2 { font-size: 1.25rem; font-weight: 700; margin-top: 2.5rem; margin-bottom: 0.75rem; }
.legal-page p, .legal-page li { font-size: 0.92rem; color: var(--text-dim); line-height: 1.8; margin-bottom: 0.75rem; }
.legal-page ul, .legal-page ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-page a { color: var(--primary); text-decoration: underline; }
.legal-date { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 2rem; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .features-grid, .security-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .download-cards { grid-template-columns: 1fr; max-width: 320px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .hero { padding: 8rem 0 4rem; }
  .hero h1 { font-size: 2.1rem; }
  .section { padding: 4rem 0; }
  .features-grid, .security-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .cookie-inner { flex-direction: column; text-align: center; }
}
