/* ============================================
   CORE+ — Home Page Styles
   ============================================ */

/* ── Hero ─────────────────────────────────── */
#slider-section { background: var(--warm-white); padding: 5rem 0 0; overflow: hidden; }
.slider-outer   { position: relative; overflow: hidden; }
.slider-inner   { position: relative; width: 100%; height: 72svh; min-height: 480px; }

.slide {
  position: absolute; inset: 0;
  display: none;
  align-items: center;
  justify-content: space-between;
  background: var(--warm-white);
  overflow: visible;
}
.slide.is-active { display: flex; }

.slide-img-wrap {
  position: absolute;
  top: 0; right: -8vw;
  width: 58vw; height: 100%;
  display: flex; align-items: center; justify-content: center;
  overflow: visible; pointer-events: none;
  background: radial-gradient(circle at 62% 48%, rgba(212,237,224,.62), transparent 42%);
}
.slide-bg-img {
  width: 112%; height: 112%;
  object-fit: contain; display: block;
  opacity: 0;
  transition: opacity .35s ease;
}
.slide-bg-img.is-loaded { opacity: 1; }
.slide-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(3rem, 6vw, 6rem);
  color: rgba(58,122,90,.18);
  background:
    radial-gradient(circle, rgba(168,213,188,.28) 0 16%, transparent 17%),
    linear-gradient(100deg, transparent 35%, rgba(255,255,255,.65) 50%, transparent 65%);
  background-size: auto, 220% 100%;
  animation: heroPlaceholder 1.6s ease-in-out infinite;
  opacity: 1;
  transition: opacity .25s ease, visibility .25s ease;
  pointer-events: none; user-select: none;
}
.slide-placeholder.is-hidden { opacity: 0; visibility: hidden; }
.slide-img-wrap.has-image-error .slide-placeholder { animation: none; }
@keyframes heroPlaceholder {
  0% { background-position: center, 180% 0; }
  100% { background-position: center, -80% 0; }
}

.slide-content {
  position: relative; z-index: 2;
  padding: 0 4vw 0 8vw;
  width: 48%; max-width: 680px;
}
.slide-tag {
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.9rem;
}
.slide-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 600; line-height: 0.9;
  letter-spacing: 0.01em; display: block;
}
.slide-title-main   { display: block; color: var(--green-deep); }
.slide-title-accent { display: block; color: var(--green-main); }

.slide-desc {
  color: var(--text-soft);
  margin-top: 1rem; font-size: 0.92rem; line-height: 1.75;
  max-width: 420px;
}
.slide-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 2rem; padding: 0.85rem 2.2rem;
  background: var(--green-main); color: var(--cream);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(58,122,90,0.35);
  transition: background 0.2s, transform 0.15s;
}
.slide-cta:hover  { background: var(--green-mid); transform: scale(1.03); }

/* Dots */
.slider-ui {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 1rem; z-index: 20;
}
.slider-dots { display: flex; gap: 0.5rem; align-items: center; }
.slider-dot {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid rgba(58,122,90,0.25);
  background: transparent; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.25s; padding: 0; position: relative;
}
.slider-dot::after {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: rgba(58,122,90,0.25);
  transition: background 0.25s, transform 0.25s;
}
.slider-dot.is-active            { border-color: var(--green-main); }
.slider-dot.is-active::after     { background: var(--green-main); transform: scale(1.4); }


.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1;
}
.stat-num .plus {
  font-size: 1.4rem;
  color: var(--green-main);
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  letter-spacing: 0.04em;
}
.stat-divider {
  width: 1px; height: 40px;
  background: var(--green-mist);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.hero-img-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--green-mist), var(--green-foam));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(168,213,188,0.4);
}
.placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.6;
}

.hero-card-float {
  position: absolute;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(168,213,188,0.3);
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}
.card-float-1 { top: 10%; left: -10%; animation-delay: 0s; }
.card-float-2 { bottom: 15%; right: -8%; animation-delay: 2s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.card-float-icon { font-size: 1.4rem; }
.card-float-title { font-weight: 600; font-size: 0.9rem; color: var(--green-deep); }
.card-float-sub   { font-size: 0.75rem; color: var(--text-muted); }

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem; left: var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.scroll-line {
  width: 40px; height: 1.5px;
  background: var(--green-soft);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { width: 40px; opacity: 1; }
  50%       { width: 20px; opacity: 0.5; }
}

/* ── Trust Bar ────────────────────────────── */
.trust-bar {
  background: var(--green-foam);
  border-top: 1px solid var(--green-mist);
  border-bottom: 1px solid var(--green-mist);
  padding: 1.2rem var(--space-md);
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
}
.trust-icon { font-size: 1rem; }
.trust-sep  { color: var(--green-pale); font-size: 1.2rem; }

/* ── About ────────────────────────────────── */
.about-section {
  padding-top: var(--space-xl);
  padding-bottom: calc(var(--space-xl) + 2rem); /* extra for badge overflow */
}
.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: var(--space-lg);
  align-items: start;
}
 
/* ─ Media col ─ */
.about-media { 
  position: relative; 
  padding-bottom: 3.5rem;   
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  width: 100%;
  box-shadow: var(--shadow-lg);
  background: var(--green-mist);
  position: relative; /* cần cho badge định vị */
}

/* Badge tràn vào góc ảnh */
.about-badge-stat {
  position: absolute;
  bottom: 3.5rem;
  right: -1rem;
  background: var(--green-deep);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--warm-white);
  z-index: 2;
}

.stat-circle-num {
  display: block;
  font-family: "Times New Roman", Times, serif;
  font-size: 2.4rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.stat-circle-label {
  font-size: 0.75rem;
  font-family: var(--font-body, sans-serif);
  font-style: normal;
  font-weight: 400;
  color: var(--green-pale);
  line-height: 1.5;
  margin-top: 0.25rem;
  text-align: center;
}
/* placeholder khi chưa có ảnh */
.about-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, var(--green-mist) 0%, var(--green-foam) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.5rem; min-height: 460px;
}
.about-img-placeholder span { font-size: 3.5rem; opacity: 0.5; }
.about-img-placeholder p    { color: var(--text-muted); font-size: 0.8rem; }
 
/* Badge năm kinh nghiệm */
.about-badge-stat {
  position: absolute;
  bottom: 2rem;        /* đổi từ 0 */
  right: -1rem;
  background: var(--green-deep);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--warm-white);
  z-index: 2;
}
.stat-circle          { text-align: center; color: var(--cream); }
.stat-circle-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.stat-circle-label    { font-size: 0.75rem; color: var(--green-pale); line-height: 1.5; margin-top: 0.2rem; }
 
/* Credential tag dưới ảnh */
.about-credential-group {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.about-credential {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-foam);
  border: 1px solid var(--green-mist);
  border-radius: var(--radius-full);
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--green-mid);
  letter-spacing: 0.04em;
}

.about-credential-dot {
  width: 6px; height: 6px;
  background: var(--green-soft);
  border-radius: 50%;
  flex-shrink: 0;
}
 
/* ─ Text col ─ */
.about-text { padding-top: 1rem; }
 
.about-name {
  font-family: var(--font-display);
  font-size: 2.2rem;        
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  font-style: italic;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
 
.about-meaning {
  margin-top: 1.5rem;
  background: var(--green-foam);
  border-left: 3px solid var(--green-soft);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.about-meaning-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.about-meaning-keyword {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-deep);
  min-width: 44px;
  flex-shrink: 0;
  padding-top: 1px;
}


 
.about-features { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.feature-dot {
  width: 8px; height: 8px;
  background: var(--green-soft);
  border-radius: 50%;
  flex-shrink: 0;
}
 

/* ── Stories ──────────────────────────────── */
.stories-section {
  position: relative;
  padding: clamp(4.5rem, 7vw, 6rem) clamp(2rem, 5vw, 4rem);
  margin-top: 1.5rem;
  border: 1px solid rgba(168, 213, 188, .24);
  border-radius: clamp(24px, 3vw, 40px);
  background:
    radial-gradient(circle at 92% 8%, rgba(212, 237, 224, .52), transparent 28%),
    linear-gradient(145deg, rgba(237, 247, 242, .5), rgba(254, 252, 248, .9) 48%);
}
.stories-section .section-label {
  margin-bottom: 1.25rem;
}
.stories-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  margin-bottom: 1.25rem;
}
.stories-header h2 {
  max-width: 720px;
}
.stories-header .btn {
  justify-self: end;
  box-shadow: 0 8px 24px rgba(58, 122, 90, .08);
}
.stories-intro {
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: stretch;
  max-width: 1040px;
  margin: 0 auto;
}

/* Card */
.story-card {
  overflow: hidden;
  min-width: 0;
  border-radius: 18px;
  background: #fff;
  border-color: rgba(107, 184, 144, .35);
  box-shadow: 0 12px 34px rgba(26, 58, 46, .09);
}
.stories-grid .blog-fb-embed {
  width: 100%;
  height: 524px;
  min-height: 0 !important;
  overflow: hidden;
  background: #fff;
}
.stories-grid .blog-fb-embed iframe {
  display: block;
  width: 100%;
  height: 100% !important;
}
.stories-more {
  display: flex;
  justify-content: center;
  margin-top: 2.25rem;
}
.stories-more .btn {
  background: var(--warm-white);
}
.story-card-featured {
  background: var(--green-deep);
  border-color: transparent;
}

.story-card {
  opacity: 1 !important;
  transform: none !important;
}

.story-img-single {
  width: 100%;
  height: 360px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.story-img-single img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s var(--ease-smooth);
}
.story-card:hover .story-img-single img {
  transform: scale(1.04);
}

.img-fallback {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; color: var(--text-muted);
}
.story-tag {
  position: absolute;
  bottom: 6px; left: 6px;
  background: rgba(0,0,0,0.45);
  color: white;
  font-size: 0.62rem;
  padding: 2px 7px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.story-tag-after { background: rgba(58,122,90,0.75); }
.story-arrow {
  color: var(--text-muted);
  font-size: 0.9rem;
  flex-shrink: 0;
  align-self: center;
}

/* Body */
.story-body { padding: 1.5rem; }

.story-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: .75rem;
}
.story-pill {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  background: var(--green-foam);
  color: var(--green-main);
  border: 1px solid var(--green-mist);
}

.story-result {
  display: flex;
  align-items: baseline;
  gap: .4rem;
}
.story-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--green-main);
  line-height: 1;
}
.story-card-featured .story-num { color: var(--green-pale); }
.story-period { font-size: .9rem; color: var(--text-muted); }
.story-card-featured .story-period { color: var(--green-pale); opacity: .7; }

/* Metrics row (case 3) */
.story-metrics {
  display: flex;
  gap: 1rem;
  margin: .75rem 0;
  padding: .75rem;
  background: var(--green-foam);
  border-radius: var(--radius-md);
}
.story-metric { text-align: center; flex: 1; }
.metric-val {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-main);
}
.metric-key {
  display: block;
  font-size: .72rem;
  color: var(--text-muted);
  letter-spacing: .05em;
  margin-top: 2px;
}

/* Quote */
.story-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-mid);
  border-left: 2px solid var(--green-mist);
  padding-left: .75rem;
  margin: .75rem 0;
  line-height: 1.6;
}
.story-quote-featured {
  border-left-color: rgba(255,255,255,.2);
  color: var(--green-pale);
}

/* Author */
.story-author {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--green-mist);
}
.story-card-featured .story-author {
  border-top-color: rgba(255,255,255,.1);
}
.author-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green-main);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 600;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .stories-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .stories-grid { grid-template-columns: 1fr; }
  .stories-header { flex-direction: column; align-items: flex-start; }
}

/* ── Contact ──────────────────────────────── */
.contact-section {
  position: relative;
  padding: clamp(5rem, 8vw, 7rem) var(--space-md);
  background:
    radial-gradient(circle at 8% 12%, rgba(168, 213, 188, .3), transparent 28%),
    linear-gradient(145deg, var(--green-foam), #f7fbf8 65%);
  overflow: hidden;
}
.contact-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.5;
}
.contact-orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--green-mist), transparent);
  top: -80px; left: -80px;
}
.contact-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--green-pale), transparent);
  bottom: -60px; right: -60px;
  opacity: 0.3;
}
.contact-grid {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact-h2 { margin-top: 1rem; }
.contact-intro { max-width: 520px; margin-top: 1.25rem; color: var(--text-soft); }

/* Contact links */
.contact-links {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-top: 2.25rem;
}
.contact-link-item {
  display: flex;
  align-items: center;
  gap: .9rem;
  min-height: 72px;
  padding: .85rem 1rem;
  background: rgba(254, 252, 248, .92);
  border-radius: var(--radius-md);
  border: 1px solid rgba(168, 213, 188, .58);
  transition: all var(--dur-mid) var(--ease-smooth);
  text-decoration: none;
  color: inherit;
}
.contact-link-item:hover {
  border-color: var(--green-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.contact-link-icon { display: grid; place-items: center; flex: 0 0 42px; width: 42px; height: 42px; border-radius: 50%; background: var(--green-foam); color: var(--green-main); font-weight: 700; }
.contact-link-icon svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.8; }
.contact-link-icon-zalo { background: #eaf3ff; color: #0068ff; }
.contact-link-icon-zalo svg { width: 28px; height: 28px; fill: none; stroke-width: 1.5; }
.contact-link-icon-zalo text { fill: currentColor; stroke: none; font: 700 8px var(--font-body); letter-spacing: -.35px; }
.contact-link-icon-facebook { background: #edf3ff; color: #1877f2; }
.contact-link-icon-facebook svg { width: 21px; height: 21px; fill: currentColor; stroke: none; }
.contact-link-content { min-width: 0; }
.contact-link-content .label { display: block; margin-bottom: .1rem; color: var(--text-soft); }
.contact-link-val {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-dark);
  overflow-wrap: anywhere;
}
.contact-link-arrow { flex: 0 0 auto; width: 17px; height: 17px; margin-left: auto; color: var(--text-muted); transition: color var(--dur-fast), transform var(--dur-fast); }
.contact-link-item:hover .contact-link-arrow { color: var(--green-main); transform: translate(2px, -2px); }
.contact-map-card {
  padding: .8rem;
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(168, 213, 188, .46);
}
.contact-map-header { display: flex; align-items: center; gap: .9rem; padding: .7rem .7rem 1rem; }
.contact-map-icon { display: grid; place-items: center; flex: 0 0 46px; width: 46px; height: 46px; border-radius: 50%; background: var(--green-foam); color: var(--green-main); }
.contact-map-icon svg { width: 20px; height: 20px; }
.contact-map-header .label { color: var(--text-soft); }
.contact-map-header h3 { margin-top: .15rem; color: var(--green-deep); font-family: var(--font-display); font-size: 1.45rem; font-weight: 600; }
.contact-map-card iframe { display: block; width: 100%; height: clamp(350px, 36vw, 450px); border-radius: 20px; }
.contact-map-footer { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; padding: 1.15rem .7rem .5rem; }
.contact-map-footer p { max-width: 230px; color: var(--text-soft); font-size: .85rem; line-height: 1.5; }
.contact-map-footer .btn { flex: 0 0 auto; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map-card iframe { height: 420px; }
}
@media (max-width: 768px) {
  .contact-map-footer { align-items: flex-start; flex-direction: column; }
  .contact-map-footer p { max-width: none; }
}

/* ── Footer ───────────────────────────────── */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col-title {
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-col a { font-size: 0.875rem; color: var(--green-pale); }
.footer-col a:hover { color: var(--cream); }
.footer-socials { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-pale);
  text-transform: uppercase;
  transition: all var(--dur-fast);
}
.social-btn:hover { background: rgba(255,255,255,0.15); color: var(--cream); }
.footer-bottom {
  max-width: 1200px;
  margin: var(--space-md) auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--green-pale);
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding-top: 7rem; text-align: center; }
  .hero-visual { display: none; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .stories-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-inner  { grid-template-columns: 1fr; }
  .footer-links  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .products-grid { grid-template-columns: 1fr; }
  .stories-grid  { grid-template-columns: 1fr; }
  .hero-stats    { flex-direction: column; gap: 1rem; }
  .stat-divider  { display: none; }
  .footer-links  { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .trust-sep     { display: none; }
  .trust-inner   { gap: 1rem; }
  .trust-item    { font-size: 0.8rem; }
}

blog-preview-section { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.blog-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 1.5rem;
}
.blog-preview-header h2 { margin-top: 0.5rem; }
 
/* Grid 2 cột */
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
 
/* Card */
.blog-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(168,213,188,0.3);
  transition: transform var(--dur-mid) var(--ease-smooth),
              box-shadow var(--dur-mid) var(--ease-smooth);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
 
/* Ảnh */
.blog-card-img-wrap {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--green-mist);
}
.blog-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--dur-slow) var(--ease-smooth);
}
.blog-card:hover .blog-card-img-wrap img {
  transform: scale(1.04);
}
.blog-card-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-mist), var(--green-foam));
  font-size: 3rem;
}
 
/* Tag */
.blog-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--green-deep);
  color: var(--green-pale);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  z-index: 1;
}
 
/* Body */
.blog-card-body {
  padding: 1.75rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-date {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 0.85rem;
}
.blog-card-title a {
  color: inherit;
  transition: color var(--dur-fast);
}
.blog-card-title a:hover { color: var(--green-main); }
 
.blog-excerpt {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
 
/* Footer card */
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(168,213,188,0.25);
}
.blog-fb-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: color var(--dur-fast);
}
.blog-fb-link:hover { color: var(--green-main); }

/* ── Values ───────────────────────────────── */
.values-section {
  position: relative;
  margin-top: 1.5rem;
  padding: clamp(4.5rem, 7vw, 6rem) clamp(1.25rem, 5vw, 4rem);
  overflow: hidden;
  border: 1px solid rgba(168, 213, 188, .7);
  border-radius: clamp(24px, 3vw, 40px);
  background:
    radial-gradient(circle at 8% 8%, rgba(168, 213, 188, .28), transparent 27%),
    linear-gradient(145deg, #f8fcf9, var(--green-foam));
}
.values-header { max-width: 760px; margin: 0 auto 2.75rem; text-align: center; }
.values-header .section-label { justify-content: center; }
.values-intro { margin-top: 1rem; color: var(--text-mid); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.value-card {
  min-height: 300px;
  padding: 2rem 1.35rem;
  border: 1px solid rgba(168, 213, 188, .65);
  border-radius: var(--radius-lg);
  background: rgba(254, 252, 248, .92);
  box-shadow: 0 8px 28px rgba(26, 58, 46, .06);
  text-align: center;
  transition: transform var(--dur-mid) var(--ease-smooth), box-shadow var(--dur-mid) var(--ease-smooth);
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.value-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 1.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-deep);
  background: linear-gradient(145deg, var(--green-mist), var(--green-foam));
}
.value-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.value-card h3 {
  margin-bottom: .7rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-deep);
}
.value-card p { font-size: .9rem; line-height: 1.75; color: var(--text-soft); }
.values-outcomes { max-width: 900px; margin: 3rem auto 0; text-align: center; }
.values-outcomes-title { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1.5rem; }
.values-outcomes-title span { height: 1px; background: linear-gradient(90deg, transparent, var(--green-pale)); }
.values-outcomes-title span:last-child { background: linear-gradient(90deg, var(--green-pale), transparent); }
.values-outcomes-title h3 {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--green-deep);
}
.values-outcomes-list { display: flex; justify-content: center; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.value-outcome {
  padding: .55rem 1rem;
  border: 1px solid var(--green-mist);
  border-radius: var(--radius-full);
  background: rgba(212, 237, 224, .65);
  font-size: .78rem;
  font-weight: 500;
  color: var(--green-mid);
}
.values-closing {
  margin-top: 1.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-style: italic;
  color: var(--green-main);
}

.opportunity-section {
  position: relative;
  padding: clamp(4.5rem, 7vw, 6rem) clamp(1.25rem, 5vw, 4rem);
  margin-top: 1.5rem;
  background: linear-gradient(145deg, var(--green-foam), var(--warm-white) 70%);
  color: var(--text-dark);
  border: 1px solid var(--green-mist);
  border-radius: clamp(24px, 3vw, 40px);
}
.opportunity-section .section-label { justify-content: center; }
.opportunity-section .label { color: var(--green-main); }
.opportunity-header { text-align: center; }
.opportunity-header h2 { max-width: 760px; margin: 0 auto; }
.opportunity-intro { max-width: 760px; margin: 1.25rem auto 2.75rem; color: var(--text-mid); text-align: center; }
.opportunity-comparison { max-width: 980px; margin: 0 auto; }
.opportunity-headings, .opportunity-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(.75rem, 2vw, 1.5rem);
}
.opportunity-headings { margin-bottom: 1rem; }
.opportunity-headings h3 { font-family: var(--font-body); font-size: clamp(1.1rem, 2vw, 1.4rem); color: var(--green-deep); text-align: center; }
.opportunity-row + .opportunity-row { margin-top: .9rem; }
.opportunity-card { display: flex; align-items: center; justify-content: center; min-height: 100px; padding: 1.25rem 1.5rem; border-radius: var(--radius-md); text-align: center; line-height: 1.6; }
.opportunity-card-question { background: #fff; border: 1px solid var(--green-mist); color: var(--text-mid); }
.opportunity-card-answer { background: var(--green-mid); color: #fff; box-shadow: var(--shadow-sm); }
.opportunity-arrow { align-self: center; color: var(--green-main); font-size: 1.8rem; text-align: center; }
.opportunity-cta { margin-top: 3rem; text-align: center; }
.opportunity-cta p { color: var(--text-mid); margin-bottom: 1rem; }
 
/* Responsive */
@media (max-width: 768px) {
  .blog-preview-grid { grid-template-columns: 1fr; }
  .blog-preview-header { flex-direction: column; align-items: flex-start; }
  .blog-card-body { padding: 1.25rem; }
  .blog-card-title { font-size: 1.25rem; }
}
