/* MS Technet Secure - Multi-page Website Styles */

:root {
  --bg-main: #F8FAFC;
  --bg-surface: #FFFFFF;
  --primary: #2563EB;
  --primary-hover: #1D4ED8;
  --primary-dark: #1E3A8A;
  --accent-orange: #E85D04;
  --accent-green: #10B981;
  --text-main: #0F172A;
  --text-muted: #475569;
  --text-light: #94A3B8;
  --border-color: #E2E8F0;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  padding-top: 72px; /* For fixed navbar */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography & Buttons ── */
h1, h2, h3 { color: var(--primary-dark); line-height: 1.2; }
.text-gradient {
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: var(--radius-sm);
  font-weight: 600; text-decoration: none; cursor: pointer;
  transition: all 0.2s ease; border: none;
}
.btn-primary {
  background-color: var(--primary); color: white;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}
.btn-primary:hover { background-color: var(--primary-hover); transform: translateY(-2px); }
.btn-large { padding: 16px 32px; font-size: 18px; border-radius: var(--radius-md); }

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color); z-index: 100;
  transition: all 0.3s ease;
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-icon { width: 36px; height: 36px; background: var(--primary-dark); color: white; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; }
.brand-name { font-size: 20px; font-weight: 800; color: var(--primary-dark); letter-spacing: -0.5px; }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }

/* ── Hero Section (Home) ── */
.hero { padding: 100px 0 80px; background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%); }
.hero-container { display: flex; align-items: center; gap: 64px; }
.hero-content { flex: 1; }
.badge { display: inline-block; padding: 6px 12px; background: rgba(37, 99, 235, 0.1); color: var(--primary); border-radius: 100px; font-size: 14px; font-weight: 700; margin-bottom: 24px; }
.hero-title { font-size: 56px; font-weight: 800; letter-spacing: -1.5px; margin-bottom: 24px; }
.hero-subtitle { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; max-width: 500px; }
.hero-visual { flex: 1; text-align: center; }
.shield-large { width: 240px; height: auto; margin: 0 auto; filter: drop-shadow(0 20px 30px rgba(37, 99, 235, 0.2)); }

/* ── Inner Page Headers ── */
.page-header { background: var(--bg-surface); padding: 80px 0 60px; border-bottom: 1px solid var(--border-color); text-align: center; }
.page-header h1 { font-size: 40px; margin-bottom: 16px; }
.page-header p { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ── Content Sections (Legal & Standard) ── */
.content-section { padding: 60px 0; flex: 1; }
.content-card { background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 40px; box-shadow: var(--shadow-sm); }
.legal-text h2 { margin: 32px 0 16px; font-size: 24px; }
.legal-text p, .legal-text ul { margin-bottom: 16px; color: var(--text-muted); }
.legal-text ul { padding-left: 24px; }

/* ── Grids ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 40px; }
.card { background: var(--bg-surface); border: 1px solid var(--border-color); padding: 32px; border-radius: var(--radius-md); text-align: center; transition: transform 0.3s ease; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card-icon { width: 56px; height: 56px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; background: rgba(37, 99, 235, 0.1); color: var(--primary); }
.card-icon svg { width: 28px; height: 28px; }

/* ── Footer ── */
.footer { background: var(--bg-surface); padding: 60px 0 24px; border-top: 1px solid var(--border-color); margin-top: auto; }
.footer-container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; margin-bottom: 40px; }
.footer-links-group { display: flex; flex-direction: column; gap: 12px; }
.footer-links-group h4 { font-size: 16px; margin-bottom: 8px; }
.footer-links-group a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links-group a:hover { color: var(--primary); }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid var(--border-color); color: var(--text-light); font-size: 14px; }