/* Template 13 - Midnight Blue / Corporate Sleek */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg-dark: #0a1628;
  --bg-navy: #0f2042;
  --bg-card: #162a4a;
  --bg-surface: #1a3258;
  --text-white: #ffffff;
  --text-light: #e2e8f0;
  --text-muted: #94a3b8;
  --accent-blue: #3b82f6;
  --accent-cyan: #06b6d4;
  --accent-gradient: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  --border-subtle: rgba(255, 255, 255, 0.08);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  line-height: 1.7;
  color: var(--text-light);
  background: var(--bg-dark);
  font-weight: 400;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header - Sleek Corporate */
.site-header {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.site-logo a::before {
  content: '';
  width: 32px;
  height: 32px;
  background: var(--accent-gradient);
  border-radius: 8px;
  display: inline-block;
}

.site-logo a:hover {
  opacity: 0.9;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.site-nav a:hover {
  color: var(--text-white);
  background: var(--bg-card);
}

/* Hero Section */
.section.head {
  padding: 6rem 0;
  text-align: left;
  background: var(--bg-navy);
  position: relative;
  overflow: hidden;
}

.section.head::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: var(--accent-gradient);
  opacity: 0.05;
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}

.section.head h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-white);
  line-height: 1.15;
  max-width: 700px;
}

.section.head h1 span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section.head p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 550px;
  line-height: 1.8;
}

/* Section Styling */
.section {
  padding: 5rem 0;
  background: var(--bg-dark);
}

.section header {
  margin-bottom: 3rem;
}

.section header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-white);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.section header h2::before {
  content: '';
  width: 4px;
  height: 32px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

.section header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
}

/* Footer */
.footer {
  background: var(--bg-navy);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-subtle);
  margin-top: 4rem;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-about {
  flex: 1;
  max-width: 350px;
}

.footer-tagline {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s ease;
  position: relative;
}

.footer-links a:hover {
  color: var(--accent-cyan);
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: width 0.25s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-bottom {
  text-align: center;
}

.copyright a {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: slideUp 0.5s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.15s; }
.fade-in:nth-child(3) { animation-delay: 0.2s; }

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

body:not(.faq) h3,
:not(section.faq) h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  color: var(--text-white);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  text-align: left;
}
