@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('../webfonts/fa-brands-400.woff2') format('woff2'),
       url('../webfonts/fa-brands-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('../webfonts/fa-regular-400.woff2') format('woff2'),
       url('../webfonts/fa-regular-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url('../webfonts/fa-solid-900.woff2') format('woff2'),
       url('../webfonts/fa-solid-900.ttf') format('truetype');
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1a2e1e;
  background-color: #f8f7f0;
}

a {
  color: #047857;
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: #065f46;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.sm-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.sm-section {
  padding: 96px 0;
}

.sm-section-alt {
  padding: 96px 0;
  background-color: #f0f5ee;
}

.sm-section-dark {
  padding: 96px 0;
  background-color: #0d2117;
  color: #ffffff;
}

.sm-section-white {
  padding: 96px 0;
  background-color: #ffffff;
}

.sm-section-primary {
  padding: 96px 0;
  background-color: #047857;
  color: #ffffff;
}

.sm-section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 64px;
  color: #1a2e1e;
}

.sm-section-title.text-white {
  color: #ffffff;
}

.sm-section-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: #5a7060;
  max-width: 640px;
}

.sm-section-subtitle.text-white {
  color: rgba(255,255,255,0.85);
}

.sm-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
}

.sm-btn-primary {
  background-color: #047857;
  color: #ffffff;
}

.sm-btn-primary:hover {
  background-color: #065f46;
  color: #ffffff;
  transform: translateY(-3px);
}

.sm-btn-secondary {
  background-color: transparent;
  color: #047857;
  border: 2px solid #047857;
}

.sm-btn-secondary:hover {
  background-color: #047857;
  color: #ffffff;
  transform: translateY(-3px);
}

.sm-btn-accent {
  background-color: #b45309;
  color: #ffffff;
}

.sm-btn-accent:hover {
  background-color: #92400e;
  color: #ffffff;
  transform: translateY(-3px);
}

.sm-btn-text {
  background: transparent;
  color: #047857;
  padding: 0;
  border-radius: 0;
}

.sm-btn-text:hover {
  color: #065f46;
  text-decoration: underline;
}

.sm-btn-white {
  background-color: #ffffff;
  color: #047857;
}

.sm-btn-white:hover {
  background-color: #f0f5ee;
  color: #065f46;
  transform: translateY(-3px);
}

.sm-btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.site-nav.nav-transparent {
  background-color: transparent;
}

.site-nav.nav-solid {
  background-color: #0d2117;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.site-nav.nav-scrolled {
  background-color: #0d2117;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.sm-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.sm-nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.sm-nav-logo {
  height: 36px;
  width: auto;
}

.sm-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.sm-nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.sm-nav-links a:hover {
  color: #ffffff;
  background-color: rgba(255,255,255,0.1);
}

.sm-nav-links a.active {
  color: #ffffff;
}

.sm-nav-cta {
  margin-left: 16px;
}

.sm-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  padding: 8px;
}

.sm-nav-mobile {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  width: 100%;
  background-color: #0d2117;
  padding: 16px 24px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.sm-nav-mobile.open {
  display: block;
}

.sm-nav-mobile ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sm-nav-mobile ul li {
  border-bottom: 1px solid #2d5a40;
}

.sm-nav-mobile ul li a {
  display: block;
  padding: 12px 0;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.sm-nav-mobile ul li a:hover {
  color: #3d9970;
}

.sm-nav-mobile .sm-btn-primary {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 16px;
}

.sm-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #0d2117;
}

.sm-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.sm-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,33,23,0.62);
  z-index: 1;
  pointer-events: none;
}

.sm-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 72px;
}

.sm-hero-badge {
  display: inline-block;
  background-color: rgba(4,120,87,0.3);
  border: 1px solid rgba(61,153,112,0.6);
  color: #a7f3d0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.sm-hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 20px;
}

.sm-hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin-bottom: 36px;
}

.sm-hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.sm-hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  font-size: 20px;
  animation: sm-bounce 2s infinite;
  cursor: pointer;
}

@keyframes sm-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

.sm-page-hero {
  padding: 140px 0 80px;
  background-color: #0d2117;
  color: #ffffff;
  text-align: center;
}

.sm-page-hero h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 16px;
}

.sm-page-hero p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
}

.sm-split-hero {
  padding: 140px 0 80px;
  background-color: #0d2117;
  color: #ffffff;
}

.sm-split-hero h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 16px;
}

.sm-split-hero p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}

.sm-split-hero img {
  border-radius: 16px;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.sm-stats-bar {
  padding: 72px 0;
  background-color: #0d2117;
  background-size: cover;
  background-position: center;
  position: relative;
}

.sm-stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,33,23,0.8);
  z-index: 0;
}

.sm-stats-bar .sm-container {
  position: relative;
  z-index: 1;
}

.sm-stat-item {
  text-align: center;
  padding: 24px 16px;
}

.sm-stat-number {
  font-size: 44px;
  font-weight: 700;
  color: #3d9970;
  line-height: 1.1;
  margin-bottom: 8px;
}

.sm-stat-icon {
  font-size: 24px;
  color: #3d9970;
  margin-bottom: 12px;
}

.sm-stat-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.sm-feature-card {
  background-color: #ffffff;
  border: 1px solid #d4e0d0;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.2s ease;
  box-shadow: 0 2px 12px rgba(4,120,87,0.08);
}

.sm-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-color: #3d9970;
}

.sm-feature-icon {
  width: 52px;
  height: 52px;
  background-color: #f0f5ee;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #047857;
  font-size: 20px;
  flex-shrink: 0;
}

.sm-feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a2e1e;
  margin-bottom: 10px;
  line-height: 1.3;
}

.sm-feature-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #5a7060;
  flex: 1;
}

.sm-step-item {
  text-align: center;
  padding: 32px 24px;
}

.sm-step-number {
  width: 56px;
  height: 56px;
  background-color: #047857;
  color: #ffffff;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.sm-step-icon {
  font-size: 18px;
}

.sm-step-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a2e1e;
  margin-bottom: 10px;
}

.sm-step-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #5a7060;
}

.sm-testimonial-card {
  background-color: #ffffff;
  border: 1px solid #d4e0d0;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 2px 12px rgba(4,120,87,0.08);
}

.sm-testimonial-stars {
  color: #b45309;
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.sm-testimonial-quote {
  font-size: 15px;
  line-height: 1.65;
  color: #1a2e1e;
  font-style: italic;
  flex: 1;
  margin-bottom: 20px;
}

.sm-testimonial-author {
  font-weight: 600;
  font-size: 14px;
  color: #1a2e1e;
}

.sm-testimonial-farm {
  font-size: 13px;
  color: #5a7060;
  margin-top: 2px;
}

.sm-cta-band {
  padding: 80px 0;
  background-color: #047857;
}

.sm-cta-band h2 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 12px;
}

.sm-cta-band p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0;
}

.sm-cta-mockup {
  width: 100%;
  max-width: 320px;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.sm-blog-card {
  background-color: #ffffff;
  border: 1px solid #d4e0d0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.2s ease;
  box-shadow: 0 2px 12px rgba(4,120,87,0.08);
}

.sm-blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.sm-blog-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.sm-blog-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sm-blog-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #047857;
  background-color: #f0f5ee;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.sm-blog-tag i {
  margin-right: 4px;
}

.sm-blog-date {
  font-size: 13px;
  color: #5a7060;
  margin-bottom: 8px;
}

.sm-blog-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #1a2e1e;
  margin-bottom: 10px;
}

.sm-blog-title a {
  color: #1a2e1e;
  text-decoration: none;
}

.sm-blog-title a:hover {
  color: #047857;
}

.sm-blog-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: #5a7060;
  flex: 1;
  margin-bottom: 16px;
}

.sm-read-more {
  margin-top: auto;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #047857;
  text-decoration: none;
}

.sm-read-more:hover {
  color: #065f46;
  text-decoration: underline;
}

.sm-feature-row {
  padding: 80px 0;
}

.sm-feature-row:nth-child(even) {
  background-color: #f0f5ee;
}

.sm-feature-row-img {
  border-radius: 16px;
  width: 100%;
  height: 340px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.sm-feature-row-icon {
  font-size: 28px;
  color: #047857;
  margin-bottom: 16px;
}

.sm-feature-row h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #1a2e1e;
  margin-bottom: 16px;
}

.sm-feature-row p {
  font-size: 17px;
  line-height: 1.7;
  color: #5a7060;
  margin-bottom: 16px;
}

.sm-tech-strip {
  padding: 72px 0;
  background-color: #0d2117;
}

.sm-tech-tile {
  text-align: center;
  padding: 32px 16px;
  background-color: #1a3d2b;
  border: 1px solid #2d5a40;
  border-radius: 12px;
}

.sm-tech-tile i {
  font-size: 32px;
  color: #3d9970;
  margin-bottom: 12px;
  display: block;
}

.sm-tech-tile span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.sm-timeline {
  position: relative;
  padding: 0;
}

.sm-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #d4e0d0;
  transform: translateX(-50%);
}

.sm-timeline-item {
  position: relative;
  display: flex;
  gap: 48px;
  margin-bottom: 48px;
  align-items: flex-start;
}

.sm-timeline-item:nth-child(odd) {
  flex-direction: row;
  text-align: right;
}

.sm-timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  text-align: left;
}

.sm-timeline-content {
  flex: 1;
  background-color: #ffffff;
  border: 1px solid #d4e0d0;
  border-radius: 12px;
  padding: 24px 28px;
  box-shadow: 0 2px 12px rgba(4,120,87,0.08);
}

.sm-timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background-color: #047857;
  border: 3px solid #f8f7f0;
  border-radius: 50%;
  top: 24px;
  z-index: 1;
}

.sm-timeline-year {
  font-size: 13px;
  font-weight: 700;
  color: #047857;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.sm-timeline-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a2e1e;
  margin-bottom: 6px;
}

.sm-timeline-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #5a7060;
}

.sm-values-card {
  background-color: #ffffff;
  border: 1px solid #d4e0d0;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 12px rgba(4,120,87,0.08);
}

.sm-values-icon {
  width: 56px;
  height: 56px;
  background-color: #f0f5ee;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #047857;
  font-size: 22px;
  margin-bottom: 16px;
}

.sm-values-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a2e1e;
  margin-bottom: 10px;
}

.sm-values-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #5a7060;
}

.sm-team-card {
  background-color: #ffffff;
  border: 1px solid #d4e0d0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 2px 12px rgba(4,120,87,0.08);
  transition: all 0.2s ease;
}

.sm-team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.sm-team-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.sm-team-info {
  padding: 24px;
  flex: 1;
}

.sm-team-name {
  font-size: 17px;
  font-weight: 600;
  color: #1a2e1e;
  margin-bottom: 4px;
}

.sm-team-title {
  font-size: 14px;
  font-weight: 500;
  color: #047857;
  margin-bottom: 10px;
}

.sm-team-bio {
  font-size: 14px;
  line-height: 1.6;
  color: #5a7060;
}

.sm-join-band {
  padding: 72px 0;
  background-color: #f0f5ee;
  text-align: center;
}

.sm-join-band h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1a2e1e;
  margin-bottom: 12px;
}

.sm-join-band p {
  font-size: 17px;
  color: #5a7060;
  margin-bottom: 24px;
}

.sm-contact-form-section {
  padding: 96px 0;
}

.sm-form-label {
  font-size: 14px;
  font-weight: 500;
  color: #1a2e1e;
  margin-bottom: 6px;
  display: block;
}

.sm-form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d4e0d0;
  border-radius: 8px;
  font-size: 15px;
  color: #1a2e1e;
  background-color: #ffffff;
  transition: all 0.2s ease;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.sm-form-control:focus {
  outline: none;
  border-color: #047857;
  box-shadow: 0 0 0 3px rgba(4,120,87,0.1);
}

.sm-form-group {
  margin-bottom: 20px;
}

.sm-contact-info-card {
  background-color: #f0f5ee;
  border: 1px solid #d4e0d0;
  border-radius: 16px;
  padding: 36px;
  height: 100%;
}

.sm-contact-info-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a2e1e;
  margin-bottom: 24px;
}

.sm-contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.sm-contact-info-icon {
  width: 36px;
  height: 36px;
  background-color: #047857;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.sm-contact-info-text {
  font-size: 15px;
  color: #1a2e1e;
  line-height: 1.5;
}

.sm-contact-info-text a {
  color: #047857;
  text-decoration: none;
}

.sm-contact-info-text a:hover {
  text-decoration: underline;
}

.sm-map-placeholder {
  background-color: #d4e0d0;
  border-radius: 12px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5a7060;
  font-size: 14px;
  margin-top: 24px;
}

.site-footer {
  background-color: #0d2117;
  padding: 64px 0 40px;
  color: rgba(255,255,255,0.75);
}

.sm-footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: 12px;
}

.sm-footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin-bottom: 16px;
}

.sm-footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.sm-footer-heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}

.sm-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sm-footer-links li {
  margin-bottom: 8px;
}

.sm-footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.sm-footer-links a:hover {
  color: #3d9970;
}

.sm-footer-contact {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.sm-footer-contact p {
  margin-bottom: 6px;
}

.sm-footer-contact a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.sm-footer-contact a:hover {
  color: #3d9970;
}

.sm-footer-bottom {
  border-top: 1px solid #2d5a40;
  margin-top: 40px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.sm-footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.sm-footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
}

.sm-footer-legal a:hover {
  color: rgba(255,255,255,0.8);
}

#sm-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: #0d2117;
  border-top: 2px solid #2d5a40;
  padding: 20px 24px;
  display: none;
}

.sm-cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.sm-cookie-text {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  flex: 1;
}

.sm-cookie-text a {
  color: #3d9970;
  text-decoration: underline;
}

.sm-cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.sm-article-hero {
  padding: 140px 0 60px;
  background-color: #0d2117;
  color: #ffffff;
  text-align: center;
}

.sm-article-hero .sm-article-tag {
  display: inline-block;
  background-color: rgba(4,120,87,0.3);
  border: 1px solid rgba(61,153,112,0.5);
  color: #a7f3d0;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.sm-article-hero h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
  max-width: 760px;
  margin: 0 auto 16px;
}

.sm-article-hero .sm-article-date {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.sm-article-img {
  width: 100%;
  max-width: 780px;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 auto 48px;
  display: block;
}

.sm-article-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.sm-article-body p {
  font-size: 17px;
  line-height: 1.75;
  color: #1a2e1e;
  margin-bottom: 24px;
}

.sm-article-body h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1a2e1e;
  margin-top: 48px;
  margin-bottom: 16px;
  line-height: 1.25;
}

.sm-article-body h3 {
  font-size: 22px;
  font-weight: 600;
  color: #1a2e1e;
  margin-top: 32px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.sm-article-body ul, .sm-article-body ol {
  margin-bottom: 24px;
  padding-left: 28px;
}

.sm-article-body li {
  font-size: 17px;
  line-height: 1.75;
  color: #1a2e1e;
  margin-bottom: 8px;
}

.sm-article-body blockquote {
  border-left: 4px solid #047857;
  padding: 16px 24px;
  margin: 32px 0;
  background-color: #f0f5ee;
  border-radius: 0 8px 8px 0;
}

.sm-article-body blockquote p {
  font-style: italic;
  color: #1a2e1e;
  margin-bottom: 0;
}

.sm-article-related {
  padding: 64px 0;
  background-color: #f0f5ee;
}

.sm-article-related h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1a2e1e;
  margin-bottom: 32px;
}

.sm-prev-next {
  padding: 48px 0;
  border-top: 1px solid #d4e0d0;
}

.sm-prev-next a {
  display: block;
  padding: 20px;
  border: 1px solid #d4e0d0;
  border-radius: 8px;
  color: #1a2e1e;
  text-decoration: none;
  transition: all 0.2s ease;
}

.sm-prev-next a:hover {
  border-color: #047857;
  background-color: #f0f5ee;
}

.sm-prev-next .sm-pn-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #5a7060;
  margin-bottom: 4px;
}

.sm-prev-next .sm-pn-title {
  font-size: 15px;
  font-weight: 600;
  color: #1a2e1e;
}

.sm-legal-hero {
  padding: 140px 0 60px;
  background-color: #0d2117;
  text-align: center;
}

.sm-legal-hero h1 {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.sm-legal-hero p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
}

.sm-legal-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

.sm-legal-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1a2e1e;
  margin-top: 40px;
  margin-bottom: 14px;
}

.sm-legal-body h3 {
  font-size: 17px;
  font-weight: 600;
  color: #1a2e1e;
  margin-top: 24px;
  margin-bottom: 10px;
}

.sm-legal-body p {
  font-size: 16px;
  line-height: 1.7;
  color: #1a2e1e;
  margin-bottom: 16px;
}

.sm-legal-body ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.sm-legal-body li {
  font-size: 16px;
  line-height: 1.7;
  color: #1a2e1e;
  margin-bottom: 8px;
}

.sm-legal-updated {
  font-size: 13px;
  color: #5a7060;
  margin-bottom: 32px;
}

.sm-404-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f8f7f0;
  text-align: center;
  padding: 48px 24px;
}

.sm-404-logo {
  height: 36px;
  margin-bottom: 48px;
}

.sm-404-number {
  font-size: 160px;
  font-weight: 900;
  color: #047857;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}

.sm-404-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a2e1e;
  margin-bottom: 16px;
}

.sm-404-text {
  font-size: 17px;
  color: #5a7060;
  max-width: 440px;
  line-height: 1.65;
  margin-bottom: 32px;
}

.sm-mission-block {
  padding: 80px 0;
  background-color: #0d2117;
  text-align: center;
}

.sm-mission-block h2 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto 16px;
  line-height: 1.3;
}

.sm-mission-block p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.sm-about-cta {
  padding: 80px 0;
  background-color: #f0f5ee;
  text-align: center;
}

.sm-about-cta h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1a2e1e;
  margin-bottom: 16px;
}

.sm-about-cta p {
  font-size: 17px;
  color: #5a7060;
  margin-bottom: 8px;
}

.sm-about-cta a {
  color: #047857;
}

@media (max-width: 991px) {
  .sm-hero-title {
    font-size: 36px;
  }
  .sm-section-title {
    font-size: 28px;
  }
  .sm-timeline::before {
    left: 20px;
  }
  .sm-timeline-item,
  .sm-timeline-item:nth-child(odd),
  .sm-timeline-item:nth-child(even) {
    flex-direction: column;
    text-align: left;
    padding-left: 56px;
    gap: 16px;
  }
  .sm-timeline-dot {
    left: 20px;
    top: 12px;
  }
}

@media (max-width: 767px) {
  .sm-section, .sm-section-alt, .sm-section-dark, .sm-section-white, .sm-section-primary {
    padding: 64px 0;
  }
  .sm-hero-title {
    font-size: 28px;
  }
  .sm-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .sm-nav-links, .sm-nav-cta {
    display: none;
  }
  .sm-nav-toggle {
    display: block;
  }
  .sm-split-hero h1 {
    font-size: 32px;
  }
  .sm-split-hero img {
    height: 280px;
    margin-top: 32px;
  }
  .sm-page-hero h1 {
    font-size: 32px;
  }
  .sm-cta-band .row {
    flex-direction: column-reverse;
  }
  .sm-cta-mockup {
    max-width: 200px;
    height: 280px;
    margin: 0 auto 32px;
  }
  .sm-feature-row-img {
    height: 240px;
    margin-bottom: 24px;
  }
  .sm-team-photo {
    height: 220px;
  }
  .sm-404-number {
    font-size: 100px;
  }
  .sm-404-title {
    font-size: 24px;
  }
  .sm-cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .sm-article-hero h1 {
    font-size: 28px;
  }
  .sm-article-img {
    height: 240px;
  }
}

/* Logo dark/light variant swap */
.logo-img {
  max-height: 40px;
  width: auto;
  vertical-align: middle;
  display: inline-block;
}
/* Light hero default: show dark logo */
/* Nav is always dark (transparent over dark hero / solid #0d2117). Always show light logo. */
.site-nav .logo-img--dark { display: none; }
.site-nav .logo-img--light { display: inline-block; }
body.light-nav .site-nav .logo-img--dark { display: inline-block; }
body.light-nav .site-nav .logo-img--light { display: none; }
