/* Features Section V2 - Landing Page Specific */

.features-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 80px 0 100px;
  margin-top: 20px;
  /* Seamless: Removed border-top divider */
}

.feat-card {
  background: var(--color-bg);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--color-border);
}

.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(225, 29, 72, 0.15);
}

.feat-icon {
  font-size: 1.8rem;
  background: var(--color-primary-bg);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(225, 29, 72, 0.1);
  flex-shrink: 0;
}

.feat-text h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.feat-text p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}
/* Concept Cards & Showcase in Lovetree page */
.lt-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 12px;
}

.concept-grid, .showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.concept-card, .tree-card {
  background: rgba(255, 255, 255, 0.5); /* Semi-transparent ivory blend */
  padding: 30px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.concept-card:hover, .tree-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.06);
}

.lt-icon-box {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.tree-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}

.tree-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-brick {
  background: #0f172a;
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
}

.btn-outline {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  color: #0f172a;
}

/* Page Section Utility */
.page-section {
  padding: 60px 0;
}