/* Template 3 - Ocean Blue / Minimalist Clean */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=DM+Sans:wght@400;500;700&display=swap");

:root {
  --primary-color: #0066cc;
  --secondary-color: #0088ff;
  --accent-color: #00aaff;
  --highlight-color: #66ccff;

  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-dark: #0a1628;

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --text-light: #f1f5f9;
}

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

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

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

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

/* Header - Clean Minimal Top Bar */
.site-header {
  background: var(--bg-primary);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #e2e8f0;
  transition: box-shadow 0.3s ease;
}

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

.site-logo a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  transition: all 0.25s ease;
  
}



.site-logo img:hover {
  opacity: 0.85;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0.25rem;
  align-items: center;
  background: var(--bg-secondary);
  padding: 0.35rem;
  border-radius: 12px;
}

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.site-nav a:hover {
  color: var(--primary-color);
  background: var(--bg-primary);
  box-shadow: 0 2px 8px rgba(0, 102, 204, 0.1);
}

/* Hero Section - Bold Left-Aligned */
.section.head {
  padding: 7rem 0 5rem;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

.section.head::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 136, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section.head h1 {
  font-family: "DM Sans", sans-serif;
  font-size: 3.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
  line-height: 1.15;
  animation: slideIn 0.6s ease forwards;
}

.section.head p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  animation: slideIn 0.6s ease 0.15s forwards;
  opacity: 0;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.section header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section header h2 {
  font-family: "DM Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.section header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto;
}

/* Footer - Clean Horizontal */
.footer {
  background: var(--bg-dark);
  padding: 3.5rem 0 1.5rem;
  margin-top: 5rem;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-tagline {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1rem;
  opacity: 0.8;
}

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

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

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

.footer-links a:hover {
  opacity: 1;
  color: var(--highlight-color);
}

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

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

.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.5s ease forwards;
}

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

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: "DM Sans", sans-serif;
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-weight: 600;
}
