/* ===== VARIABLES ===== */
:root {
  --green:        #2f6b4f;
  --green-bright: #28a745;
  --brown:        #a37c3c;
  --dark:         #2b2a28;
  --dark-dim:     #6f6b66;
  --surface:      #f5f3ee;
  --surface-dim:  #fbfaf7;
  --white:        #ffffff;
  --shadow:       rgba(43, 42, 40, 0.08);
  --r-sm: 4px;  --r-md: 8px;  --r-lg: 12px;  --r-xl: 16px;
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: .3s ease; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; transition: .3s ease; }
input, textarea, select { font-family: inherit; font-size: 1rem; border: 1px solid var(--dark-dim); border-radius: var(--r-md); padding: .75rem 1rem; width: 100%; transition: .3s ease; }
input:focus, textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(47, 107, 79, .15); }

/* ===== LAYOUT ===== */
.container { max-width: 1440px; margin: 0 auto; padding: 0 2rem; }

.skip-link { position: absolute; top: -40px; left: 0; background: var(--green); color: var(--white); padding: 8px 12px; border-radius: var(--r-sm); z-index: 100; }
.skip-link:focus { top: 0; }

.image-placeholder { background: var(--surface); border-radius: var(--r-lg); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.image-placeholder img { width: 100%; height: 100%; object-fit: cover; }

/* ===== NAVBAR ===== */
.navbar { background: rgba(245, 243, 238, .9); position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(10px); box-shadow: 0 2px 10px var(--shadow); border-bottom: 1px solid rgba(0,0,0,.04); }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; }
.logo { font-size: 1.6rem; font-weight: 700; color: var(--green); }
.nav-menu { display: flex; align-items: center; gap: 2rem; }
.nav-link { font-weight: 500; font-size: .95rem; position: relative; }
.nav-link:hover { color: var(--green); }
.nav-link.active::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 100%; height: 2px; background: var(--green); border-radius: 2px; }
.mobile-toggle { display: none; flex-direction: column; gap: 4px; padding: .5rem; }
.mobile-toggle span { width: 25px; height: 3px; background: var(--dark); border-radius: 3px; }

/* ===== LANGUAGE SWITCHER ===== */
.language-switcher { display: flex; align-items: center; gap: .5rem; }
.lang-btn { padding: .5rem; font-weight: 600; font-size: .9rem; color: var(--dark-dim); }
.lang-btn:hover, .lang-btn.active { color: var(--green); }
.lang-separator { color: var(--dark-dim); }

/* ===== BUTTONS ===== */
.btn { padding: .75rem 1.5rem; border-radius: var(--r-md); font-weight: 600; font-size: 1rem; display: inline-block; text-align: center; transition: all .3s ease; }
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: #255a42; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(47,107,79,.25); }
.btn-secondary { background: transparent; color: var(--dark); border: 2px solid var(--dark); }
.btn-secondary:hover { background: var(--dark); color: var(--white); }
.btn-light { background: var(--white); color: var(--green); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.12); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: #3d3c3a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(43,42,40,.3); }
.btn-large { padding: 1rem 2.5rem; font-size: 1.125rem; }
.btn-block { width: 100%; display: block; }

/* ===== HERO ===== */
.hero { padding: 3rem 0 2rem; }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.hero-image { order: 2; border-radius: var(--r-lg); }
.hero-main-image { width: 100%; aspect-ratio: 1 / .7; border-radius: var(--r-xl); overflow: hidden; box-shadow: 0 10px 30px var(--shadow); }
.hero-main-image img { width: 100%; height: 100%; object-fit: cover; transition: opacity .5s ease-in-out; }
.hero-main-image img.fade-out { opacity: 0; }
.hero-image-thumbnails-wrapper { display: flex; align-items: center; gap: .5rem; margin-top: 1rem; }
.hero-image-thumbnails { display: flex; gap: 1rem; flex: 1; overflow: hidden; }
.hero-thumbnail { width: 80px; height: 80px; border-radius: var(--r-md); overflow: hidden; cursor: pointer; border: 3px solid transparent; flex-shrink: 0; background: var(--surface); }
.hero-thumbnail.active { border-color: var(--green); }
.hero-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.hero-thumbnail-arrow { background: var(--green); color: var(--white); width: 36px; height: 36px; border-radius: 50%; font-size: 24px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-text { order: 1; }
.hero-text h1 { font-size: 3rem; line-height: 1.2; margin-bottom: 1.5rem; color: var(--dark); }
.subtitle { font-size: 1.25rem; color: var(--dark-dim); margin-bottom: 2rem; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.tag { padding: .5rem 1rem; background: #f4f1c9; color: var(--dark); border-radius: var(--r-lg); font-size: .875rem; font-weight: 500; }
.cta-group { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ===== ABOUT ===== */
.about-section { padding: 100px 20px; background: #f6fbe2; font-family: 'Poppins', sans-serif; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag { display: inline-flex; gap: 6px; font-size: 1.3rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; margin-bottom: .8rem; flex-wrap: wrap; justify-content: center; }
.tag-black { color: #121212; }
.tag-green { color: var(--green-bright) !important; }
.section-header h2 { font-size: 1.4rem; font-weight: 400; color: #4a4a4a; max-width: 700px; margin: 0 auto; }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image img { width: 100%; object-fit: contain; }
.about-text h3 { font-size: 1.75rem; font-weight: 600; margin-bottom: 1rem; color: #121212; }
.about-text p { font-size: 1.125rem; line-height: 1.8; color: #555; margin-bottom: 1.5rem; }
.feature-list li { position: relative; padding-left: 2rem; margin-bottom: 1rem; font-size: 1.125rem; color: #333; }
.feature-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: bold; }

/* ===== BENEFITS ===== */
.benefits-section { padding: 6rem 0; background: var(--surface-dim); }
.section-title { font-size: 2.5rem; margin-bottom: 2rem; color: var(--dark); text-align: center; }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.benefit-card { background: var(--white); padding: 3rem; border-radius: var(--r-lg); box-shadow: 0 2px 10px var(--shadow); transition: .3s ease; }
.benefit-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(43,42,40,.14); }
.benefit-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1rem; }
.benefit-icon { font-size: 3rem; background: var(--surface); width: 70px; border-radius: 15px; display: flex; align-items: center; justify-content: center; }
.benefit-card h3 { font-size: 1.25rem; color: var(--dark); }
.benefit-card p { color: var(--dark-dim); line-height: 1.6; }

/* ===== HOW IT WORKS ===== */
.read-about-section { padding: 6rem 0; background: var(--surface-dim); }
.read-about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.read-about-text-container { display: flex; flex-direction: column; gap: 1.5rem; }
.read-about-text { font-size: 2rem; font-weight: 700; display: flex; align-items: center; padding-top: 1.5rem; }
.text-line { padding: 1.5rem; background: var(--surface); border-radius: var(--r-md); box-shadow: 0 2px 8px var(--shadow); }

/* ===== PROGRESS ===== */
.progress-section { padding: 6rem 0; background: #fff8dc; }
.progress-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-bottom: 3rem; }
.progress-image-placeholder { width: 100%; aspect-ratio: 1; border-radius: var(--r-lg); overflow: hidden; margin-bottom: 1.5rem; box-shadow: 0 4px 15px var(--shadow); }
.progress-image-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.progress-label { font-size: 1.125rem; font-weight: 600; color: var(--dark); text-align: center; }
.progress-cta { text-align: center; margin-top: 4rem; }

/* ===== REVIEWS ===== */
.reviews-section { padding: 6rem 0; background: var(--surface-dim); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.review-card { background: var(--white); border-radius: var(--r-lg); padding: 3rem; box-shadow: 0 4px 15px var(--shadow); transition: .3s ease; }
.review-card:hover { transform: translateY(-5px); }
.review-product-image { width: 100%; aspect-ratio: 1; border-radius: var(--r-md); overflow: hidden; margin-bottom: 1.5rem; }
.review-product-image img { width: 100%; height: 100%; object-fit: cover; }
.review-stars { color: #ffd700; font-size: 1.25rem; margin-bottom: 1rem; }
.review-title { font-size: 1.25rem; color: var(--dark); margin-bottom: 1rem; }
.review-text { color: var(--dark-dim); line-height: 1.8; margin-bottom: 1.5rem; font-size: .95rem; }
.review-author { font-weight: 600; color: var(--dark); font-style: italic; }
.reviews-mobile-carousel { display: none; }

/* ===== FAQ ===== */
.faq-section { padding: 6rem 0; background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 1.5rem; border: 1px solid var(--surface); border-radius: var(--r-md); overflow: hidden; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.5rem; background: var(--surface-dim); text-align: left; font-size: 1.125rem; font-weight: 600; color: var(--dark); }
.faq-question:hover { background: var(--surface); }
.faq-icon { font-size: 1.5rem; color: var(--green); transition: transform .3s ease; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer p { padding: 1.5rem; color: var(--dark-dim); line-height: 1.8; }

/* ===== CTA ===== */
.cta-section { padding: 6rem 0; background: linear-gradient(135deg, var(--green) 0%, var(--brown) 100%); color: var(--white); text-align: center; }
.cta-content h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
.cta-content p { font-size: 1.25rem; margin-bottom: 3rem; opacity: .9; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: var(--surface); padding: 4rem 0 2rem; }
.footer-content { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; margin-bottom: 3rem; }
.footer-section h3, .footer-section h4 { margin-bottom: 1.5rem; color: var(--white); }
.footer-section p { opacity: .8; }
.footer-section ul li { margin-bottom: .5rem; }
.footer-section a:hover { color: var(--brown); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(240,235,225,.2); opacity: .7; }

/* ===== MODAL (pricing popup) ===== */
.modal { display: none; position: fixed; inset: 0; z-index: 1000; opacity: 0; transition: opacity .3s ease; }
.modal.active { display: flex; align-items: center; justify-content: center; opacity: 1; padding: 2rem; }
.modal-overlay { position: absolute; inset: 0; background: rgba(52,49,46,.8); backdrop-filter: blur(4px); }
.modal-content { position: relative; background: var(--white); border-radius: var(--r-xl); padding: 3rem; width: 90%; max-width: 600px; max-height: 90vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(52,49,46,.3); z-index: 1; transform: scale(.9); transition: transform .3s ease; }
.modal.active .modal-content { transform: scale(1); }
.modal-close { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 2rem; color: var(--dark); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: var(--r-md); }
.modal-close:hover { background: var(--surface); color: var(--green); }
.modal-title { font-size: 2rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem; padding-right: 50px; }
.modal-subtitle { color: var(--dark-dim); margin-bottom: 2rem; line-height: 1.6; }
.pricing-modal-cta { text-align: center; margin-top: 2rem; }

/* ===== FORUM ===== */
.forum-main { min-height: 70vh; padding: 2rem 0; }
.forum-header h1 { margin: 2rem 0; font-size: 2rem; color: var(--dark); }
.reply-form-container { margin-bottom: 2rem; padding: 1.5rem; background: var(--surface-dim); border-radius: var(--r-md); border: 1px solid var(--surface); }
.auth-notice { background: #f4f4f4; padding: 20px; border-radius: var(--r-md); text-align: center; }
.auth-notice p { margin-bottom: 1rem; }
.topic-form { padding: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: .5rem; font-weight: 600; color: var(--dark); }
.form-group textarea { min-height: 120px; resize: none; }
.forum-file-group { display: flex; align-items: center; flex-wrap: wrap; gap: .5rem; }
.forum-file-name { color: var(--dark-dim); }
.file-input-hidden { display: none; }
.topic-card { margin-bottom: 20px; padding: 20px; border: 1px solid #ddd; border-radius: var(--r-md); background: var(--white); }
.topic-author-info { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; font-size: .875rem; }
.topic-author-info strong { color: #b23f0d; }
.topic-author-info small { color: var(--dark-dim); }
.topic-text { margin: 15px 0; }
.topic-image img { max-width: 100%; border-radius: var(--r-md); max-height: 400px; display: block; }
.mt-sm { margin-top: 1rem; }
.ml-sm { margin-left: 1rem; }
.forum-empty-state { text-align: center; padding: 6rem 3rem; background: var(--surface-dim); border-radius: var(--r-xl); margin: 3rem 0; border: 2px dashed var(--surface); }
.empty-state-icon { font-size: 4rem; margin-bottom: 1.5rem; animation: float 3s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.empty-state-title { font-size: 1.75rem; color: var(--dark); margin-bottom: 1.5rem; font-weight: 700; }
.empty-state-text { font-size: 1.125rem; color: var(--dark-dim); line-height: 1.6; max-width: 500px; margin: 0 auto; }

/* ===== AUTH PAGES ===== */
.auth-page-main { max-width: 500px; margin: 4rem auto 0; }
.sidebar-card { background: var(--white); border-radius: var(--r-lg); box-shadow: 0 2px 10px var(--shadow); padding: 2rem; margin-bottom: 2rem; }
.login-card h3, .registration-card h3 { background: var(--green); color: var(--white); padding: 1rem; border-radius: var(--r-md); text-align: center; margin: -2rem -2rem 1.5rem; }
.login-form, .registration-form { margin-top: 1.5rem; }
.form-alert { padding: .5rem 1rem; border-radius: var(--r-sm); margin-bottom: 1rem; font-size: .95rem; }
.form-alert--success { color: #155724; background: #d4edda; }
.form-alert--error { color: #721c24; background: #f8d7da; }
.auth-footer-link { display: block; margin-top: 1rem; }

/* ===== PLANT INFO PAGE ===== */
.page-header { padding: 4rem 0; background: linear-gradient(135deg, var(--green) 0%, var(--brown) 100%); color: var(--white); text-align: center; }
.page-header h1 { font-size: 3rem; margin-bottom: 1rem; }
.page-header p { font-size: 1.25rem; opacity: .9; }
.plant-info-section { padding: 4rem 0; }
.plant-info-section:nth-child(even) { background: var(--white); }
.plant-info-section:nth-child(odd) { background: var(--surface-dim); }
.plant-header { text-align: center; margin-bottom: 3rem; }
.plant-header h2 { font-size: 2.5rem; color: var(--dark); padding-bottom: 1.5rem; border-bottom: 3px solid var(--green); display: inline-block; }
.plant-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 4rem; align-items: start; }
.plant-detail-image .image-placeholder { aspect-ratio: 1; }
.plant-detail-description h3 { font-size: 2rem; color: var(--dark); margin-bottom: 1.5rem; }
.plant-detail-description p { font-size: 1.125rem; line-height: 1.8; color: var(--dark-dim); }
.plant-weeks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.week-image-placeholder { width: 100%; aspect-ratio: 1; border-radius: var(--r-lg); overflow: hidden; margin-bottom: 1rem; }
.week-image-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.week-item p { font-size: 1.125rem; font-weight: 600; color: var(--dark); text-align: center; }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .reviews-grid { display: none !important; }
  .reviews-mobile-carousel { display: block; position: relative; overflow: hidden; margin-top: 3rem; }
  .reviews-carousel-track { display: flex; transition: transform .5s ease-in-out; touch-action: pan-y; }
  .reviews-carousel-track .review-card { min-width: 100%; }
  .reviews-carousel-controls { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 2rem; }
  .reviews-carousel-arrow { background: var(--green); color: var(--white); width: 40px; height: 40px; border-radius: 50%; font-size: 28px; display: flex; justify-content: center; align-items: center; }
  .reviews-carousel-dots { display: flex; gap: .5rem; align-items: center; }
  .reviews-carousel-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--dark-dim); border: none; cursor: pointer; padding: 0; transition: all .3s ease; }
  .reviews-carousel-dot.active { background: var(--green); width: 30px; border-radius: 5px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .plant-detail { grid-template-columns: 1fr; }
  .plant-weeks { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 1rem; }
  .nav-menu { position: fixed; top: 70px; left: -100%; width: 100%; flex-direction: column; background: var(--surface); padding: 2rem; box-shadow: 0 4px 20px var(--shadow); transition: left .3s ease; }
  .nav-menu.active { left: 0; }
  .mobile-toggle { display: flex; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-image { order: 1; }
  .hero-text { order: 2; text-align: center; }
  .hero-text h1 { font-size: 2rem; }
  .cta-group { justify-content: center; }
  .hero-thumbnail { width: 60px; height: 60px; }
  .hero-image-thumbnails { gap: .5rem; overflow-x: auto; scroll-behavior: smooth; }
  .about-content, .read-about-content { grid-template-columns: 1fr; }
  .progress-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .page-header h1 { font-size: 2rem; }
  .modal-content { padding: 1.5rem; width: 95%; }
  .modal-title { font-size: 1.5rem; }
}

@media (max-width: 576px) {
  .benefits-grid, .footer-content { grid-template-columns: 1fr; }
  .section-tag { font-size: 1.1rem; flex-direction: column; gap: .2rem; }
}


/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE (about.html)
═══════════════════════════════════════════════════════════════ */

/* ── Page hero ── */
.about-hero {
  background: var(--surface);
  padding: 7rem 0 4rem;
  text-align: center;
}
.about-hero .section-tag {
  display: inline-block;
  margin-bottom: 1.25rem;
}
.about-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.about-hero .lead {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #5a5856;
  line-height: 1.75;
}

/* ── Mission strip ── */
.mission-section {
  background: var(--green);
  padding: 4rem 0;
}
.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.mission-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.mission-text p {
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  line-height: 1.8;
}
.mission-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.stat-card {
  background: rgba(255,255,255,.12);
  border-radius: var(--r-md);
  padding: 1.5rem;
  text-align: center;
}
.stat-card .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.stat-card .stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  margin-top: .3rem;
}

/* ── Team section ── */
.team-section {
  padding: 5rem 0 6rem;
  background: var(--white);
}
.team-section .section-title {
  text-align: center;
  margin-bottom: .75rem;
}
.team-subtitle {
  text-align: center;
  color: #6b6967;
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* ── Team card ── */
.team-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(43,42,40,.12);
}
.team-card-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #d9e8df;
  position: relative;
}
.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.team-card-body {
  padding: 1.5rem;
}
.team-card-role {
  display: inline-block;
  background: rgba(47,107,79,.12);
  color: var(--green);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: .25rem .8rem;
  margin-bottom: .75rem;
}
.team-card-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .6rem;
}
.team-card-desc {
  font-size: .9rem;
  color: #5a5856;
  line-height: 1.7;
  margin-bottom: 1.1rem;
}
.team-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.team-tag {
  font-size: .72rem;
  font-weight: 500;
  background: var(--white);
  border: 1px solid rgba(47,107,79,.25);
  color: var(--green);
  border-radius: 50px;
  padding: .2rem .65rem;
}

/* ── Values strip ── */
.values-section {
  background: var(--surface);
  padding: 4.5rem 0;
}
.values-section .section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.value-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 2rem;
  box-shadow: 0 2px 16px var(--shadow);
}
.value-icon {
  font-size: 2rem;
  margin-bottom: .75rem;
}
.value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .5rem;
}
.value-card p {
  font-size: .9rem;
  color: #5a5856;
  line-height: 1.7;
}

/* ── CTA bar ── */
.about-cta-section {
  background: var(--green);
  padding: 4rem 0;
  text-align: center;
}
.about-cta-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: .75rem;
}
.about-cta-section p {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  margin-bottom: 1.75rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-inner { grid-template-columns: 1fr; }
  .mission-stats { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .mission-stats { grid-template-columns: 1fr 1fr; }
}
