/* Template 5 - Tech Blue / Corporate */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --gradient-1: linear-gradient(120deg, #1e3a8a 0%, #3b82f6 100%);
  --gradient-2: linear-gradient(120deg, #0ea5e9 0%, #06b6d4 100%);
  --gradient-3: linear-gradient(120deg, #6366f1 0%, #8b5cf6 100%);
  --gradient-4: linear-gradient(120deg, #0891b2 0%, #0284c7 100%);
  --gradient-5: linear-gradient(120deg, #2563eb 0%, #4f46e5 100%);

  --bg-primary: #f8fafc;
  --bg-secondary: #e2e8f0;
  --glass-bg: rgba(248, 250, 252, 0.98);
  --glass-border: rgba(30, 58, 138, 0.12);

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  
  --accent-blue: #3b82f6;
  --accent-cyan: #06b6d4;
}

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

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

body {
  font-family: 'IBM Plex Sans', sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

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

/* Header - Corporate Clean */
.site-header {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.site-logo a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-blue);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: all 0.3s ease;
}

.site-logo a:hover {
  color: var(--accent-cyan);
}

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

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.site-nav a:hover {
  color: var(--accent-blue);
  background: rgba(59, 130, 246, 0.05);
}

/* Hero Section - Right Aligned */
.section.head {
  padding: 8rem 0;
  text-align: right;
  position: relative;
}

.section.head h1 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -1.5px;
  animation: slideFromRight 0.8s ease;
}

@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.section.head p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin-left: auto;
}

/* Section Styling */
.section {
  padding: 5.5rem 0;
}

.section header {
  text-align: right;
  margin-bottom: 4rem;
}

.section header h2 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
  letter-spacing: -1px;
}

.section header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin-left: auto;
}

/* Footer - Tech Style */
.footer {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  padding: 4rem 0 2rem;
  margin-top: 6rem;
  color: #ffffff;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}

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

.footer-tagline {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.copyright a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

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

.fade-in {
  opacity: 0;
  animation: floatIn 0.7s ease forwards;
}

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

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-size: 1.8rem;
  color: var(--accent-blue);
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-align: left;
  font-weight: 600;
}
