/* Template 4 - Forest Green / Bold Modern */
@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --color-white: #ffffff;
  --color-mint: #e8f5ee;
  --color-sage: #a3c9b1;
  --color-forest: #1a5d3a;
  --color-deep-forest: #0f3d25;
  --color-midnight: #0d1f17;
  --color-lime-accent: #84cc16;

  --bg-primary: var(--color-mint);
  --bg-secondary: var(--color-white);
  --text-primary: var(--color-midnight);
  --text-secondary: #2d4a3a;
  --text-muted: #5c7a6a;
  --accent: var(--color-forest);
  --accent-hover: var(--color-deep-forest);
}

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

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

body {
  font-family: "Sora", sans-serif;
  line-height: 1.7;
  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 - Bold Left-Aligned with Accent Bar */
.site-header {
  background: var(--color-white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 24px rgba(13, 31, 23, 0.08);
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-forest) 0%, var(--color-lime-accent) 50%, var(--color-forest) 100%);
}

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

.site-logo a {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-forest);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.site-logo a:hover {
  color: var(--color-lime-accent);
  letter-spacing: 0.15em;
}

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

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
  padding: 0.75rem 1.25rem;
  border-radius: 0;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--color-forest);
  transition: width 0.3s ease;
}

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

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

/* Hero Section - Bold Asymmetric */
.section.head {
  padding: 6rem 0;
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

.section.head::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--color-mint);
  border-radius: 50%;
  opacity: 0.6;
  z-index: 0;
}

.section.head::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: var(--color-lime-accent);
  border-radius: 50%;
  opacity: 0.2;
  z-index: 0;
}

.section.head .container {
  position: relative;
  z-index: 1;
  text-align: left;
}

.section.head h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.75rem;
  font-weight: 800;
  color: var(--color-midnight);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 800px;
  animation: slideRight 0.7s ease-out;
}

.section.head p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  font-weight: 400;
  animation: slideRight 0.7s ease-out 0.15s both;
}

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

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

.section header {
  text-align: left;
  margin-bottom: 3rem;
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}

.section header h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-midnight);
  margin-bottom: 0;
  position: relative;
  padding-left: 1.5rem;
}

.section header h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--color-forest);
  border-radius: 3px;
}

.section header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 450px;
  margin: 0;
  padding-bottom: 0.5rem;
}

/* Footer - Stacked Modern */
.footer {
  background: var(--color-midnight);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-columns {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about {
  max-width: 100%;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-size: 1rem;
  max-width: 600px;
}

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

.footer-links a {
  color: var(--color-sage);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::before {
  content: "//";
  margin-right: 0.5rem;
  color: var(--color-lime-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.footer-links a:hover::before {
  opacity: 1;
}

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

.copyright,
.copyright a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeSlide 0.6s ease forwards;
}

@keyframes fadeSlide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.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; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }

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: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  color: var(--color-midnight);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  padding-left: 1rem;
  border-left: 3px solid var(--color-forest);
}
