@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Newsreader:ital,opsz,wght@0,6..72,400;1,6..72,400&display=swap');

:root {
  --bg-primary: #fdfdfc; /* Clean, almost white with a tiny hint of green */
  --bg-secondary: #f4f8f1; /* Soft green-grey background for cards/sections */
  --bg-tertiary: #e9f2e3; /* Slightly darker for contrast */
  --text-main: #2d3827; /* Dark earthy green */
  --text-muted: #5e6b56;
  --text-faint: #98a391;
  --border-color: #dbe6d3;
  --accent-color: #659a3c; /* Natural leaf green */
  --accent-hover: #4e7a2e;
  --container-width: 1200px;
  --spacing-section: 80px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container-width), calc(100% - 48px));
  margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4 {
  margin: 0;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(44px, 5vw, 68px);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(32px, 4vw, 44px);
}

h3 {
  font-size: 22px;
}

p {
  margin: 0;
}

.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.quote-font {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 400;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 253, 252, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(219, 230, 211, 0.4);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--text-main);
  transition: opacity 0.2s ease;
}

.brand:hover {
  opacity: 0.8;
}

.brand-logo {
  height: 32px;
  width: auto;
  display: block;
}

.footer-logo {
  height: 24px;
}

.site-nav {
  display: flex;
  gap: 40px;
}

.site-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

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

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.lang-switcher {
  display: flex;
  background: var(--bg-secondary);
  border-radius: 99px;
  padding: 4px;
}

.lang-btn {
  background: transparent;
  border: none;
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn.active {
  background: var(--bg-primary);
  color: var(--accent-color);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--text-main);
  color: #fff;
  box-shadow: 0 8px 24px rgba(45, 56, 39, 0.15);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(78, 122, 46, 0.25);
}

.btn-text {
  background: transparent;
  color: var(--text-main);
  font-weight: 600;
}

.btn-text:hover {
  color: var(--accent-color);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-outline {
  border-color: var(--border-color);
  background: transparent;
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--text-main);
  background: var(--text-main);
  color: #fff;
}

/* Layout Utilities */
.section {
  padding: var(--spacing-section) 0;
}

.bg-white {
  background-color: #ffffff;
}

/* Hero Section - Redesigned Centered */
.hero {
  padding-top: 80px;
  padding-bottom: 60px;
  overflow: hidden;
  position: relative;
}

/* Add a very soft, blurry organic background shape */
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 80vw;
  max-width: 1000px;
  max-height: 1000px;
  background: radial-gradient(circle, rgba(101, 154, 60, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-centered {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  padding: 8px 16px;
  background: var(--bg-tertiary);
  color: var(--accent-color);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text-highlight {
  color: var(--accent-color);
  font-style: italic;
  font-family: 'Newsreader', serif;
  font-weight: 400;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-muted);
  margin-top: 24px;
  max-width: 660px;
  line-height: 1.6;
}

.hero-actions {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-trust {
  margin-top: 60px;
  font-size: 14px;
  color: var(--text-faint);
  font-weight: 500;
}

/* Hero Visual Cards */
.hero-visual-cards {
  margin-top: 80px;
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 240px;
  display: flex;
  justify-content: center;
}

.card-left {
  position: absolute;
  left: 10%;
  top: 20px;
  transform: rotate(-2deg);
}

.card-right {
  position: absolute;
  right: 10%;
  top: -10px;
  transform: rotate(3deg);
}

.mockup-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.03);
  width: 320px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
  text-align: left;
}

.mockup-card:hover {
  transform: translateY(-10px) rotate(0deg);
  box-shadow: 0 30px 60px rgba(101, 154, 60, 0.08);
  z-index: 10;
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pulse {
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(101, 154, 60, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(101, 154, 60, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(101, 154, 60, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(101, 154, 60, 0); }
}

.mockup-body {
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.5;
}

.brand-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brand-chip-item {
  background: var(--bg-tertiary);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--accent-hover);
  font-weight: 500;
}

/* Situations / Horizontal Scroll or Wrap */
.situations {
  padding: 80px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.situations-layout {
  display: flex;
  align-items: center;
  gap: 40px;
}

.situations-title-wrap {
  flex: 0 0 240px;
}

.situations-title-wrap h2 {
  font-size: 24px;
  color: var(--text-main);
  margin-bottom: 16px;
}

.situations-line {
  height: 2px;
  width: 40px;
  background: var(--accent-color);
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  flex: 1;
}

.chip {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text-muted);
  transition: all 0.3s ease;
  cursor: default;
}

.chip:hover {
  border-color: var(--accent-color);
  color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(101, 154, 60, 0.05);
}

/* Support Section */
.support-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.support-intro-left h2 {
  font-size: clamp(36px, 5vw, 56px);
  max-width: 600px;
  line-height: 1.1;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.support-intro-right {
  flex: 0 0 400px;
}

.support-intro-right p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .support-intro {
    flex-direction: column;
    align-items: flex-start;
  }
  .support-intro-right {
    flex: auto;
  }
}

.support-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bento-card {
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.04);
}

.bento-icon {
  font-family: 'Newsreader', serif;
  font-size: 28px;
  font-style: italic;
  color: var(--accent-color);
  opacity: 0.6;
  line-height: 1;
}

.bento-content h3 {
  font-size: 18px;
  color: var(--text-main);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.bento-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* Decor inside bento cards */
.bento-decor {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 120px;
  height: 120px;
  opacity: 0.05;
  color: var(--text-main);
  z-index: 1;
}

/* Grid Spans - Simplified for 3-col layout */
.card-wide, .card-square, .card-half { grid-column: auto; }

/* Constrain width on wide cards */
.card-wide .bento-content {
  max-width: 100%;
}

/* Themes */
.bg-white { 
  background: #ffffff; 
}
.bg-secondary { 
  background: var(--bg-secondary); 
  border-color: transparent;
}
.bg-tertiary { 
  background: var(--bg-tertiary); 
  border-color: transparent;
}
.bg-accent { 
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
  border-color: transparent;
}
.bg-accent .bento-icon { color: rgba(255,255,255,0.6); }
.bg-accent .bento-content h3 { color: #ffffff; }
.bg-accent .bento-content p { color: rgba(255,255,255,0.8); }
.bg-accent .bento-decor { color: #ffffff; opacity: 0.1; }

@media (max-width: 992px) {
  .support-bento { grid-template-columns: repeat(2, 1fr); }
  .card-wide, .card-square, .card-half { grid-column: auto; min-height: auto; }
  .card-wide .bento-content { max-width: 100%; }
}

@media (max-width: 768px) {
  .support-bento { grid-template-columns: 1fr; }
}

/* Stats Section */
.stats {
  padding: 0;
}

.stats-compact {
  background: var(--text-main);
  border-radius: var(--radius-lg);
  padding: 48px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 40px rgba(45, 56, 39, 0.1);
}

.stats-compact-left {
  max-width: 480px;
}

.stats-compact-left h2 {
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 12px;
}

.stats-compact-left p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.stats-compact-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.stat-compact-item {
  display: flex;
  flex-direction: column;
}

.stat-compact-item .stat-number-wrap {
  font-size: 56px;
  color: var(--accent-color);
  font-family: 'Newsreader', serif;
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
}

.stat-compact-item .stat-number-wrap span:last-child {
  font-size: 24px;
  margin-left: 4px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
}

.stat-compact-item .stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
  .stats-compact {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: 40px;
  }
  .stat-divider {
    width: 100%;
    height: 1px;
  }
  .stats-compact-right {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
}

/* Stories / Quotes */
.stories {
  background: var(--bg-primary);
}

.stories-header-center {
  text-align: center;
  margin-bottom: 60px;
}

.quotes-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 60px;
  mask-image: linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
}

.quotes-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: quotes-scroll 50s linear infinite;
  padding: 0 12px;
}

.quotes-track:hover {
  animation-play-state: paused;
}

@keyframes quotes-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); }
}

.quote-card {
  flex: 0 0 360px;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  border: 1px solid var(--border-color);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.quote-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.03);
}

.quote-text {
  font-size: 20px; /* Reduced slightly to fit longer philosophy quotes */
  line-height: 1.5;
  color: var(--text-main);
  margin-bottom: 40px;
}

.quote-text.en-long {
  font-size: 18px;
}

.quote-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

.author-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
}

.author-loc {
  font-size: 12px;
  color: var(--accent-hover);
  background: var(--bg-tertiary);
  padding: 6px 12px;
  border-radius: 99px;
  font-weight: 600;
}

/* Approach / Process */
.approach-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}

.approach-desc {
  margin-top: 20px;
  font-size: 18px;
  color: var(--text-muted);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.process-step-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.process-step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.process-step-card:hover::before {
  transform: scaleX(1);
}

.step-num {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 24px;
  line-height: 1;
  opacity: 0.5;
}

.process-step-card h4 {
  margin-bottom: 16px;
  font-size: 20px;
  color: var(--text-main);
}

.process-step-card p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}

/* CTA */
.contact-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--border-color);
  box-shadow: 0 40px 80px rgba(0,0,0,0.02);
}

.contact-box h2 {
  margin-bottom: 24px;
  color: var(--text-main);
}

.contact-box p {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 99px;
  color: var(--text-main);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.contact-chip:hover {
  border-color: var(--accent-color);
  background: var(--bg-secondary);
  color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.contact-chip svg {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.contact-chip:hover svg {
  color: var(--accent-hover);
}

.lark-container {
  position: relative;
  display: inline-block;
}

.lark-qr {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 16px;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  margin-bottom: 16px;
  pointer-events: none;
  z-index: 10;
}

.lark-container:hover .lark-qr {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.lark-qr img {
  display: block;
  border-radius: 8px;
  width: 150px;
  height: 150px;
}

/* Footer */
.site-footer {
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
  background: #ffffff;
}

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

.footer-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-left p {
  font-size: 15px;
  color: var(--text-muted);
}

.footer-right p {
  font-size: 14px;
  color: var(--text-faint);
  font-weight: 500;
}

/* Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-visual-cards {
    height: auto;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .card-left, .card-right {
    position: static;
    transform: none;
  }
  .card-left:hover, .card-right:hover {
    transform: translateY(-5px);
  }
  .situations-layout {
    flex-direction: column;
    align-items: flex-start;
  }
  .process-grid, .stats-box {
    grid-template-columns: 1fr;
  }
  .stats-box {
    gap: 40px;
    padding: 40px;
  }
  .site-nav {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-section: 80px;
  }
  .hidden-mobile {
    display: none;
  }
  .quote-card {
    flex: 0 0 320px;
    padding: 32px;
  }
  .quote-text {
    font-size: 18px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .contact-box {
    padding: 60px 24px;
  }
}