/* Template 2 - Minimalist Nordic / Clean Lines */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --gradient-1: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
  --gradient-2: linear-gradient(180deg, #2d3436 0%, #636e72 100%);
  --gradient-3: linear-gradient(180deg, #74b9ff 0%, #0984e3 100%);
  --gradient-4: linear-gradient(180deg, #00b894 0%, #00cec9 100%);
  --gradient-5: linear-gradient(180deg, #fdcb6e 0%, #e17055 100%);

  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(45, 52, 54, 0.08);

  --text-primary: #2d3436;
  --text-secondary: #636e72;
  --text-muted: #b2bec3;
}

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

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

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

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: linear-gradient(180deg, #f8f9fa 0%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}

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

/* Header - Clean Top Bar */
.site-header {
  background: var(--bg-primary);
  border-bottom: 2px solid var(--glass-border);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.site-logo a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: all 0.3s ease;
}

.site-logo a:hover {
  color: #0984e3;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 3rem;
  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;
  letter-spacing: 0.3px;
}

.site-nav a:hover {
  color: var(--text-primary);
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #0984e3;
  transition: width 0.3s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

/* Hero Section - Spacious */
.section.head {
  padding: 10rem 0 8rem;
  text-align: left;
  position: relative;
}

.section.head h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -2px;
  animation: slideUp 0.8s ease;
}

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

.section.head p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
  line-height: 1.8;
}

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

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

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

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

/* Footer - Clean Minimal */
.footer {
  background: var(--bg-secondary);
  padding: 4rem 0 2rem;
  border-top: 2px solid var(--glass-border);
  margin-top: 6rem;
}

.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: var(--text-secondary);
  line-height: 1.8;
}

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}

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

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

.fade-in {
  opacity: 0;
  animation: floatIn 0.6s 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.75rem;
  color: var(--text-primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-align: left;
  font-weight: 600;
}
